-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbehave.toml
49 lines (39 loc) · 990 Bytes
/
behave.toml
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
############################################
# Behave.toml is a set of directive for
# per-domain behaviours.
# Incoming messages are handled in the
# following ways:
# - mail will be bounced (5xx), Deferred (4xx), or accepted (250)
# based on the percentages in the file per domain
# - TBD: will add oob and fbl responses in the future
# - TBD: might add opens and clicks in the future
#
#
############################################
["yahoo.ca"]
bounce = '50'
defer = '50'
# all remailing will be accepted and dropped
["yahoo.com"]
bounce = '10'
defer = '50'
# all remailing will be accepted and dropped
["hotmail.com"]
bounce = '100'
defer = '10'
["aol.com"]
bounce = '05'
defer = '20'
["gmail.com"]
bounce = '75'
defer = '5'
["att.com"]
bounce = '20'
defer = '20'
["comcast.com"]
bounce = '10'
defer = '20'
# Use this setting for any other random domains that are in the bounce response db
["default"]
bounce = '10'
defer = '5'