Re: [Mailman-Users] Regexp in accept_these_nonmembers

2014-11-24 Thread Mark Sapiro
On 11/23/2014 09:15 PM, Olivier Nicole wrote: > > Mark Sapiro writes: >> >> Your regexp should work although it will actually also accept things >> like 'r...@xbknix.co.th'. Also, '@' is not special and doesn't need to >> be escaped. I would use '^root@(.*\.)?bknix\.co\.th$'. > > Thank you, I wa

Re: [Mailman-Users] Regexp in accept_these_nonmembers

2014-11-23 Thread Olivier Nicole
Mark, Mark Sapiro writes: > On 11/20/2014 11:47 PM, Olivier Nicole wrote: >> Hi, >> >> I have a problem with a regular expression in accept_these_nonmembers >> filter: >> >> I have the regexp: >> >> ^root\@.*bknix\.co\.th$ >> >> That should read: accept any message sent by r...@anything.bkni

Re: [Mailman-Users] Regexp in accept_these_nonmembers

2014-11-21 Thread Mark Sapiro
On 11/20/2014 11:47 PM, Olivier Nicole wrote: > Hi, > > I have a problem with a regular expression in accept_these_nonmembers > filter: > > I have the regexp: > > ^root\@.*bknix\.co\.th$ > > That should read: accept any message sent by r...@anything.bknix.co.th > But a message sent by r...@web.

[Mailman-Users] Regexp in accept_these_nonmembers

2014-11-20 Thread Olivier Nicole
Hi, I have a problem with a regular expression in accept_these_nonmembers filter: I have the regexp: ^root\@.*bknix\.co\.th$ That should read: accept any message sent by r...@anything.bknix.co.th But a message sent by r...@web.bknix.co.th is not being accepted automatically. I need some help t