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