Diese Seite (Version-22) wurde zuletzt am 13-Feb.-2021 16:51 von Administrator geändert.

Diese Seite wurde am 04-Feb.-2019 20:20 von Administrator erstellt.

Du bist nicht autorisiert, diese Seite umzubenennen.

Du bist nicht autorisiert, diese Seite zu löschen.

Versionsgeschichte der Seite

Version Zuletzt geändert Größe Autor Änderungen Kommentar
22 13-Feb.-2021 16:51 9 KB Administrator zur vorherigen
21 13-Feb.-2021 16:50 9 KB Administrator zur vorherigen | zur neuesten

Links

Eingehende Links Ausgehende Links

Versionsunterschiede

Unterschiede zwischen Version und .

Zeile 4: 45 Zeilen hinzugefügt.
!Mailserver with postfix and dovecot (29.12.2020)
based on [gund-wissen.de|https://www.grund-wissen.de/linux/server/postfix-und-dovecot.html]\\
Install with {{{apt-get install postfix}}}\\
Start reconfigure wizard with {{{sudo dpkg-reconfigure postfix}}}\\
Configuration
{{{
vi /etc/postfix/main.cf
}}}
example at {{{vi /usr/share/postfix/main.cf.dist}}}\\
list config settings with {{{postconf -d}}}
Check and restart
{{{
postfix check
sudo systemctl reload postfix
}}}
Logs
{{{
vi /var/log/mail.warn
vi /var/log/mail.err
}}}
vi /etc/aliases
! Dovecot
„Mail Delivery Agent“ (MDA) for POP3 and IMAP.\\
based on https://tecadmin.net/install-dovecot-on-debian-10/
{{{
apt-get install dovecot-core dovecot-lmtpd dovecot-imapd dovecot-pop3d
apt-get install dovecot-sieve dovecot-solr dovecot-antispam
}}}
vi /etc/dovecot/dovecot.conf
/etc/dovecot/conf.d
sudo systemctl enable dovecot.service
sudo systemctl start dovecot.service
sudo systemctl stop dovecot.service
sudo systemctl status dovecot.service
----