Error receiving mail from postfix
When mail is relayed to dovecot from postfix, I am getting this error message in the maillog:
Jul 1 07:05:19 scorpio postfix/pipe[45488]: 3h2jQl3Xldz3FMPc: to=user@domain.com, relay=dovecot, delay=0.16, delays=0.12/0.01/0/0.03, dsn=4.3.0, status=deferred (temporary failure. Command output: lda: Error: user user@domain.com: Error reading configuration: Invalid settings: postmaster_address setting not given lda: Fatal: Internal error occurred. Refer to server log for more information. )
Is this a Postfix problem or a Dovecot problem?
# OS: FreeBSD 10.0-RELEASE-p3 amd64 ufs auth_debug_passwords = yes auth_mechanisms = plain login cram-md5 digest-md5 ntlm auth_verbose = yes auth_verbose_passwords = plain log_path = /var/log/dovecot mail_location = maildir:/var/mail/vmail/seibercom/gerard managesieve_notify_capability = mailto managesieve_sieve_capability = fileinto reject envelope encoded-character vacation subaddress comparator-i;ascii-numeric relational regex imap4flags copy include variables body enotify environment mailbox date ihave duplicate namespace inbox { inbox = yes location = mailbox Drafts { special_use = \Drafts } mailbox Junk { special_use = \Junk } mailbox Sent { special_use = \Sent } mailbox "Sent Messages" { special_use = \Sent } mailbox Trash { special_use = \Trash } prefix = } passdb { args = username_format=%u /usr/local/etc/dovecot/user/passwd driver = passwd-file } passdb { driver = pam } passdb { args = scheme=CRYPT username_format=%u /usr/local/etc/dovecot/user/passwd driver = passwd-file } plugin { sieve_global_path = /usr/local/etc/dovecot/sieve/default.sieve } service auth { unix_listener /var/spool/postfix/private/auth { group = postfix mode = 0666 user = postfix } unix_listener auth-userdb { group = vmail mode = 0666 user = vmail } } service imap-login { inet_listener imap { port = 143 } inet_listener imaps { port = 993 ssl = yes } } service pop3-login { inet_listener pop3 { port = 110 } inet_listener pop3s { port = 995 ssl = yes } } ssl_cert =
-- jerry
On 1.7.2014 13:10, Jerry wrote:
When mail is relayed to dovecot from postfix, I am getting this error message in the maillog:
Jul 1 07:05:19 scorpio postfix/pipe[45488]: 3h2jQl3Xldz3FMPc: to=user@domain.com, relay=dovecot, delay=0.16, delays=0.12/0.01/0/0.03, dsn=4.3.0, status=deferred (temporary failure. Command output: lda: Error: user user@domain.com: Error reading configuration: Invalid settings: postmaster_address setting not given lda: Fatal: Internal error occurred. Refer to server log for more information. )
Is this a Postfix problem or a Dovecot problem?
Misconfigured Dovecot, it's missing postmaster_address setting for LDA as the log message is telling you.
On Tue, 01 Jul 2014 13:57:26 +0200, Jiri Bourek stated:
On 1.7.2014 13:10, Jerry wrote:
When mail is relayed to dovecot from postfix, I am getting this error message in the maillog:
Jul 1 07:05:19 scorpio postfix/pipe[45488]: 3h2jQl3Xldz3FMPc: to=user@domain.com, relay=dovecot, delay=0.16, delays=0.12/0.01/0/0.03, dsn=4.3.0, status=deferred (temporary failure. Command output: lda: Error: user user@domain.com: Error reading configuration: Invalid settings: postmaster_address setting not given lda: Fatal: Internal error occurred. Refer to server log for more information. )
Is this a Postfix problem or a Dovecot problem?
Misconfigured Dovecot, it's missing postmaster_address setting for LDA as the log message is telling you.
Okay, perhaps a dump question, but exactly where am I suppose to enter that information? I have tried reading the documentation, but I must be missing it.
-- jerry
Am 01.07.2014 14:31, schrieb Jerry:
On Tue, 01 Jul 2014 13:57:26 +0200, Jiri Bourek stated:
On 1.7.2014 13:10, Jerry wrote:
When mail is relayed to dovecot from postfix, I am getting this error message in the maillog:
Jul 1 07:05:19 scorpio postfix/pipe[45488]: 3h2jQl3Xldz3FMPc: to=user@domain.com, relay=dovecot, delay=0.16, delays=0.12/0.01/0/0.03, dsn=4.3.0, status=deferred (temporary failure. Command output: lda: Error: user user@domain.com: Error reading configuration: Invalid settings: postmaster_address setting not given lda: Fatal: Internal error occurred. Refer to server log for more information. )
Is this a Postfix problem or a Dovecot problem?
Misconfigured Dovecot, it's missing postmaster_address setting for LDA as the log message is telling you.
Okay, perhaps a dump question, but exactly where am I suppose to enter that information? I have tried reading the documentation, but I must be missing it.
As Edgar Pettijohn has written on the Postfix mailing list this setting should be found in /usr/local/etc/dovecot/conf.d/15-lda.conf
-- Alex JOST
protocol lda { auth_socket_path = /var/run/dovecot/auth-userdb deliver_log_format = msgid=%m: from=%f: %$ log_path = /var/log/dovedel/deliver.log mail_plugins = $mail_plugins sieve postmaster_address = postmaster@YOUR_DOMAIN quota_full_tempfail = no }
On 7/1/14, Jerry jerry@seibercom.net wrote:
On Tue, 01 Jul 2014 13:57:26 +0200, Jiri Bourek stated:
On 1.7.2014 13:10, Jerry wrote:
When mail is relayed to dovecot from postfix, I am getting this error message in the maillog:
Jul 1 07:05:19 scorpio postfix/pipe[45488]: 3h2jQl3Xldz3FMPc: to=user@domain.com, relay=dovecot, delay=0.16, delays=0.12/0.01/0/0.03, dsn=4.3.0, status=deferred (temporary failure. Command output: lda: Error: user user@domain.com: Error reading configuration: Invalid settings: postmaster_address setting not given lda: Fatal: Internal error occurred. Refer to server log for more information. )
Is this a Postfix problem or a Dovecot problem?
Misconfigured Dovecot, it's missing postmaster_address setting for LDA as the log message is telling you.
Okay, perhaps a dump question, but exactly where am I suppose to enter that information? I have tried reading the documentation, but I must be missing it.
-- jerry
participants (4)
-
Alex JOST
-
Jerry
-
Jiri Bourek
-
Nick Edwards