-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
33 lines (33 loc) · 894 Bytes
/
config.example.json
File metadata and controls
33 lines (33 loc) · 894 Bytes
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
{
"fromEmail": "forwarder@your-domain.tld",
"subjectPrefix": "",
"allowPlusSign": true,
"forwardMapping": {
"john@your-domain.tld": [
"john.doe@some-other-domain.tld"
],
"jane@your-domain.tld": [
"jane.doe@some-other-domain.tld"
],
"@your-domain.tld": [
"john.doe@some-other-domain.tld",
"jane.doe@some-other-domain.tld"
],
"@": [
"admin@some-other-domain.tld"
]
},
"s3": {
"bucketName": "aws-mail-forwarder",
"incoming": {
"newPrefix": "in/new/",
"spamVirusPrefix": "in/spam-virus/",
"forwardedPrefix": "in/forwarded/",
"failedPrefix": "in/failed/"
},
"outgoing": {
"sentPrefix": "out/sent/",
"failedPrefix": "out/failed/"
}
}
}