mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
21 lines
408 B
Markdown
21 lines
408 B
Markdown
---
|
|
title: Mail Delivery with POP3
|
|
hide:
|
|
- toc # Hide Table of Contents for this page
|
|
---
|
|
|
|
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`:
|
|
|
|
```yaml
|
|
mail:
|
|
ports:
|
|
- "25:25"
|
|
- "143:143"
|
|
- "587:587"
|
|
- "993:993"
|
|
- "110:110"
|
|
- "995:995"
|
|
environment:
|
|
- ENABLE_POP3=1
|
|
```
|