New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !

Search found 381 matches

by Eek
17 Jul 2011, 15:29
Forum: B2 & B3 Support
Topic: postfix configuration problem ?
Replies: 22
Views: 21737

Re: postfix configuration problem ?

I think it works, because I got mail :D
by Eek
17 Jul 2011, 15:11
Forum: B2 & B3 Support
Topic: postfix configuration problem ?
Replies: 22
Views: 21737

Re: postfix configuration problem ?

You need to map your local users to a valid email address. That is what you do in the /etc/postfix/generic file. First local user then valid mail user which is known to the mail server For example, I have: $ cat /etc/postfix/generic eek@b3.localdomain eek@gmail.com root@b3.localdomain eek@gmail.com ...
by Eek
17 Jul 2011, 13:43
Forum: B2 & B3 Support
Topic: postfix configuration problem ?
Replies: 22
Views: 21737

Re: postfix configuration problem ?

I don't think he knows how Ubi.
Could you do a

Code: Select all

cat /etc/postfix/generic 
I guess you are missing an entry for root@b3.localdomain
by Eek
17 Jul 2011, 08:33
Forum: B2 & B3 Support
Topic: postfix configuration problem ?
Replies: 22
Views: 21737

Re: postfix configuration problem ?

Ubi is right.
There should be something in the mail logs.
I guess there is something wrong with the mail from rewrite
Do a /etc/init.d/postfix stop and a /etc/init.d/postfix start
And look in the syslog for errors
by Eek
17 Jul 2011, 03:41
Forum: B2 & B3 Support
Topic: postfix configuration problem ?
Replies: 22
Views: 21737

Re: postfix configuration problem ?

Curious,
Could you send an email to me ?

Code: Select all

echo postfixtest|mail -s postfixtest web@onsleven.com
And then post the mail logs (mail.log, mail.err, syslog ) of that time ?
by Eek
16 Jul 2011, 15:41
Forum: B2 & B3 Support
Topic: postfix configuration problem ?
Replies: 22
Views: 21737

Re: postfix configuration problem ?

I do not understand, are you saying that if you do
echo test|mail -s test <your valid email adres>
you do not get an email?
by Eek
16 Jul 2011, 09:03
Forum: B2 & B3 Support
Topic: postfix configuration problem ?
Replies: 22
Views: 21737

Re: postfix configuration problem ?

Yes, it is normal behaviour to add the sender info and get a chain of mail relays.
I think horde is doing the adding you don't want.
Do you get the desired mail headers if you do a command line mail send?

Code: Select all

echo test|mail -s commandline someone@somewhere.com
by Eek
15 Jul 2011, 11:08
Forum: B2 & B3 Support
Topic: sasl problems
Replies: 24
Views: 26878

Re: sasl problems

Great!
I was already busy creating a wiki entry for using TLS email servers
but then ...darn-it ... vacation ;)
So in the wiki I mention your mail server option.
by Eek
15 Jul 2011, 06:46
Forum: B2 & B3 Support
Topic: sasl problems
Replies: 24
Views: 26878

Re: sasl problems

Ah yes, the syslog points to the fact that you are missing
smtp_tls_CAfile = /etc/postfix/cacert.pem
You could try the opensuse forum suggestion and use
smtp_tls_CApath = /etc/ssl/certs

I tried it and it works
by Eek
15 Jul 2011, 04:09
Forum: B2 & B3 Support
Topic: sasl problems
Replies: 24
Views: 26878

Re: sasl problems

Yes, I also recommend trying gmail as a test case,
As this works perfect for me.
I don't understand why you do not get logging.
Could you do a

Code: Select all

ls -l /etc/postfix/
df -h
/etc/init.d/postfix restart
tail -100 /var/log/syslog
by Eek
14 Jul 2011, 10:26
Forum: B2 & B3 Support
Topic: sasl problems
Replies: 24
Views: 26878

Re: sasl problems

Could you change these lines in the master.cf file smtp unix - - - - - smtp relay unix - - - - - smtp -o smtp_fallback_relay= into: smtp unix - - n - - smtp relay unix - - n - - smtp -o smtp_generic_maps= Could you also backup your main.cf and create a empty main.cf with this contents? alias_databas...
by Eek
14 Jul 2011, 09:07
Forum: B2 & B3 Support
Topic: sasl problems
Replies: 24
Views: 26878

Re: sasl problems

that is strange.
could you do a

Code: Select all

postconf -n
and a

Code: Select all

cat /etc/postfix/master.cf|grep smtp
by Eek
14 Jul 2011, 08:18
Forum: B2 & B3 Support
Topic: sasl problems
Replies: 24
Views: 26878

Re: sasl problems

Did you also restart postfix?

Code: Select all

/etc/init.d/postfix restart
And what is in the log files?
by Eek
14 Jul 2011, 06:47
Forum: B2 & B3 Support
Topic: sasl problems
Replies: 24
Views: 26878

Re: sasl problems

Oh yeah. create a file /etc/postfix/tls_per_site with the following contents: # Contents of /etc/postfix/tls_per_site # After changes run: # postmap /etc/postfix/tls_per_site smtp.gmail.com MUST then run postmap postmap /etc/postfix/tls_per_site create a file /etc/postfix/transport with the followin...
by Eek
14 Jul 2011, 06:09
Forum: B2 & B3 Support
Topic: sasl problems
Replies: 24
Views: 26878

Re: sasl problems

Did you also try to use my TLS configuration?