docker-mailserver/docs/content/config/pop3.md

19 lines
355 B
Markdown
Raw Normal View History

2016-04-24 17:15:25 +02:00
**We do not recommend using POP. Use IMAP instead.**
2016-04-24 17:15:04 +02:00
2019-08-06 23:39:08 +02:00
If you really want to have POP3 running, add 3 lines to the docker-compose.yml :
2016-04-24 17:15:04 +02:00
Add the ports 110 and 995, and add environment variable ENABLE_POP :
```
mail:
[...]
ports:
- "25:25"
- "143:143"
- "587:587"
- "993:993"
- "110:110"
- "995:995"
environment:
- ENABLE_POP3=1
```