mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-10 17:13:04 +08:00
c24c19b120
- Add notifications for campaign state change - Add notifications for import state change Related changes. - Add a new 'templates' directory with HTML templates - Move the static campaign template as a .tpl file into it - Change Messenger.Push() to accept multiple recipients - Change exhaustCampaign()'s behaviour to pass metadata to admin emails
83 lines
2.3 KiB
Text
83 lines
2.3 KiB
Text
[app]
|
|
# Interface and port where the app will run its webserver.
|
|
address = "0.0.0.0:9000"
|
|
|
|
# Public root URL of the listmonk installation that'll be used
|
|
# in the messages for linking to images, unsubscribe page etc.
|
|
root = "http://listmonk.mysite.com"
|
|
|
|
# The default 'from' e-mail for outgoing e-mail campaigns.
|
|
from_email = "listmonk <from@mail.com>"
|
|
|
|
# List of e-mail addresses to which admin notifications such as
|
|
# import updates, campaign completion, failure etc. should be sent.
|
|
# To disable notifications, set an empty list, eg: notify_emails = []
|
|
notify_emails = ["admin1@mysite.com", "admin2@mysite.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
|
|
|
|
# The number of errors (eg: SMTP timeouts while e-mailing) a running
|
|
# campaign should tolerate before it is paused for manual
|
|
# investigation or intervention. Set to 0 to never pause.
|
|
max_send_errors = 1000
|
|
|
|
|
|
# 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
|