<?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 : Keyword may have not been scanned</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 : Keyword may have not been scanned]]></description>
  <pubDate>Mon, 09 Mar 2026 02:48:59 +0000</pubDate>
  <lastBuildDate>Mon, 12 Mar 2007 10:46:11 +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=5978</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[Keyword may have not been scanned : ...Nice detective work. Thanks...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9856&amp;title=keyword-may-have-not-been-scanned#9856</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=150">sgeorge</a><br /><strong>Subject:</strong> 5978<br /><strong>Posted:</strong> 12 March 2007 at 10:46am<br /><br />...Nice detective work.&nbsp; Thanks you two!<br><br>Stephen<br>]]>
   </description>
   <pubDate>Mon, 12 Mar 2007 10:46:11 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9856&amp;title=keyword-may-have-not-been-scanned#9856</guid>
  </item> 
  <item>
   <title><![CDATA[Keyword may have not been scanned : Hi Robertoturning off &amp;#034;greedy&amp;#034;...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9853&amp;title=keyword-may-have-not-been-scanned#9853</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=55">mikek</a><br /><strong>Subject:</strong> 5978<br /><strong>Posted:</strong> 12 March 2007 at 6:52am<br /><br />Hi Roberto<br><br>turning off "greedy" mode worked!<br><br>personally, i would not change the default behaviour, but maybe update the documentation to state that greedy mode is on by default (as it is with most regex implementations) and mention the -g parameter.<br><br>it would also be nice if an exception caused by a regex would be logged...<br><br>Cheers,<br><br>Mike<br>]]>
   </description>
   <pubDate>Mon, 12 Mar 2007 06:52:22 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9853&amp;title=keyword-may-have-not-been-scanned#9853</guid>
  </item> 
  <item>
   <title><![CDATA[Keyword may have not been scanned : Everyone,It seems that some of...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9847&amp;title=keyword-may-have-not-been-scanned#9847</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> 5978<br /><strong>Posted:</strong> 09 March 2007 at 11:34pm<br /><br />Everyone,<br><br>It seems that some of your RegEx are causing a stack overflow for their complexity, and while SpamFilter will recover from the error, this will cause it to miss the keyword match in that particular string.<br><br>We're currently looking at the "greedy" option in RegEx, that is enabled by default in SpamFilter. In the sample mikek provided, we modified his RegEx to include the modifier:<br>(?-g) at the beginning of the expression. This disables the "greedy" mode in RegEx and successfully detects the string.<br><br>Mike, if you change your string from:<br><br>((?i)(src="cid:(.)*\$(.)*@(.)*"))<br><br>to<br><br>((?-gi)(src="cid:(.)*\$(.)*@(.)*"))<br>or<br>((?-g)(?i)(src="cid:(.)*\$(.)*@(.)*"))<br><br>your expression will work. <br><br>Unfortunately this means you may have to add the (?-g) modifier in all your RegEx. We're looking into what side-effects we'd have if we were to disable greedy mode by default in SpamFilter...<br>]]>
   </description>
   <pubDate>Fri, 09 Mar 2007 23:34:22 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9847&amp;title=keyword-may-have-not-been-scanned#9847</guid>
  </item> 
  <item>
   <title><![CDATA[Keyword may have not been scanned :    Just did some more tests...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9836&amp;title=keyword-may-have-not-been-scanned#9836</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=55">mikek</a><br /><strong>Subject:</strong> 5978<br /><strong>Posted:</strong> 08 March 2007 at 11:06am<br /><br />Just did some more tests and it looks like it has something to do with the regex that is used...<br><br>For me, the error shows with this regex: src="cid:(.)*\$(.)*@(.)*"<br><br>E-Mail is on it's way...<br><br><span style="font-size:10px"><br /><br />Edited by mikek</span>]]>
   </description>
   <pubDate>Thu, 08 Mar 2007 11:06:01 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9836&amp;title=keyword-may-have-not-been-scanned#9836</guid>
  </item> 
  <item>
   <title><![CDATA[Keyword may have not been scanned : Mike,Can you please froward us...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9835&amp;title=keyword-may-have-not-been-scanned#9835</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> 5978<br /><strong>Posted:</strong> 08 March 2007 at 11:05am<br /><br />Mike,<br><br>Can you please froward us the whole email (headers and email body included)?<br>]]>
   </description>
   <pubDate>Thu, 08 Mar 2007 11:05:42 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9835&amp;title=keyword-may-have-not-been-scanned#9835</guid>
  </item> 
  <item>
   <title><![CDATA[Keyword may have not been scanned : I can confirm this, I was always...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9834&amp;title=keyword-may-have-not-been-scanned#9834</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=55">mikek</a><br /><strong>Subject:</strong> 5978<br /><strong>Posted:</strong> 08 March 2007 at 10:54am<br /><br />I can confirm this, I was always wondering why so many spams with inline images came through, although I had the correct "src=cid:..." keywords set.<br><br>Just tested my keyword with a mail that came through. If I paste the whole email, the regex test outputs "not found". If I just paste a few lines around the src=cid, it will output "found", like it should...<br><br>This is a serious issue that has to be looked into!<br><br>Cheers,<br><br>Mike<br>]]>
   </description>
   <pubDate>Thu, 08 Mar 2007 10:54:54 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9834&amp;title=keyword-may-have-not-been-scanned#9834</guid>
  </item> 
  <item>
   <title><![CDATA[Keyword may have not been scanned :  Hey, thanks for testing it man. Edited...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9801&amp;title=keyword-may-have-not-been-scanned#9801</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=150">sgeorge</a><br /><strong>Subject:</strong> 5978<br /><strong>Posted:</strong> 26 February 2007 at 5:11pm<br /><br />Hey, thanks for testing it man.&nbsp;<span style="font-size:10px"><br /><br />Edited by sgeorge</span>]]>
   </description>
   <pubDate>Mon, 26 Feb 2007 17:11:02 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9801&amp;title=keyword-may-have-not-been-scanned#9801</guid>
  </item> 
  <item>
   <title><![CDATA[Keyword may have not been scanned : I tested this on 650 and can confirm...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9796&amp;title=keyword-may-have-not-been-scanned#9796</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=247">ImInAfrica</a><br /><strong>Subject:</strong> 5978<br /><strong>Posted:</strong> 25 February 2007 at 4:20pm<br /><br /><P>I tested this on 650 and can confirm same issue<BR>Looks like over certain number of characters before the regex hit the regex fails.</P><P>Amir</P>]]>
   </description>
   <pubDate>Sun, 25 Feb 2007 16:20:54 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9796&amp;title=keyword-may-have-not-been-scanned#9796</guid>
  </item> 
  <item>
   <title><![CDATA[Keyword may have not been scanned : Just a mini-update...I tried doing...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9791&amp;title=keyword-may-have-not-been-scanned#9791</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=150">sgeorge</a><br /><strong>Subject:</strong> 5978<br /><strong>Posted:</strong> 23 February 2007 at 6:49pm<br /><br />Just a mini-update...<br><br>I tried doing a full uninstall &amp; reinstall of v 3.1.3.615.&nbsp; Oddly, it did not fix the problem.<br><br>Stephen<br>]]>
   </description>
   <pubDate>Fri, 23 Feb 2007 18:49:43 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9791&amp;title=keyword-may-have-not-been-scanned#9791</guid>
  </item> 
  <item>
   <title><![CDATA[Keyword may have not been scanned : Also, I meant to mention something...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9743&amp;title=keyword-may-have-not-been-scanned#9743</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=150">sgeorge</a><br /><strong>Subject:</strong> 5978<br /><strong>Posted:</strong> 16 February 2007 at 10:04am<br /><br />Also, I meant to mention something interesting I noticed in my "RegEx Test" tab in SpamFilter.&nbsp; If I enter the RegEx search string "(?i)\w ?\w ?\w ?\w ?\. ?p ?k" (no quotes),&nbsp; I found the following...<br><br>The pattern was found in this text:<table width="99%"><tr><td><pre class="BBcode">All work and no play makes Jack a dull boy.<br>All work and no play makes Jack a dull boy.<br>All work and no play makes Jack a dull boy.&nbsp; TEST.PK<br>All work and no play makes Jack a dull boy.<br>All work and no play makes Jack a dull boy.</pre></td></tr></table><br><br>But it was <span style="font-style: italic;">not</span> found in this text:<table width="99%"><tr><td><pre class="BBcode">All work and no play makes Jack a dull boy.<br>All work and no play makes Jack a dull boy.<br>All work and no play makes Jack a dull boy.<br>All work and no play makes Jack a dull boy.&nbsp; TEST.PK<br>All work and no play makes Jack a dull boy.<br></pre></td></tr></table><br><br>Thanks for listenin'. :)<br><br>Stephen<br>]]>
   </description>
   <pubDate>Fri, 16 Feb 2007 10:04:56 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=5978&amp;PID=9743&amp;title=keyword-may-have-not-been-scanned#9743</guid>
  </item> 
 </channel>
</rss>