1
0
mirror of https://github.com/tomav/docker-mailserver.git synced 2024-06-30 13:11:15 +02:00
docker-mailserver/docs/content/config/pop3.md
2021-04-15 11:49:23 +02:00

408 B

title hide
Mail Delivery with POP3
toc

If you want to use POP3(S), you have to add the ports 110 and/or 995 (TLS secured) and the environment variable ENABLE_POP3 to your docker-compose.yml:

mail:
  ports:
    - "25:25"
    - "143:143"
    - "587:587"
    - "993:993"
    - "110:110"
    - "995:995" 
  environment:
    - ENABLE_POP3=1