Thanks Aki,
I really appreciate your suggestions towards resolving the anomaly.
Aki wrote: This is unfortunate known issue, can at the moment I can recommend either using LMTP (which is greatly preferred over lda), or you can try
!try_include /etc/dovecot/ssl.conf
I have settled for the highly recommended LMTP already. It remains to pursue its setup to a logical conclusion. Do you have any idea what I omitted or misconfigured? What is preventing the handover from postfix to dovecot? Should I restore the entry for dovecot in /etc/postfix/master.cf (perhaps with an executable pointing to lmtp instead)?
-- Onyeibo
dovecot mailing list -- dovecot@dovecot.org To unsubscribe send an email to dovecot-leave@dovecot.org
in my experience this is enough:
Enable LMTP :
protocols = imap lmtp
Create the LMTP Unix socket:
service lmtp { unix_listener /var/spool/postfix/private/dovecot-lmtp { user = postfix group = postfix mode = 0600 } }
Enable required plugins for LMTP delivery:
protocol lmtp { postmaster_address = postmaster@domainname mail_plugins { quota = yes sieve = yes } }
Postfix configuration: main.cf
virtual users: virtual_transport = lmtp:unix:private/dovecot-lmtp
system users: mailbox_transport = lmtp:unix:private/dovecot-lmtp