mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-11-10 17:47:07 +08:00
42 lines
1.4 KiB
TOML
42 lines
1.4 KiB
TOML
# mongodb connection string for the main database
|
|
mongo="mongodb://127.0.0.1:27017/wildduck"
|
|
|
|
# redis connection string to connect to a single master (see below for Sentinel example)
|
|
redis="redis://127.0.0.1:6379/3"
|
|
|
|
# Wild Duck allows using different kind of data in different databases
|
|
# If you do not provide a database config value, then main database connection
|
|
# is used for everything
|
|
# You can either use a database name (uses shared connection) or a configutaion
|
|
# url (creates a separate connection) for each databases
|
|
|
|
# Optional database name or connection url for GridFS if you do not want to
|
|
# use the main db for storing attachments. Useful if you want
|
|
# to use a different mount folder or storage engine
|
|
#gridfs="wildduck"
|
|
|
|
# Optional database name or connection url for users collection if you do not want to
|
|
# use the main db for storing user/address data. Useful if you want
|
|
# to use a different mount folder or storage engine
|
|
#users="wildduck"
|
|
|
|
# Optional database name or connection url for ZoneMTA queue database. This is
|
|
# used to push outbound emails to the sending queue
|
|
sender="zone-mta"
|
|
|
|
#queued="mail"
|
|
|
|
## Connect to Redis Sentinel instead of single master
|
|
# [redis]
|
|
# name="mymaster"
|
|
# password=""
|
|
# db=3
|
|
# [[redis.sentinels]]
|
|
# host="54.36.85.113"
|
|
# port=26379
|
|
# [[redis.sentinels]]
|
|
# host="54.36.85.114"
|
|
# port=26379
|
|
# [[redis.sentinels]]
|
|
# host="54.36.85.115"
|
|
# port=26379
|