2018-10-25 21:51:47 +08:00
|
|
|
[app]
|
|
|
|
# Interface and port where the app will run its webserver.
|
|
|
|
address = "0.0.0.0:9000"
|
|
|
|
|
2018-11-03 02:03:00 +08:00
|
|
|
# Public root URL of the listmonk installation that'll be used
|
|
|
|
# in the messages for linking to images, unsubscribe page etc.
|
2019-01-03 19:18:47 +08:00
|
|
|
root = "https://listmonk.mysite.com"
|
|
|
|
|
|
|
|
# (Optional) full URL to the static logo to be displayed on
|
|
|
|
# user facing view such as the unsubscription page.
|
|
|
|
# eg: https://mysite.com/images/logo.svg
|
|
|
|
logo_url = ""
|
|
|
|
|
|
|
|
# (Optional) full URL to the static favicon to be displayed on
|
|
|
|
# user facing view such as the unsubscription page.
|
|
|
|
# eg: https://mysite.com/images/favicon.png
|
|
|
|
favicon_url = ""
|
2018-10-25 21:51:47 +08:00
|
|
|
|
|
|
|
# The default 'from' e-mail for outgoing e-mail campaigns.
|
|
|
|
from_email = "listmonk <from@mail.com>"
|
|
|
|
|
2018-11-28 15:59:57 +08:00
|
|
|
# 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"]
|
|
|
|
|
2018-10-25 21:51:47 +08:00
|
|
|
# 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
|
2019-05-27 19:46:46 +08:00
|
|
|
# mail server will
|
2018-10-25 21:51:47 +08:00
|
|
|
concurrency = 100
|
|
|
|
|
2018-11-26 19:45:40 +08:00
|
|
|
# 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.
|
2018-11-26 19:46:18 +08:00
|
|
|
max_send_errors = 1000
|
2018-11-26 19:45:40 +08:00
|
|
|
|
2018-11-26 19:10:51 +08:00
|
|
|
|
2019-07-21 21:48:41 +08:00
|
|
|
[privacy]
|
2019-07-21 22:13:43 +08:00
|
|
|
# Allow subscribers to unsubscribe from all mailing lists and mark themselves
|
|
|
|
# as blacklisted?
|
|
|
|
allow_blacklist = false
|
|
|
|
|
2019-07-21 21:48:41 +08:00
|
|
|
# Allow subscribers to export data recorded on them?
|
|
|
|
allow_export = false
|
|
|
|
|
|
|
|
# Items to include in the data export.
|
|
|
|
# profile Subscriber's profile including custom attributes
|
|
|
|
# subscriptions Subscriber's subscription lists (private list names are masked)
|
|
|
|
# campaign_views Campaigns the subscriber has viewed and the view counts
|
|
|
|
# link_clicks Links that the subscriber has clicked and the click counts
|
|
|
|
exportable = ["profile", "subscriptions", "campaign_views", "link_clicks"]
|
|
|
|
|
|
|
|
# Allow subscribers to delete themselves from the database?
|
|
|
|
# This deletes the subscriber and all their subscriptions.
|
|
|
|
# Their association to campaign views and link clicks are also
|
|
|
|
# removed while views and click counts remain (with no subscriber
|
|
|
|
# associated to them) so that stats and analytics aren't affected.
|
|
|
|
allow_wipe = false
|
|
|
|
|
|
|
|
|
2018-10-25 21:51:47 +08:00
|
|
|
# Database.
|
|
|
|
[db]
|
2019-07-12 16:20:44 +08:00
|
|
|
host = "demo-db"
|
2018-10-25 21:51:47 +08:00
|
|
|
port = 5432
|
|
|
|
user = "listmonk"
|
2019-07-12 16:20:44 +08:00
|
|
|
password = "listmonk"
|
2018-10-25 21:51:47 +08:00
|
|
|
database = "listmonk"
|
2019-05-27 19:46:46 +08:00
|
|
|
ssl_mode = "disable"
|
2018-10-25 21:51:47 +08:00
|
|
|
|
2019-12-05 19:58:22 +08:00
|
|
|
# Maximum active and idle connections to pool.
|
|
|
|
max_open = 50
|
|
|
|
max_idle = 10
|
2018-10-25 21:51:47 +08:00
|
|
|
|
|
|
|
# SMTP servers.
|
|
|
|
[smtp]
|
|
|
|
[smtp.my0]
|
|
|
|
enabled = true
|
|
|
|
host = "my.smtp.server"
|
|
|
|
port = "25"
|
|
|
|
|
2020-02-05 20:39:13 +08:00
|
|
|
# cram | plain | empty for no auth
|
2018-10-25 21:51:47 +08:00
|
|
|
auth_protocol = "cram"
|
|
|
|
username = "xxxxx"
|
|
|
|
password = ""
|
|
|
|
|
2020-02-06 18:09:43 +08:00
|
|
|
# Optional. Some SMTP servers require a FQDN in the hostname.
|
|
|
|
# By default, HELLOs go with "localhost". Set this if a custom
|
|
|
|
# hostname should be used.
|
|
|
|
hello_hostname = ""
|
|
|
|
|
2018-10-25 21:51:47 +08:00
|
|
|
# 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
|
2019-10-15 20:21:32 +08:00
|
|
|
|
|
|
|
# Upload settings
|
|
|
|
[upload]
|
|
|
|
# Provider which will be used to host uploaded media. Bundled providers are "filesystem" and "s3".
|
|
|
|
provider = "filesystem"
|
|
|
|
|
|
|
|
# S3 Provider settings
|
|
|
|
[upload.s3]
|
|
|
|
# (Optional). AWS Access Key and Secret Key for the user to access the bucket. Leaving it empty would default to use
|
|
|
|
# instance IAM role.
|
|
|
|
aws_access_key_id = ""
|
|
|
|
aws_secret_access_key = ""
|
|
|
|
# AWS Region where S3 bucket is hosted.
|
|
|
|
aws_default_region="ap-south-1"
|
|
|
|
# Specify bucket name.
|
|
|
|
bucket=""
|
|
|
|
# Path where the files will be stored inside bucket. Empty value ("") means the root of bucket.
|
|
|
|
bucket_path=""
|
|
|
|
# Bucket type can be "private" or "public".
|
|
|
|
bucket_type="public"
|
|
|
|
# (Optional) Specify TTL (in seconds) for the generated presigned URL. Expiry value is used only if the bucket is private.
|
|
|
|
expiry="86400"
|
|
|
|
|
|
|
|
# Filesystem provider settings
|
|
|
|
[upload.filesystem]
|
|
|
|
# Path to the uploads directory where media will be uploaded. Leaving it empty ("") means current working directory.
|
|
|
|
upload_path=""
|
|
|
|
# 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"
|