-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.example
40 lines (31 loc) · 933 Bytes
/
config.example
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
/**
* HOW TO USE:
*
* 1 Add environment variables for the various stages here
* 2 Rename this file to config.js
* 3 Make sure to not commit this file.
*/
module.exports = {
// Default Configuration
default: {
// The email will be forwarded from this address
// (The Reply-To will be set to the original sender)
fromEmail: '[email protected]',
// Prefix the subject line of the email
subjectPrefix: 'FW: ',
// Which domains should be forwarded and where
forwardMapping: {
// Matches all verified addresses for the given domain
'@sent.example': [
// Forward email to multiple addresses
],
// Covers one specific address at the specified domain
'[email protected]': [
// Forward email to one address
],
},
},
};