74 lines
1.8 KiB
Plaintext
74 lines
1.8 KiB
Plaintext
# Application.
|
|
[app]
|
|
# Interface and port where the app will run its webserver.
|
|
address = "0.0.0.0:9000"
|
|
|
|
# Root to the listmonk installation that'll be used in the e-mails for linking to
|
|
# images, the unsubscribe URL etc.
|
|
root = "http://listmonk.mysite.com"
|
|
|
|
# The default 'from' e-mail for outgoing e-mail campaigns.
|
|
from_email = "listmonk <from@mail.com>"
|
|
|
|
# Path to the uploads directory where media will be uploaded.
|
|
upload_path = "uploads"
|
|
|
|
# Upload URI that's visible to the outside world. The media
|
|
# uploaded to upload_path will be made available publicly
|
|
# under this URI, for instance, list.yoursite.com/uploads.
|
|
upload_uri = "/uploads"
|
|
|
|
# Directory where the app's static assets are stored (index.html, ./static etc.)
|
|
asset_path = "frontend/my/build"
|
|
|
|
# Maximum concurrent workers that will attempt to send messages
|
|
# simultaneously. This should depend on the number of CPUs the
|
|
# machine has and also the number of simultaenous e-mails the
|
|
# mail server will
|
|
concurrency = 100
|
|
|
|
# Database.
|
|
[db]
|
|
host = "localhost"
|
|
port = 5432
|
|
user = "listmonk"
|
|
password = ""
|
|
database = "listmonk"
|
|
|
|
# TQekh4quVgGc3HQ
|
|
|
|
|
|
# SMTP servers.
|
|
[smtp]
|
|
[smtp.my0]
|
|
enabled = true
|
|
host = "my.smtp.server"
|
|
port = "25"
|
|
|
|
# cram or plain.
|
|
auth_protocol = "cram"
|
|
username = "xxxxx"
|
|
password = ""
|
|
|
|
# Maximum time (milliseconds) to wait per e-mail push.
|
|
send_timeout = 5000
|
|
|
|
# Maximum concurrent connections to the SMTP server.
|
|
max_conns = 10
|
|
|
|
[smtp.postal]
|
|
enabled = false
|
|
host = "my.smtp.server2"
|
|
port = "25"
|
|
|
|
# cram or plain.
|
|
auth_protocol = "plain"
|
|
username = "xxxxx"
|
|
password = ""
|
|
|
|
# Maximum time (milliseconds) to wait per e-mail push.
|
|
send_timeout = 5000
|
|
|
|
# Maximum concurrent connections to the SMTP server.
|
|
max_conns = 10
|