forked from muety/mailwhale
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.default.yml
31 lines (26 loc) · 1.26 KB
/
config.default.yml
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
env: dev # Affects log level and a few other things
mail:
domain: example.org # Your server's domain name
system_sender: MailWhale System <[email protected]> # Address which to send user verifications, etc. from
web:
public_url: 'http://localhost:3000' # Publicly available URL of your instance, required for callback links via e-mail
listen_v4: '127.0.0.1:3000' # Where to make the http server listen
cors_origins:
- 'http://localhost:5000'
smtp:
host: 'localhost'
port: 465
username: '[email protected]'
password: 'your secret password'
tls: true # Whether to connect via SSL/TLS (set 'false' for STARTTLS)
skip_verify_tls: false # Whether to trust self-signed certificates
store:
path: 'data.json.db'
security:
pepper: 'sshhh' # Change this!
allow_signup: true
verify_users: true # Whether to send verification mail when registering a new user
verify_senders: true # Whether to send verification mail when adding new sender addresses
block_list: # List of regexes to validate e-mail recipients against
- 'evilcompany\.org'
- 'drevil@gmail\.com'