Dovecot bietet den Zugriff auf Mailboxen via POP3 und IMAP. Meiner Meinung nach ist Dovecot dafür die beste Software, die es gibt.
Ein ganz nettes Feature dabei ist das sogenannte Mailbox Logging. Dieses ermöglicht es Aktionen innerhalb einer Mailbox sehr genau zu loggen. Daher hier kurz die Konfiguration wie man es sich einrichtet
1 2 | #/etc/dovecot/conf.d/10-mail.conf mail_plugins = $mail_plugins quota mail_log notify |
sowohl das Plugin mail_log als auch notify sind nötig.
Diese werden dann so koniguriert
1 2 3 4 5 6 | #/etc/dovecot/conf.d/90-plugin.conf plugin { mail_log_events = delete undelete expunge copy mailbox_delete mailbox_rename mail_log_fields = uid box msgid size mail_log_prefix = "%s(%u)<%{session}>: " } |
Leave a Reply