I have been using MW for years. I have all my filters set up and working well on the 6.x version, and I'm trying to get a simple auto delete to function.
Is there a trick I am missing?
Here are the filter settings...
Name = {email address}
Description: Auto delete {email address}
Filter type: Spam
Rules: ...ANY of the following rules:
1) 'To' - Is - Plain text - {email address}
2) 'From' - Is - Plain text - {email address}
Actions: Spam Score -200
Override Delete: Auto-delete this e-mail
I have tried it with just the e-mail address, and the e-mail address in single quotes. No matter what I do, it never shows the filter being applied on the messages with that email address.
Thanks for any help!
Murdock
Can't get a filter to trigger on an e-mail address?
- Sidewinder
- Weary Womble
Post
Re: Can't get a filter to trigger on an e-mail address?
Take a look at the Source Tab in the preview pane or window and make sure you have the address correct a lot of them use <> characters to surround the actual address. You could also leave the information there and change it to a Regex filter but remember to precede the . with a \ to recognize the period.
I am not a Firetrust employee. Just a MW User & Volunteer BETA Tester.
Remember "FREEDOM IS NEVER FREE" U.S.N.
DT W7 64 HP SP1 16GB Ram - LT W7 32 HP SP1 4GB Ram - iPad4 64 GB Ram WiFi/Cellular IOS 9.3 Beta 3
Remember "FREEDOM IS NEVER FREE" U.S.N.
DT W7 64 HP SP1 16GB Ram - LT W7 32 HP SP1 4GB Ram - iPad4 64 GB Ram WiFi/Cellular IOS 9.3 Beta 3
- Sidewinder
- Weary Womble
Post
Re: Can't get a filter to trigger on an e-mail address?
Also remember the filter list uses an order of precedence e.g. the first filter matched stops all further testing.
I am not a Firetrust employee. Just a MW User & Volunteer BETA Tester.
Remember "FREEDOM IS NEVER FREE" U.S.N.
DT W7 64 HP SP1 16GB Ram - LT W7 32 HP SP1 4GB Ram - iPad4 64 GB Ram WiFi/Cellular IOS 9.3 Beta 3
Remember "FREEDOM IS NEVER FREE" U.S.N.
DT W7 64 HP SP1 16GB Ram - LT W7 32 HP SP1 4GB Ram - iPad4 64 GB Ram WiFi/Cellular IOS 9.3 Beta 3
- stan_qaz
- Omniscient Kiwi
- Location: Gilbert, Arizona
Post
Re: Can't get a filter to trigger on an e-mail address?
You might also look at switching from "is" which requires identical entries to "contains" which means your condition can have other stuff around it on the line.
An example: "is" "[email protected]" will not match "me <[email protected]>" but contains would match.
The source view is what filters run against so always copy/paste from there into your filters for best results.
An example: "is" "[email protected]" will not match "me <[email protected]>" but contains would match.
The source view is what filters run against so always copy/paste from there into your filters for best results.
I am not a Firetrust employee just a MW user.
--
First rule of computer consulting: Sell a customer a Linux computer and you'll eat for a day,
sell a customer a Windows computer and you'll eat for a lifetime.
--
First rule of computer consulting: Sell a customer a Linux computer and you'll eat for a day,
sell a customer a Windows computer and you'll eat for a lifetime.
- murdock_notSPAM
- Mystified Moa
Post
Re: Can't get a filter to trigger on an e-mail address?
Hey! Thanks for the help. I would have been back sooner, but I didn't get notified that the topic was updated...I'll have to look in to that.
Anyway...Thanks for the suggestions. I tried contains (see below), but I haven't tried the Reg expressions yet. It seemed like a simple e-mail address filter.
Here is a header.
[edited]
I just tried "contains", and still not luck. The message shows a score of -3, and that the filter was not applied.
Oh, and I did try out the priority thing. I moved it to the top. And...Still no luck. (again)
One more update before I click submit.
I've tried Header contains, message contains, Subject contains (the subject header of this message), and nothing works. I have even tried using the filters to mark the message as good, and it still doesn't get hit by a filter. It says "This email has been classified as Undetermined".
Anyway...Thanks for the suggestions. I tried contains (see below), but I haven't tried the Reg expressions yet. It seemed like a simple e-mail address filter.
Here is a header.
[edited]
I just tried "contains", and still not luck. The message shows a score of -3, and that the filter was not applied.
Oh, and I did try out the priority thing. I moved it to the top. And...Still no luck. (again)

One more update before I click submit.
I've tried Header contains, message contains, Subject contains (the subject header of this message), and nothing works. I have even tried using the filters to mark the message as good, and it still doesn't get hit by a filter. It says "This email has been classified as Undetermined".
Last edited by murdock_notSPAM on Sun Aug 15, 2010 2:44 am, edited 2 times in total.
- anniebrion
- βeta Tester
- Contact:
- Location: Milkyway, Sol, Earth, UK, London
Post
Re: Can't get a filter to trigger on an e-mail address?
For email addresses I use this regex (contains):Put (?-i) at the beginning if you want to check an address with uppercase characters.
Code: Select all
(^|<|\x20)me@domain\.com\b
Annie.......... PC details
Mailwasher Pro βeta [v 7.12.39]
Mailwasher Pro βeta [v 7.12.39]
- murdock_notSPAM
- Mystified Moa
Post
Re: Can't get a filter to trigger on an e-mail address?
Thanks for the suggestion. I used : (^?-i)(^|<|\x20)pezz@[edited]\.com\b
And still no luck. The filter is at the top, is there any reason why it wouldn't be active. The box is checked, and I have other filters that do work. I even deleted the filter and recreated it. Nothing!
And still no luck. The filter is at the top, is there any reason why it wouldn't be active. The box is checked, and I have other filters that do work. I even deleted the filter and recreated it. Nothing!
Last edited by murdock_notSPAM on Sun Aug 15, 2010 2:43 am, edited 1 time in total.
- anniebrion
- βeta Tester
- Contact:
- Location: Milkyway, Sol, Earth, UK, London
Post
Re: Can't get a filter to trigger on an e-mail address?
Did you change to REGEX from "Plain Text"?
Also for the email you've given, you don't need the (^?-i) Also this is not valid as the ^ is wrong in this context.
Just use:
Also for the email you've given, you don't need the (^?-i) Also this is not valid as the ^ is wrong in this context.
Just use:
Code: Select all
(^|<|\x20)pezz@njlanparty\.com\b
Annie.......... PC details
Mailwasher Pro βeta [v 7.12.39]
Mailwasher Pro βeta [v 7.12.39]
- murdock_notSPAM
- Mystified Moa
Post
Re: Can't get a filter to trigger on an e-mail address?
Hi eveyone...Thanks for the help. I left out one piece of information. The account is forwarding the mail to pezz@[edited].com to another e-mail address. When it arrives, it still shows as 'To: pezz@[edited].com' as shown in the header info up top. I think the fact that it is getting forwarded is causing MW to be confused. It used to work as is, up until last week, on MW 6x (and still does). So...here's the plan.
I'm giving up.
I removed the forwarding and added the pezz account as a direct mail account in MW. I figure that would eliminate any issue related to the forwarding...and guess what. It didn't. The filter still isn't catching the mail. Looking at the evaluation, it only shows the email content analyzed, giving the test message (not the one above) a score of 81.
I think I am going to open a support ticket, if there is such a thing...If there isn't, anyone want a shot at it? PM me for the account details and I'll let you take a look.
I'm giving up.
I removed the forwarding and added the pezz account as a direct mail account in MW. I figure that would eliminate any issue related to the forwarding...and guess what. It didn't. The filter still isn't catching the mail. Looking at the evaluation, it only shows the email content analyzed, giving the test message (not the one above) a score of 81.
I think I am going to open a support ticket, if there is such a thing...If there isn't, anyone want a shot at it? PM me for the account details and I'll let you take a look.
-
ru
Post
Re: Can't get a filter to trigger on an e-mail address?
You can email me all the details to [email protected] (by the way I edited the email address out of the post above). I'll try and get to the email as quickly as I can, though I'm pretty backlogged.
I haven't forgotten about your username either, I just cannot edit the record right now as it runs through the same spam filter, so we need some tweaking to be done.
I haven't forgotten about your username either, I just cannot edit the record right now as it runs through the same spam filter, so we need some tweaking to be done.
-
ru
Post
Re: Can't get a filter to trigger on an e-mail address?
I came across the support ticket you'd posted.
If I use the one Annie posted (following) it works, if To: Contains Regex..
If I use the one Annie posted (following) it works, if To: Contains Regex..
Code: Select all
(^|<|\x20)pezz@njlanparty\.com\b
- murdock_notSPAM
- Mystified Moa
Post
Re: Can't get a filter to trigger on an e-mail address?
Yeaaaaaaaa!
That worked...I had an extra ) in there.
Thanks for deleting the e-mail addresses. I removed them at first, but then decided I wanted to be as clear as possible, at least until the problem was resolved. I'm going to go and remove the header box also...
Any idea why it doesn't work as just plan text?
Thanks for all your help! I love the program and I push it on everyone I know!
That worked...I had an extra ) in there.
Thanks for deleting the e-mail addresses. I removed them at first, but then decided I wanted to be as clear as possible, at least until the problem was resolved. I'm going to go and remove the header box also...
Any idea why it doesn't work as just plan text?
Thanks for all your help! I love the program and I push it on everyone I know!
-
ru
Post
e.g. Contains Plain Text
[email protected]
Re: Can't get a filter to trigger on an e-mail address?
You need to be sure if Plain Text that the filter reads "Contains" rather than "Is". When I tested, that also worked for me when filtering for the straight email address.Any idea why it doesn't work as just plan text?
e.g. Contains Plain Text
[email protected]
- murdock_notSPAM
- Mystified Moa
Post
Re: Can't get a filter to trigger on an e-mail address?
I figured it out!!! I found a BUG.
Whoa! The WHOLE reason it wasn't working was because I used an '@' in the filter name.
When its not there...it works. When I put it back, it stopped working. Give it a try...Let me know if that's just me.
Working name : {email}
Non working Name: {email}@
This was driving me nuts! I knew it should have worked...
Whoa! The WHOLE reason it wasn't working was because I used an '@' in the filter name.
When its not there...it works. When I put it back, it stopped working. Give it a try...Let me know if that's just me.
Working name : {email}
Non working Name: {email}@
This was driving me nuts! I knew it should have worked...
Last edited by murdock_notSPAM on Sun Aug 15, 2010 6:18 am, edited 1 time in total.
- stan_qaz
- Omniscient Kiwi
- Location: Gilbert, Arizona
Post
Re: Can't get a filter to trigger on an e-mail address?
Good grief... You know how frustrating it is to beta test something for many months, beating on it in every way possible and still have something like that slip by both the beta bunch and the internal Firetrust testers?
Great find!
Great find!
I am not a Firetrust employee just a MW user.
--
First rule of computer consulting: Sell a customer a Linux computer and you'll eat for a day,
sell a customer a Windows computer and you'll eat for a lifetime.
--
First rule of computer consulting: Sell a customer a Linux computer and you'll eat for a day,
sell a customer a Windows computer and you'll eat for a lifetime.