-
Notifications
You must be signed in to change notification settings - Fork 18
/
maildog.config.json
31 lines (31 loc) · 1.07 KB
/
maildog.config.json
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
// This config file support json with comment (jsonc)
// It simply adds support to single line (//) and multi-line comments (/* ... */) on `json` document
{
"domains": {
/*
"exmaple.com": { // your domain here
"fromEmail": "foo", // optional, default: "noreply"
"scanEnabled": false, // optional, default: true,
"tlsEnforced": false, // optional, default: false,
"fallbackEmails": [], // optional, default: []
"alias": { // required if `fallbackEmails` are not set
"bar": { // result in `[email protected]`
"description": "Lorem ipsum", // optional, default: ""
"to": ["[email protected]"] // required
}
}
},
*/
"maildog.dev": {
"fromEmail": "noreply",
"scanEnabled": true,
"tlsEnforced": true,
"alias": {
"edmund": {
"description": "Author", // For your reference only
"to": ["[email protected]"]
}
}
}
}
}