1

Topic: Only SoGo can not send out email externally only internal.

I am fighting with my iRedMail configs, some how I have got it where I can send out eMail with all of my many eMail clients, except the web based SoGo.   On my SoGo client I can only send out internal eMails, not external.

Any ideas where I need to look to see why this is happening?

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: Only SoGo can not send out email externally only internal.

Any related log in Postfix log file and SOGo log file?
You can find file locations with this tutorial:
http://www.iredmail.org/docs/file.locations.html

3 (edited by gregorywest 2017-04-05 23:25:01)

Re: Only SoGo can not send out email externally only internal.

ZhangHuangbin wrote:

Any related log in Postfix log file and SOGo log file?
You can find file locations with this tutorial:
http://www.iredmail.org/docs/file.locations.html

Hi there, thanks for the quick replay.   
I did get it working again,  I had to change the "mynetworks =" from:
mynetworks = ['127.0.0.1', '10.10.10.0/24']
which I thought was what you had put in your previous eMail, to:
mynetworks = 127.0.0.1 10.10.10.0/24
Does this make any sense?   Or do I have this beyond screwed up?

I have also seen in a few messages/examples:
mynetworks = ["127.0.0.1" , "10.10.10.0/24"]

I know syntax is extremely important, but I am totally mixed up as to which is the correct way to code the statement

4

Re: Only SoGo can not send out email externally only internal.

in Postfix main.cf, it's separated by a whitespace or comma:

mynetworks = 127.0.0.1 10.10.10.0/24

In iRedAPD (/opt/iredapd/settings.py), it's a list object in Python syntax, and the variable name is upper case.

MYNETWORKS = ["127.0.0.1" , "10.10.10.0/24"]