Re: [kmb.10gb5m@exim-users.org: Re: [Exim] OT - Why you shou…

Top Page
Delete this message
Reply to this message
Author: David Woodhouse
Date:  
To: Nigel Metheringham
CC: Larry Rosenman, exim-users, kmb
Subject: Re: [kmb.10gb5m@exim-users.org: Re: [Exim] OT - Why you should not put Exchange on the Internet.]
On Fri, 2004-01-23 at 17:36 +0000, Nigel Metheringham wrote:
> Thats all very well, but I do a more generic thing:-
>
> Magical pick up of new lists is very nice :-)


I'd hate it -- but to each his own. It's mostly orthogonal though,
surely? You can do that either way...

if "${lc:$sender_address}" matches "owner-([a-z0-9-]+)[@+]" then
    save Maildir/.list.$1/
elif "${lc:$sender_address}" matches "([a-z0-9-]+)-owner[@+]" then
    save Maildir/.list.$1/
elif "${lc:$sender_address}" matches "([a-z0-9-]+)-bounces[@+]" then
    save Maildir/.list.$1/
elif "${lc:$sender_address}" matches "([a-z0-9-]+)-admin[@+]" then
    save Maildir/.list.$1/
...


--
dwmw2