mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-08 00:48:52 +08:00
40 lines
1 KiB
TOML
40 lines
1 KiB
TOML
# If enabled then Wild Duck exposes a limited POP3 interface for listing and fetching emails
|
|
enabled=true
|
|
port=9110
|
|
# by default bind to localhost only
|
|
host="0.0.0.0"
|
|
|
|
# Use `true` for port 995 and `false` for 110. Try to always use `true` as the included
|
|
# POP3 server is limited and does not support the STLS command
|
|
secure=false
|
|
|
|
# If true, then do not show server info in CAPA response
|
|
disableVersionString=false
|
|
|
|
# How many latest messages to list for LIST and UIDL
|
|
# POP3 server never lists all messages but only a limited length list
|
|
maxMessages=250
|
|
|
|
# TODO: Max donwload bandwith per day
|
|
maxDownloadMB=3000
|
|
|
|
# If true, then expect HAProxy PROXY header as the first line of data
|
|
useProxy=false
|
|
|
|
# an array of IP addresses to ignore (not logged)
|
|
ignoredHosts=[]
|
|
|
|
#name="Wild Duck POP3"
|
|
#version="1.0.0"
|
|
|
|
[tls]
|
|
# If certificate path is not defined, use global or built-in self-signed certs
|
|
#key="/path/to/server/key.pem"
|
|
#cert="/path/to/server/cert.pem"
|
|
|
|
[setup]
|
|
# Public configuration for POP3
|
|
hostname="localhost"
|
|
secure=true
|
|
# port defaults to pop3.port
|
|
#port=9995
|