On 11/23/2014 09:15 PM, Olivier Nicole wrote: > > Mark Sapiro <[email protected]> writes: >> >> Your regexp should work although it will actually also accept things >> like '[email protected]'. Also, '@' is not special and doesn't need to >> be escaped. I would use '^root@(.*\.)?bknix\.co\.th$'. > > Thank you, I was not sure to what extend I could use the regexp syntax.
Regexps provided to Mailman are all Python flavor regexps and are usually compiled in IGNORECASE mode. Any legal Python regexp is allowed and will be matched as in Python's re module <https://docs.python.org/2/library/re.html#regular-expression-syntax>. > Sorry, I overlooked the "Message has implicit destination" part. Now it > makes sense. I guess that means you know how to fix it? -- Mark Sapiro <[email protected]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] https://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: https://mail.python.org/mailman/options/mailman-users/archive%40jab.org
