wildduck v4

This commit is contained in:
2025-06-05 18:05:37 -05:00
parent 73df166702
commit ca45cab9bd
4 changed files with 134 additions and 180 deletions

View File

@@ -0,0 +1,20 @@
name = "WildDuck Webmail"
[www]
port = 3000
host = "0.0.0.0"
secure = false
[api]
url = "http://wildduck:8080"
[dbs]
redis = "redis://redis:6379/1"
mongodb = "mongodb://mongo:27017/wildduck"
[attachments]
type = "gridstore"
bucket = "attachments"
[log]
level = "info"

View File

@@ -0,0 +1,73 @@
name = "WildDuck Mail Server"
[api]
port = 8080
host = "0.0.0.0"
secure = false
[dbs]
mongodb = "mongodb://mongo:27017/wildduck"
redis = "redis://redis:6379/2"
gridfs = "mongodb://mongo:27017/wildduck"
[imap]
port = 143
host = "0.0.0.0"
secure = false
starttls = true
[imaps]
port = 993
host = "0.0.0.0"
secure = true
[pop3]
port = 110
host = "0.0.0.0"
secure = false
starttls = true
[pop3s]
port = 995
host = "0.0.0.0"
secure = true
[smtp]
port = 25
host = "0.0.0.0"
secure = false
starttls = true
[submission]
port = 587
host = "0.0.0.0"
secure = false
starttls = true
authRequired = true
[attachments]
type = "gridstore"
bucket = "attachments"
[log]
level = "info"
[sender]
name = "mail.andreasknuth.de"
address = "mailer-daemon@andreasknuth.de"
[emailDomain]
default = "andreasknuth.de"
[acme]
enabled = false
[elasticsearch]
enabled = false
[lmtp]
enabled = false
[tasks]
enabled = true
deleteAfter = 30