wildduck/config/pop3.toml

40 lines
973 B
TOML
Raw Normal View History

2018-01-02 21:04:01 +08:00
# If enabled then WildDuck exposes a limited POP3 interface for listing and fetching emails
2017-08-15 21:41:18 +08:00
enabled=true
2017-12-23 00:32:53 +08:00
port=9995
2017-08-15 21:41:18 +08:00
# by default bind to localhost only
2017-10-12 03:43:10 +08:00
host="0.0.0.0"
2017-08-15 21:41:18 +08:00
2017-12-23 00:32:53 +08:00
# Use `true` for port 995 and `false` for 110
secure=true
2017-08-15 21:41:18 +08:00
2017-09-11 03:53:12 +08:00
# If true, then do not show server info in CAPA response
disableVersionString=false
2017-08-15 21:41:18 +08:00
# How many latest messages to list for LIST and UIDL
# POP3 server never lists all messages but only a limited length list
maxMessages=250
# Max donwload bandwith per day in megabytes
maxDownloadMB=10000
2017-11-13 21:27:37 +08:00
2017-10-12 03:43:10 +08:00
# 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=[]
2018-01-02 21:04:01 +08:00
#name="WildDuck POP3"
2017-11-06 22:23:27 +08:00
#version="1.0.0"
2017-08-15 21:41:18 +08:00
[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