This is a discussion on Re: a problem i am have with postfix and outlook. within the mailing.postfix.users forums, part of the Mail Servers and Related category; On Tue, 15 Jun 2004, Lucas Restrepo Gil wrote: > i am sorry here is the deboging of the mails ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
On Tue, 15 Jun 2004, Lucas Restrepo Gil wrote:
> i am sorry here is the deboging of the mails that are getting stuck the > system does not get me any furter info. > > Jun 15 13:31:23 netsacpub postfix/smtpd[22804]: 71BB719C119: > client=dhcpf203.intranet.sac[172.16.20.203] > Jun 15 13:31:24 netsacpub postfix/cleanup[22813]: 71BB719C119: > message-id=<002901c45306$f65f33c0$cb1410ac@intranet.sac> > This is not the complete log, report results from: egrep '(smtpd\[22804\]|cleanup\[22813\]|71BB719C119|warning|fatal|error|panic):' \ /path/to/log > the config looks like this. > > alias_database = $alias_maps > alias_maps = hash:/etc/postfix/aliases, ldap:ldapsource This is wrong, try: alias_database = hash:/etc/postfix/aliases alias_maps = $alias_database, ldap:ldapsource > header_checks = regexp:/etc/postfix/header_checks Test these with: postmap -fq "Received:" regexp:/etc/postfix/header_checks > home_mailbox = Maildir/ > local_recipient_maps = $alias_maps, $virtual_maps, unix:passwd.byname No need to list $virtual_maps in local_recipient_maps. Leave the default setting as is. > myorigin = $mydomain Not a good idea for hosts doing local delivery and aliasing. Use masquerade_domains instead. Otherwise you will get false delivery loops when forwarding to another host with the same setting. > smtpd_banner = $myhostname ESMTP $mail_name Remove this from main.cf. > smtpd_recipient_restrictions = permit_sasl_authenticated, > permit_mynetworks, permit_mx_backup, permit_auth_destination, > check_relay_domains Just follow "permit_mx_backup" with "reject". > unknown_local_recipient_reject_code = 450 > Eventually set this to 550. -- Viktor. Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the "Reply-To" header. To unsubscribe from the postfix-users list, visit http://www.postfix.org/lists.html or click the link below: <mailto:majordomo@postfix.org?body=unsubscribe%20p ostfix-users> |