Dovecot: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „=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.xi…“) |
|||
| (4 dazwischenliegende Versionen von einem anderen Benutzer werden nicht angezeigt) | |||
| 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> | ||
| + | |||
| + | =wenn gewünscht Maildir format umstellen= | ||
| + | /etc/dovecot/conf.d/10-mail.conf | ||
| + | mail_location = maildir:~/Maildir | ||
| + | |||
| + | =dovecot neu starten= | ||
| + | *systemctl restart dovecot | ||
| + | |||
| + | =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 | ||
Aktuelle Version vom 26. Mai 2020, 12:42 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
- systemctl restart dovecot
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