wildduck/config/default.toml

78 lines
1.6 KiB
TOML
Raw Normal View History

2017-07-12 02:38:23 +08:00
# Uncomment if you start the app as root and want to downgrade
# once all privileged actions are completed
#user="wildduck"
#group="wildduck"
# process title and syslog ident
ident="wildduck"
# how many processes to start
processes=1
# default quota storage in MB (can be overriden per user)
maxStorage=1024
# default smtp recipients for 24h (can be overriden per user)
maxRecipients=2000
# default forwarded messages for 24h (can be overriden per user)
maxForwards=2000
# If usernames are not email addresses then use this domain as hostname part
#emailDomain="mydomain.info"
2017-08-29 15:36:45 +08:00
bugsnagCode=""
# Header rules for routing spam
# @include "spamheaders.toml"
[dbs]
2017-08-15 21:41:18 +08:00
# @include "dbs.toml"
2017-07-17 21:32:31 +08:00
[totp]
# If enabled then encrypt TOTP seed tokens with the secret password. By default TOTP seeds
# are not encrypted and stored as cleartext. Once set up do not change these values,
# otherwise decrypting totp seeds is going to fail
#cipher="aes192"
#secret="a secret cat"
[attachments]
# @include "attachments.toml"
2017-07-12 02:38:23 +08:00
[log]
level="silly"
# log to syslog if true
# not needed if you run the app as systemd service
syslog=false
2017-08-08 18:20:03 +08:00
# delete authentication log entries after 30 days
# changing this value only affects new entries
authlogExpireDays=30
2017-07-12 02:38:23 +08:00
[imap]
2017-08-15 21:41:18 +08:00
# @include "imap.toml"
2017-07-25 20:50:16 +08:00
2017-07-12 02:38:23 +08:00
[tls]
2017-08-15 21:41:18 +08:00
# @include "tls.toml"
2017-07-12 02:38:23 +08:00
[lmtp]
2017-08-15 21:41:18 +08:00
# @include "lmtp.toml"
2017-07-12 02:38:23 +08:00
[pop3]
2017-08-15 21:41:18 +08:00
# @include "pop3.toml"
2017-07-25 20:50:16 +08:00
2017-07-12 02:38:23 +08:00
[api]
2017-08-15 21:41:18 +08:00
# @include "api.toml"
2017-07-25 20:50:16 +08:00
[irc]
# @include "irc.toml"
2017-07-12 02:38:23 +08:00
[sender]
2017-08-15 21:41:18 +08:00
# @include "sender.toml"
2017-07-25 20:50:16 +08:00
[smtp.setup]
2017-09-11 03:53:12 +08:00
# Public configuration for SMTP MDA, needed for mobileconfig files
hostname="localhost"
secure=false
port=2587