mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-11-10 17:47:07 +08:00
87 lines
1.9 KiB
TOML
87 lines
1.9 KiB
TOML
# Uncomment if you start the app as root and want to downgrade
|
|
# once all privileged actions are completed
|
|
# If you do not use privileged ports then you can start the app already under required user account
|
|
#user="wildduck"
|
|
#group="wildduck"
|
|
|
|
# process title
|
|
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"
|
|
|
|
# Bugsnag API key
|
|
# If set then reports errors to Bugsnag
|
|
bugsnagCode=""
|
|
|
|
# Header rules for routing spam
|
|
# This does not affect WildDuck plugin for Haraka
|
|
# @include "spamheaders.toml"
|
|
|
|
[dbs]
|
|
# @include "dbs.toml"
|
|
|
|
[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"
|
|
|
|
[u2f]
|
|
# Fully qualified URL of your website (must use HTTPS!)
|
|
appId="https://localhost:3000"
|
|
|
|
[attachments]
|
|
# @include "attachments.toml"
|
|
|
|
[log]
|
|
level="silly"
|
|
|
|
# delete authentication log entries after 30 days
|
|
# changing this value only affects new entries
|
|
# set to false to not log authentication events
|
|
# set to 0 to keep the logs infinitely
|
|
authlogExpireDays=30
|
|
|
|
[imap]
|
|
# @include "imap.toml"
|
|
|
|
[tls]
|
|
# @include "tls.toml"
|
|
|
|
[lmtp]
|
|
# @include "lmtp.toml"
|
|
|
|
[pop3]
|
|
# @include "pop3.toml"
|
|
|
|
[api]
|
|
# @include "api.toml"
|
|
|
|
[sender]
|
|
# @include "sender.toml"
|
|
|
|
[dkim]
|
|
# @include "dkim.toml"
|
|
|
|
[plugins]
|
|
# @include "plugins/*.toml"
|
|
|
|
[smtp.setup]
|
|
# Public configuration for SMTP MDA, needed for mobileconfig files
|
|
hostname="localhost"
|
|
secure=false
|
|
port=2587
|