diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-06-05 18:25:09 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:54:27 +0200 |
commit | f12db60f358dbf5506e373477c04488a2c269332 (patch) | |
tree | 5e7ee6493b3495a7361a85e6812e226528380491 /roles/MX/files/etc/postfix/virtual | |
parent | 2c925ea17fcb6f71826e5c0f30f99c5daba10e14 (diff) |
Add a reserved domain 'discard.fripost.org' to discard messages.
‘noreply@’ aliases can be added by routing them to
‘@discard.fripost.org’.
Diffstat (limited to 'roles/MX/files/etc/postfix/virtual')
-rw-r--r-- | roles/MX/files/etc/postfix/virtual/reserved_alias.pcre | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/roles/MX/files/etc/postfix/virtual/reserved_alias.pcre b/roles/MX/files/etc/postfix/virtual/reserved_alias.pcre index f1c79c7..9fe60c8 100644 --- a/roles/MX/files/etc/postfix/virtual/reserved_alias.pcre +++ b/roles/MX/files/etc/postfix/virtual/reserved_alias.pcre @@ -1,5 +1,6 @@ -/^(?:postmaster|abuse)(?:\+.*)?@fripost\.org$/ admin@fripost.org +/^(?:postmaster|abuse)(?:\+.*)?@fripost\.org$/ admin@fripost.org # For other domains, RFC 822 section 6.3 and RFC 2142 section 4 # mandatory aliases are forwarded to OUR admin team and to the domain # owner or postmaster, if there are any. -/^(postmaster|abuse)(?:\+.*)?@(.*)/ $2/$1@reserved.fripost.org +/^(postmaster|abuse)(?:\+.*)?@(.*)/ $2/$1@reserved.fripost.org +/^(double-bounce)(?:\+.*)?@(.*)/ $2/$1@discard.fripost.org |