Kurt22 wrote on 11.08.2010:
I have a probleme with my configuration of dovecot I think. I have no problem for send a email but I don't want receive a email. In my /var/log/mail.log I have :
Quote: connect from mail-ww0-f45.google.com[74.125.82.45] Aug 11 14:21:58 ns351550 postfix/smtpd[1844]: NOQUEUE: reject: RCPT from mail-ww0-f45.google.com[74.125.82.45]: 550 5.1.1 contact@akairnet.com: Recipient address rejected: User unknown in local recipient table; from=fwdavy@gmail.com to=contact@akairnet.com proto=ESMTP helo=
Aug 11 14:21:58 ns351550 postfix/smtpd[1844]: disconnect from mail-ww0-f45.google.com[74.125.82.45] so...problem on :
OK, user is unknown - you've commented out local_recipient_maps so the default value is
local_recipient_maps = proxy:unix:passwd.byname $alias_maps
mydestination = localhost, localhost.akairnet.com, akairnet.com #local_recipient_maps =
Is the user "contact" existent in /etc/passwd? If you use your domain in mydestination then Postfix tries to find the user in /etc/passwd or /etc/aliases. If the user is not found then the above error is logged.
-- Daniel