-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config_example.edn
47 lines (39 loc) · 2.05 KB
/
config_example.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{;;;; Global configuration options
;;;; Mandatory
;; :admin-email "my@email.com" ; a valid email address
;; :backends #{"mailgun" "mailjet"
;; "sendinblue"} ; set of enabled backends
;;;; Optional
;; :base-url "http://base-url" ; base URL of the web service
;; :locale "en" ; or "fr", etc.
;; :dir "/subdirectory"
;; :lists-exclude-regexp nil ; a regular expression
;; :lists-include-regexp nil ; a regular expression
;; :ui-strings {:mailing-lists "Title"} ; custom UI strings
;; :log-file "log-filename.txt" ; log file name
;;;; Global options, possibly overriden by per-list options in :lists
;; :from "postmaster@domain.com"
;; :team "The name of my team"
;; :msg-id "domain.com"
;; :tos-url "http://domain.com/tos"
;; :return-url "http://domain.com"
;; :smtp-host "smtp.provider.org"
;; :smtp-port 587
;; :smtp-login "my-smtp-login@provider.org"
;; :smtp-password "my-smtp-password@provider.org"
;; :warn-every-x-subscribers 10
;;;; Per-list options
;; :lists {"my-list@fqdn"
;; {:from "Your Name <email@domain.com>"
;; :to "Your Name <email@domain.com>"
;; :description "Custom description"
;; :name "Custom name"
;; :msg-id "domain.com"
;; :smtp-login "email@domain.com"
;; :smtp-password "XXX"
;; :smtp-host "..."
;; :smtp-port 587
;; :return-url "http://domain.com"
;; :tos-url "https://tos.com"
;; :warn-every-x-subscribers 3}}
}