<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>Spam Filter ISP Forums : filtering from addresses with : in them</title>
  <link>https://www.logsat.com/spamfilter/forums/</link>
  <description><![CDATA[This is an XML content feed of; Spam Filter ISP Forums : Spam Filter ISP Support : filtering from addresses with : in them]]></description>
  <pubDate>Wed, 13 May 2026 19:01:58 +0000</pubDate>
  <lastBuildDate>Thu, 05 Feb 2015 17:08:16 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 11.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.logsat.com/spamfilter/forums/RSS_post_feed.asp?TID=7104</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Spam Filter ISP Forums]]></title>
   <url>https://www.logsat.com/spamfilter/forums/forum_images/web_wiz_forums.png</url>
   <link>https://www.logsat.com/spamfilter/forums/</link>
  </image>
  <item>
   <title><![CDATA[filtering from addresses with : in them : E X C E L L E N T idea, thumbs...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14706&amp;title=filtering-from-addresses-with-in-them#14706</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=8">LogSat</a><br /><strong>Subject:</strong> 7104<br /><strong>Posted:</strong> 05 February 2015 at 5:08pm<br /><br />E X C E L L E N T &nbsp;idea, thumbs up for coming up with it - a great workaround!]]>
   </description>
   <pubDate>Thu, 05 Feb 2015 17:08:16 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14706&amp;title=filtering-from-addresses-with-in-them#14706</guid>
  </item> 
  <item>
   <title><![CDATA[filtering from addresses with : in them : AH! I did it. In real, not in...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14705&amp;title=filtering-from-addresses-with-in-them#14705</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=104">yapadu</a><br /><strong>Subject:</strong> 7104<br /><strong>Posted:</strong> 05 February 2015 at 1:38am<br /><br />AH!&nbsp; I did it.&nbsp; In real, not in testing I managed to get it working.&nbsp; Here is what I ended up with.<br><br>from,((?im-s)^from:.*&lt;.*\.rocks&gt;),((?im-s)^to:.*&lt;?.*\.com&gt;?)<br><br>So the first from is just a placeholder, basically every message should have that.<br><br>Then I have two different regex that are separated with a comma.&nbsp; The good news is that works!<br>]]>
   </description>
   <pubDate>Thu, 05 Feb 2015 01:38:06 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14705&amp;title=filtering-from-addresses-with-in-them#14705</guid>
  </item> 
  <item>
   <title><![CDATA[filtering from addresses with : in them : I have altered my regex, not like...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14704&amp;title=filtering-from-addresses-with-in-them#14704</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=104">yapadu</a><br /><strong>Subject:</strong> 7104<br /><strong>Posted:</strong> 05 February 2015 at 12:29am<br /><br />I have altered my regex, not like your examples but a technique I used previously with spamfitler to mix regular keywords with regex.<br><br>I will report back if it works.<br>]]>
   </description>
   <pubDate>Thu, 05 Feb 2015 00:29:09 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14704&amp;title=filtering-from-addresses-with-in-them#14704</guid>
  </item> 
  <item>
   <title><![CDATA[filtering from addresses with : in them : I&amp;#039;m at bit of a loss here....]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14703&amp;title=filtering-from-addresses-with-in-them#14703</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=8">LogSat</a><br /><strong>Subject:</strong> 7104<br /><strong>Posted:</strong> 04 February 2015 at 10:02pm<br /><br />I'm at bit of a loss here. One part of the question is explainable. When SpamFilter see a "(" as the first character in a line containing keywords, it expects *everything* on that line to be a RegEx. So the comma "," you used trying to specify two separate RegEx expressions on the same line will not work as you intended. It won't tell SpamFilter to separate the two RegEx expressions, rather it is interpreted as part of the RegEx.<div><br></div><div>So you would need to use a single RegEx expression to perform your search. Assuming the "From" header is specified before the "To" header in an email, the RegEx to use would thus be:</div><div><div><span style="line-height: 1.4;">((?ims)^from:.*&lt;.*\.rocks&gt;.*^to:.*&lt;?.*\.com&gt;)</span></div></div><div><br></div><div>and to cover the cases where the "From" header is specified after the "To" header, you would need to invert them:</div><div><span style="line-height: 1.4;">((?ims)^to:.*&lt;?.*\.coz&gt;.*^from:.*&lt;.*\.rockz&gt;)</span></div><div><span style="line-height: 1.4;"><br></span></div><div><span style="line-height: 1.4;">The problem I have is that neither of those two keywords are working correctly. In my RegEx tests the first keyword above should stopped an email with these headers:</span></div><div><span style="line-height: 1.4;"><br></span></div><div><div><font color="#666666">Message-ID: &lt;472a92d26bb9f7517d517a4c882c2291@sistema.optdatacrm.click&gt;</font></div><div><font color="#666666">From: "Claro Empresas" &lt;emm@optdatacrm.rocks&gt;</font></div><div><font color="#666666">To: "LogSat" &lt;test@logsat.com&gt;</font></div><div><font color="#666666">Reply-To: emm@optdatacrm.click</font></div><div><font color="#666666">MIME-Version: 1.0</font></div></div><div><br></div><div>...but when using that keyword within SpamFilter it is not triggering it. I can't find anything obviously wrong with the implementation of RegEx in SpamFilter, yet it's not catching it.</div><div><br></div><div>I'll try looking into this again during the weekend.</div>]]>
   </description>
   <pubDate>Wed, 04 Feb 2015 22:02:29 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14703&amp;title=filtering-from-addresses-with-in-them#14703</guid>
  </item> 
  <item>
   <title><![CDATA[filtering from addresses with : in them : We have been able to get this...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14702&amp;title=filtering-from-addresses-with-in-them#14702</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=104">yapadu</a><br /><strong>Subject:</strong> 7104<br /><strong>Posted:</strong> 04 February 2015 at 7:47pm<br /><br />We have been able to get this format to work:<br><br>(?im-s)^from:.*&lt;.*\.rocks&gt;<br><br>It is designed to find a sender address in the from header that ends with .rocks - that works.<br><br>We then try taking it a step further, say to any recipient at a .com address so we came up with this.<br><br>((?im-s)^from:.*&lt;.*\.rocks&gt;),((?im-s)^to:.*&lt;?.*\.com&gt;?)<br><br>Individually these two regex would trigger, but we have not been able to see the combo of using both trigger.&nbsp; Is the problem related to the bug regarding to the , or should we be able to do multiple regex separated with a comma?<br><br>]]>
   </description>
   <pubDate>Wed, 04 Feb 2015 19:47:58 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14702&amp;title=filtering-from-addresses-with-in-them#14702</guid>
  </item> 
  <item>
   <title><![CDATA[filtering from addresses with : in them : Ok, I think I&amp;#039;ve got my problem...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14701&amp;title=filtering-from-addresses-with-in-them#14701</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=104">yapadu</a><br /><strong>Subject:</strong> 7104<br /><strong>Posted:</strong> 24 January 2015 at 11:20pm<br /><br />Ok, I <i>think</i> I've got my problem sorted out.&nbsp; I ran these two:<br><br>((?im)^from:.*&lt;.*\.rocks&gt;)<br>((?im)^from:.*&lt;.*\.click&gt;)<br><br>I have been surprised how little they have picked up (your two tests and a couple others).&nbsp; The 'others' it picked up were not what I wanted.&nbsp; It triggered on an email with a from: in the headers and an email ending with .rocks much further down (it was a bounce message).<br><br>I want the from to be at the start of the line (which I get with the <b>m</b> option) but I do not want the scanning to span more than one line, so the entire match must be on the single line to prevent false positives.&nbsp; Playing around I found I need to disable the singleline option as well.&nbsp; So I currently have:<br><br>(?im-s)^from:.*&lt;.*\.rocks&gt;<br>(?im-s)^from:.*&lt;.*\.click&gt;<br><br>I'm going to run those and see if I capture what I expect.<br><br>]]>
   </description>
   <pubDate>Sat, 24 Jan 2015 23:20:33 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14701&amp;title=filtering-from-addresses-with-in-them#14701</guid>
  </item> 
  <item>
   <title><![CDATA[filtering from addresses with : in them : I think it is this:;Setting DoNotSendNDROnQuarantine...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14700&amp;title=filtering-from-addresses-with-in-them#14700</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=104">yapadu</a><br /><strong>Subject:</strong> 7104<br /><strong>Posted:</strong> 24 January 2015 at 10:04am<br /><br />I think it is this:<br><br>;Setting DoNotSendNDROnQuarantine to 1 will prevent generation of NDR when email are quarantined by causing SpamFilter *not* to send an error code when quarantining emails<br>DoNotSendNDROnQuarantine=1<br>]]>
   </description>
   <pubDate>Sat, 24 Jan 2015 10:04:29 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14700&amp;title=filtering-from-addresses-with-in-them#14700</guid>
  </item> 
  <item>
   <title><![CDATA[filtering from addresses with : in them : No, or it would not have been...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14699&amp;title=filtering-from-addresses-with-in-them#14699</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=104">yapadu</a><br /><strong>Subject:</strong> 7104<br /><strong>Posted:</strong> 24 January 2015 at 10:03am<br /><br />No, or it would not have been in my quarantine &nbsp;<img src="https://www.logsat.com/spamfilter/forums/smileys/smiley2.gif" border="0" alt="Wink" title="Wink" /><br><br>However, I do think we have some option enabled where if we 'accept' the message but the destination is quarantine then we do not send back a rejection notice...&nbsp; I think, that was some option in the .ini file but I have no idea what it was.<br><br>When we report the message as rejected, the number of calls/email messages we get for support just go through the roof.&nbsp; <br>]]>
   </description>
   <pubDate>Sat, 24 Jan 2015 10:03:47 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14699&amp;title=filtering-from-addresses-with-in-them#14699</guid>
  </item> 
  <item>
   <title><![CDATA[filtering from addresses with : in them : I had received the 250 OK after...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14698&amp;title=filtering-from-addresses-with-in-them#14698</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=8">LogSat</a><br /><strong>Subject:</strong> 7104<br /><strong>Posted:</strong> 24 January 2015 at 9:59am<br /><br />I had received the 250 OK after sending the email, so it looked as they were delivered. Do you have the option to "send to null" (::NULL suffix) for the keyword?&nbsp;]]>
   </description>
   <pubDate>Sat, 24 Jan 2015 09:59:22 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14698&amp;title=filtering-from-addresses-with-in-them#14698</guid>
  </item> 
  <item>
   <title><![CDATA[filtering from addresses with : in them : Actually, I just checked my quarantine...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14697&amp;title=filtering-from-addresses-with-in-them#14697</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=104">yapadu</a><br /><strong>Subject:</strong> 7104<br /><strong>Posted:</strong> 24 January 2015 at 9:42am<br /><br />Actually, I just checked my quarantine - and there are two messages there from you!&nbsp; Triggered by a .click rule, this one: <br><br>Found Keywords: &#091;((?im)^from:.*&lt;.*\.click&gt;)&#093;<br>]]>
   </description>
   <pubDate>Sat, 24 Jan 2015 09:42:15 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=7104&amp;PID=14697&amp;title=filtering-from-addresses-with-in-them#14697</guid>
  </item> 
 </channel>
</rss>