# HG changeset patch # User Paul Boddie # Date 1422451764 -3600 # Node ID 84975914d568a364be695e4f2265ba6156549fd5 # Parent c6776371ecc82f256b42e23584f865b67a64852b Prevent calendar@example.com from being treated as a person recipient. diff -r c6776371ecc8 -r 84975914d568 conf/postfix/simple/virtual_alias_maps_people --- a/conf/postfix/simple/virtual_alias_maps_people Wed Jan 28 01:17:02 2015 +0100 +++ b/conf/postfix/simple/virtual_alias_maps_people Wed Jan 28 14:29:24 2015 +0100 @@ -1,3 +1,3 @@ -if !/^(people+|people-outgoing+|resources+|resource-).*@example\.com$/ +if !/^((people+|people-outgoing+|resources+|resource-).*|calendar)@example\.com$/ /^(.*)@(example\.com)$/ people+${1}@${2} endif diff -r c6776371ecc8 -r 84975914d568 conf/postfix/simple/virtual_alias_maps_people_outgoing --- a/conf/postfix/simple/virtual_alias_maps_people_outgoing Wed Jan 28 01:17:02 2015 +0100 +++ b/conf/postfix/simple/virtual_alias_maps_people_outgoing Wed Jan 28 14:29:24 2015 +0100 @@ -1,3 +1,3 @@ -if !/^(people+|people-outgoing+|resources+|resource-).*@example\.com$/ +if !/^((people+|people-outgoing+|resources+|resource-).*|calendar)@example\.com$/ /^(.*)@(example\.com)$/ people-outgoing+${1}@${2} endif diff -r c6776371ecc8 -r 84975914d568 conf/postfix/simple/virtual_alias_maps_resources --- a/conf/postfix/simple/virtual_alias_maps_resources Wed Jan 28 01:17:02 2015 +0100 +++ b/conf/postfix/simple/virtual_alias_maps_resources Wed Jan 28 14:29:24 2015 +0100 @@ -1,3 +1,3 @@ -if !/^(people+|people-outgoing+|resources+).*@example\.com$/ +if !/^((people+|people-outgoing+|resources+).*|calendar)@example\.com$/ /^(resource-.*)@(example\.com)$/ resources+${1}@${2} endif