Enable pop3 on the frontend, fix #313

master
kaiyou 7 years ago
parent 6e61500eb1
commit 92f2025d7c

@ -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 %}
}

Loading…
Cancel
Save