On Sun, Mar 27, 2022 at 01:04:07AM -0700, Roger Klorese <rog...@queernet.org> wrote:
> I am seeing: > > Mar 27 00:48:28 divine postfix/trivial-rewrite[5272]: warning: > regexp:/home/sympa/etc/transport_regexp is unavailable. open > /home/sympa/etc/transport_regexp: Permission denied > Mar 27 00:48:28 divine postfix/trivial-rewrite[5272]: warning: > regexp:/home/sympa/etc/transport_regexp lookup error for > "list-owners-h...@hosting.onlinepolicy.net" > > /^\.*-owner\@lhosting\.onlinepolicy\.net$/ sympabounce: > /^\.*\@hosting\.onlinepolicy\.net$/ sympa: Also, the above regexes look wrong. These patterns match email addresses that start with any number of literal dot characters (".") followed by "-ow...@lhosting.onlinepolicy.net" or "@hosting.onlinepolicy.net" So, it'll only match things like: -ow...@lhosting.onlinepolicy.net .-ow...@lhosting.onlinepolicy.net ..-ow...@lhosting.onlinepolicy.net ...-ow...@lhosting.onlinepolicy.net @hosting.onlinepolicy.net .@hosting.onlinepolicy.net ..@hosting.onlinepolicy.net ...@hosting.onlinepolicy.net The first \ in each pattern needs to be removed so that the .* can match any prefix. cheers, raf