Dovecot: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) |
Thomas (Diskussion | Beiträge) |
||
| Zeile 9: | Zeile 9: | ||
<pre> | <pre> | ||
ssl = yes | ssl = yes | ||
| − | ssl_cert = /etc/dovecot/private/xin-ca-maria.xinux.org.crt | + | ssl_cert = </etc/dovecot/private/xin-ca-maria.xinux.org.crt |
| − | ssl_key = /etc/dovecot/private/xin-ca-maria.xinux.org.key | + | ssl_key = </etc/dovecot/private/xin-ca-maria.xinux.org.key |
| − | ssl_ca = /etc/dovecot/private/xin-ca.crt | + | ssl_ca = </etc/dovecot/private/xin-ca.crt |
</pre> | </pre> | ||
| + | |||
=Maildir format umstellen= | =Maildir format umstellen= | ||
/etc/dovecot/conf.d/10-mail.conf | /etc/dovecot/conf.d/10-mail.conf | ||
Version vom 11. Dezember 2014, 12:58 Uhr
installation
- apt-get install dovecot-core dovecot-imapd
kopieren der eignen zertifikaten
- cp /root/xin-ca.crt /etc/dovecot/privat
- cp /root/xin-ca-maria.xinux.org.crt /etc/dovecot/privat
- cp /root/xin-ca-maria.xinux.org.key /etc/dovecot/privat
ssl anpassen
/etc/dovecot/conf.d/10-ssl.conf
ssl = yes ssl_cert = </etc/dovecot/private/xin-ca-maria.xinux.org.crt ssl_key = </etc/dovecot/private/xin-ca-maria.xinux.org.key ssl_ca = </etc/dovecot/private/xin-ca.crt
Maildir format umstellen
/etc/dovecot/conf.d/10-mail.conf
mail_location = maildir:~/Maildir
dovecot neu starten
- service dovecot restart
kontrolle
- netstat -lntp | grep dovecot
tcp 0 0 0.0.0.0:993 0.0.0.0:* LISTEN 10861/dovecot tcp 0 0 0.0.0.0:143 0.0.0.0:* LISTEN 10861/dovecot tcp6 0 0 :::993 :::* LISTEN 10861/dovecot tcp6 0 0 :::143 :::* LISTEN 10861/dovecot