Greetings,
There seems to be an issue with the order in which the ignore, white, and black lists are used. For example, I want this to pass through to me -
[email protected]
And in my white list -
from .+\@.+\.specificdomain\.com
The intent is to pass everything that matches through to me. However the ignore list gets in the way because apparently it's evaluated first. IMHO that is wrong. Here's the ignore list entry that's catching it -
from .+\@.+\..+\.
The intent there is to catch anything (except for what's white listed). I believe that will match things like -
[email protected].*
So if the list order was -
white
ignore
black
Then I would have received that email. The alternative is that if something is caught in the ignore list that then subsequently the white list would be checked.
If there is a way I can correct this please let me know. I've been frustrated by this issue for quite some time.
Thanks in advance!
There seems to be an issue with the order in which the ignore, white, and black lists are used. For example, I want this to pass through to me -
[email protected]
And in my white list -
from .+\@.+\.specificdomain\.com
The intent is to pass everything that matches through to me. However the ignore list gets in the way because apparently it's evaluated first. IMHO that is wrong. Here's the ignore list entry that's catching it -
from .+\@.+\..+\.
The intent there is to catch anything (except for what's white listed). I believe that will match things like -
[email protected].*
So if the list order was -
white
ignore
black
Then I would have received that email. The alternative is that if something is caught in the ignore list that then subsequently the white list would be checked.
If there is a way I can correct this please let me know. I've been frustrated by this issue for quite some time.
Thanks in advance!