Dovecot: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) |
Thomas (Diskussion | Beiträge) |
||
| Zeile 14: | Zeile 14: | ||
</pre> | </pre> | ||
| − | =Maildir format umstellen= | + | =wenn gewünscht Maildir format umstellen= |
/etc/dovecot/conf.d/10-mail.conf | /etc/dovecot/conf.d/10-mail.conf | ||
mail_location = maildir:~/Maildir | mail_location = maildir:~/Maildir | ||
Version vom 11. Dezember 2014, 13:15 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
wenn gewünscht 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