Blocking .ca domains in Blacklist

Tim Ventura

Member
Would you know the regex code to completely block .ca emails (from Canada) in MailWizz? This would be a compliance measure to avoid conflict with their upcoming anti-spam law
 
Nevermind: I got it. The built-in link to the regex tool in the blacklist section was very helpful!

/(.*)@(.*)\.ca/i
 
to completely block .ca emails (from Canada) in MailWizz? This would be a compliance measure to avoid conflict with their upcoming anti-spam law

Thanks for posting the regex code ;)

Are you sure blocking ".ca" is enough? Is that anti-spam law not made to protect any email recipient in Canada (or who is Canadian), even if they use an email address that has no ".ca" ending (e.g. gmail.com, yahoo.com or businesses with .com, etc)?
 
@Tim Ventura - even simpler, block everything that ends in .ca:
PHP:
/\.ca$/i
Are you sure blocking ".ca" is enough? Is that anti-spam law not made to protect any email recipient in Canada (or who is Canadian), even if they use an email address that has no ".ca" ending (e.g. gmail.com, yahoo.com or businesses with .com, etc)?
That would be impossible to know ;)
 
Back
Top