masqmail
diff admin/config-transition @ 317:55b7bde95d37
reworked allowed and denied addrs for routes
The following refactorings had been made:
- allowed_mail_locals + allowed_return_paths -> allowed_senders
- not_allowed_mail_locals + not_allowed_return_paths -> denied_senders
- allowed_rcpt_domains -> allowed_recipients
- not_allowed_rcpt_domains -> denied_recipients
The new options allow more consistent and more flexible matching.
author | meillo@marmaro.de |
---|---|
date | Thu, 28 Apr 2011 09:55:06 +0200 |
parents | e230bcd0f1c6 |
children | 08932c629849 |
line diff
1.1 --- a/admin/config-transition Mon Apr 25 15:17:30 2011 +0200 1.2 +++ b/admin/config-transition Thu Apr 28 09:55:06 2011 +0200 1.3 @@ -67,7 +67,7 @@ 1.4 " 1.5 1.6 check["online_detect"] = "conf" SUBSEP "Removed in 0.3.2" SUBSEP "\ 1.7 -Destilled to online_query. \ 1.8 +Distilled to online_query. \ 1.9 " 1.10 1.11 check["online_file"] = "conf" SUBSEP "Removed in 0.3.2" SUBSEP "\ 1.12 @@ -96,6 +96,34 @@ 1.13 If pipe is given, pipe will be used, otherwise smtp will be used. \ 1.14 " 1.15 1.16 +check["(^|[ ])allowed_return_paths"] = "route" SUBSEP "Removed in 0.3.2" SUBSEP "\ 1.17 +Replaced by 'allowed_senders'. \ 1.18 +" 1.19 + 1.20 +check["not_allowed_return_paths"] = "route" SUBSEP "Removed in 0.3.2" SUBSEP "\ 1.21 +Replaced by 'denied_senders'. \ 1.22 +" 1.23 + 1.24 +check["(^|[ ])allowed_mail_locals"] = "route" SUBSEP "Removed in 0.3.2" SUBSEP "\ 1.25 +Replaced by 'allowed_senders', if neither wildcards nor '@' is used. \ 1.26 +" 1.27 + 1.28 +check["not_allowed_mail_locals"] = "route" SUBSEP "Removed in 0.3.2" SUBSEP "\ 1.29 +Replaced by 'denied_senders', if neither wildcards nor '@' is used. \ 1.30 +" 1.31 + 1.32 +check["(^|[ ])allowed_rcpt_domains"] = "route" SUBSEP "Removed in 0.3.2" SUBSEP "\ 1.33 +Replaced by 'allowed_recipients', if the values are prepended with \ 1.34 +'*@', because 'allowed_recipients' matches complete addresses not just \ 1.35 +domains. \ 1.36 +" 1.37 + 1.38 +check["not_allowed_rcpt_domains"] = "route" SUBSEP "Removed in 0.3.2" SUBSEP "\ 1.39 +Replaced by 'denied_recipients', if the values are prepended with \ 1.40 +'*@', because 'allowed_recipients' matches complete addresses not just \ 1.41 +domains. \ 1.42 +" 1.43 + 1.44 # get files 1.45 1.46 # already covered by the get.* and online_gets.* options in the conf