exim: Keep mail for relay domains for 30 days.
[matthijs/servers/drsnuggles.git] / etc / exim4 / conf.d / retry / 30_exim4-config
1
2 ### retry/30_exim4-config
3 #################################
4
5 # This single retry rule applies to all domains and all errors. It specifies
6 # retries every 15 minutes for 2 hours, then increasing retry intervals,
7 # starting at 1 hour and increasing each time by a factor of 1.5, up to 16
8 # hours, then retries every 6 hours until 4 days have passed since the first
9 # failed delivery.
10
11 # Please note that these rules only limit the frequenzy of retries, the
12 # effective retry-time depends on the frequenzy of queue-running, too.
13 # See QUEUEINTERVAL in /etc/default/exim4.
14
15 # Address or Domain    Error       Retries
16 # -----------------    -----       -------
17
18 # Keep mails for 30 days for the domains we're backup MX for
19 *@+relay_to_domains    *           F,2h,15m; G,16h,1h,1.5; F,4d,6h; F,30d,24h
20
21 # Use default rules for all other mail
22 *                      *           F,2h,15m; G,16h,1h,1.5; F,4d,6h
23
24 # vim: set sts=2 expandtab sw=2 ai: