1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-04-17 11:56:22 +02:00

Enable pop3 on the frontend, fix #313

This commit is contained in:
kaiyou 2017-11-10 10:14:58 +01:00
parent 6e61500eb1
commit 92f2025d7c

View File

@ -146,6 +146,16 @@ mail {
imap_auth plain;
}
server {
listen 110;
listen [::]:110;
{% if TLS %}
starttls only;
{% endif %}
protocol pop3;
pop3_auth plain;
}
server {
listen 587;
listen [::]:587;
@ -170,6 +180,13 @@ mail {
protocol imap;
imap_auth plain;
}
server {
listen 995 ssl;
listen [::]:995 ssl;
protocol pop3;
pop3_auth plain;
}
{% endif %}
{% endif %}
}