Dovecot LMTIMAP

Install Dovecot

apt-get install dovecot-imapd

Edit /etc/dovecot/conf.d/20-imap.conf

In der 20-imap.conf gibt es nichts zu tun:

protocol imap {
}

Edit /etc/dovecot/conf.d/10-master.conf

In der 10-master.conf wird ein TCP-Listener für LMTP angelegt. (Ersetze <%= ipaddress_eth0 %> mit der IP von eth0)

...
service imap-login {
  inet_listener imap {
    port = 143
    address = <%= ipaddress_eth0 %>
  }
  inet_listener imaps {
    port = 993
    address = <%= ipaddress_eth0 %>
    ssl = yes
  }
}
service imap {
}
...