On 10/13/2015 11:25 AM, Ruben Safir wrote:
I use dovecot with systemd.
You also need to make sure that the AppArmour (or whatever you use on your system) accommodates it.
what appaurmor. I have never used that?
You installed via zypper, most, if not all, the appaurmor and related policies requirements should already be met. To your question, appaurmor is basically a set of security policies that limit, from an application and OS standpoint, what is allowed to start, stop and interact with any other running applications. It has been part of suse for ages. Back to dovecot, once you download it, you should simply be able to set the /etc/dovecot/dovecot.conf to a minimal config, example: $ cat /etc/dovecot/dovecot.conf auth_mechanisms = plain login passdb { driver = pam } userdb { driver = passwd } service auth { unix_listener /var/spool/postfix/private/auth { group = postfix mode = 0660 user = postfix } } ssl_cert = </etc/ssl/certs/dovecot.pem ssl_key = </etc/ssl/private/dovecot.pem mail_location=mbox:~/Mail:INBOX=/var/spool/mail/%u protocol imap { mail_max_userip_connections = 30 } (2) generate your /etc/ssl/certs/dovecot.pem and /etc/ssl/private/dovecot.pem by configuring: /usr/share/doc/packages/dovecot/dovecot-openssl.cnf with the details for your domain, and then running: # /usr/share/doc/packages/dovecot/mkcert.sh (3) start dovecot # systemctl start dovecot (4) enable dovecot to start at boot # systemctl enable dovecot If you postfix config is good (and it is running), you should then be able to access your mail. Good luck. -- David C. Rankin, J.D.,P.E. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org