![](https://secure.gravatar.com/avatar/4f791cc0d71e808687b1df6c86dcf708.jpg?s=120&d=mm&r=g)
Hello, I want to block subscribe for users from yahoo, what regexps I need to write there http://i10.pixs.ru/storage/8/9/9/SnimokJPG_5554142_16252899.jpg ? Thank you.
![](https://secure.gravatar.com/avatar/56f108518d7ee2544412cc80978e3182.jpg?s=120&d=mm&r=g)
On 02/28/2015 05:24 AM, EyeLand wrote:
Your screen shot is of Privacy options... -> Recipient filters. This is not what you want. You want Privacy options... -> Subscription rules ban_list (List of addresses which are banned from membership in this mailing list.), and what you put there is either
^.*@yahoo\.com$
If you just want to ban the yahoo.com domain, or
^.*[.@]yahoo\.com$
if you want to ban subdomains as well. See <https://docs.python.org/2/library/re.html#regular-expression-syntax>
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
![](https://secure.gravatar.com/avatar/56f108518d7ee2544412cc80978e3182.jpg?s=120&d=mm&r=g)
On 02/28/2015 05:24 AM, EyeLand wrote:
Your screen shot is of Privacy options... -> Recipient filters. This is not what you want. You want Privacy options... -> Subscription rules ban_list (List of addresses which are banned from membership in this mailing list.), and what you put there is either
^.*@yahoo\.com$
If you just want to ban the yahoo.com domain, or
^.*[.@]yahoo\.com$
if you want to ban subdomains as well. See <https://docs.python.org/2/library/re.html#regular-expression-syntax>
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
participants (2)
-
EyeLand
-
Mark Sapiro