wildduck/config/imap.toml

86 lines
2.7 KiB
TOML
Raw Normal View History

2018-01-02 21:04:01 +08:00
# If enabled then WildDuck exposes an IMAP interface for listing and fetching emails
enabled = true
port = 9993
host = "0.0.0.0"
2017-08-15 21:41:18 +08:00
# Use `true` for port 993 and `false` for 143. If connection is not secured
2018-01-02 21:04:01 +08:00
# on connection then WildDuck enables STARTTLS extension
secure = true
2017-08-15 21:41:18 +08:00
# Max size for messages uploaded via APPEND
maxMB = 25
2017-08-15 21:41:18 +08:00
# delete messages from \Trash and \Junk after retention days
retention = 30
2017-08-15 21:41:18 +08:00
# Default max donwload bandwith per day in megabytes
2022-07-05 16:57:57 +08:00
# Replaced by 'const:max:imap:download' setting
maxDownloadMB = 10240
2017-11-10 21:04:58 +08:00
# Default max upload bandwith per day in megabytes
2022-07-05 16:57:57 +08:00
# Replaced by 'const:max:imap:upload' setting
maxUploadMB = 10240
2017-11-10 21:04:58 +08:00
# Default max concurrent connections per service per client
maxConnections = 15
2017-11-10 21:04:58 +08:00
2017-08-15 21:41:18 +08:00
# if `true` then do not autodelete expired messages
disableRetention = false
2017-08-15 21:41:18 +08:00
2017-09-11 03:53:12 +08:00
# If true, then disables STARTTLS support
disableSTARTTLS = false
2017-09-11 03:53:12 +08:00
2019-01-09 04:37:36 +08:00
# If true, then advertises COMPRESS=DEFLATE capability
enableCompression = false
2019-01-09 04:37:36 +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
2017-12-01 16:02:40 +08:00
# useProxy=true # expect PROXY from all conections
# useProxy=['*'] # expect PROXY from all conections
# useProxy=['1.2.3.4', '1.2.3.5'] # expect PROXY only from connections from listed IP addresses
2017-10-12 03:43:10 +08:00
# an array of IP addresses to ignore (not logged)
ignoredHosts = []
2018-01-02 21:04:01 +08:00
#name="WildDuck IMAP"
2017-09-11 03:53:12 +08:00
#version="1.0.0"
2018-01-02 21:04:01 +08:00
#vendor="WildDuck"
2017-09-11 03:53:12 +08:00
2017-11-07 00:00:09 +08:00
# Add extra IMAP interfaces
#[[interface]]
#enabled=true
#port=9143
#host="0.0.0.0"
#secure=false
#ignoreSTARTTLS=true
2017-08-15 21:41:18 +08:00
[setup]
# Public configuration for IMAP
hostname = "localhost"
secure = true
2017-08-15 21:41:18 +08:00
# port defaults to imap.port
#port=9993
[tls]
## If certificate path is not defined, use global or built-in self-signed certs
2017-08-15 21:41:18 +08:00
#key="/path/to/server/key.pem"
#cert="/path/to/server/cert.pem"
#dhparam="/path/to/server/dhparam.pem"
## You can also define extra options for specific TLS settings:
#ciphers="ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS"
#secureProtocol="SSLv23_server_method"
## constants.SSL_OP_NO_SSLv3 | constants.SSL_OP_NO_TLSv1 => 100663296
#secureOptions=100663296
2020-03-09 19:50:41 +08:00
2020-03-24 20:16:55 +08:00
#[[interface]]
#enabled=true
#port=9143
#host="0.0.0.0"
#secure=false
#ignoreSTARTTLS=false