<?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 : Emails Quarantined for Nonexistent users</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 : Emails Quarantined for Nonexistent users]]></description>
  <pubDate>Sat, 14 Mar 2026 16:06:33 +0000</pubDate>
  <lastBuildDate>Fri, 28 Mar 2008 20:57:26 +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=6449</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[Emails Quarantined for Nonexistent users :  Oh well.. since I&amp;#039;ve already...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11945&amp;title=emails-quarantined-for-nonexistent-users#11945</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> 6449<br /><strong>Posted:</strong> 28 March 2008 at 8:57pm<br /><br />Oh well.. since I've already started, and as it can be used by others who do have a file-based list, here it is anyways :-)<br><br><br>CREATE TABLE test(<br>email varchar(320)<br>);<br><br>LOAD DATA INFILE "/tmp/WL_AuthorizedTOEmails.txt"<br>INTO TABLE test<br>LINES TERMINATED BY '\r\n';<br><br>UPDATE tblquarantine&nbsp; LEFT JOIN test ON tblquarantine.emailto = test.email<br>SET expire=1 WHERE ISNULL(test.email)<br><br>DROP TABLE test;<br><br><br><br>The above will mark the emails for deletion so that SpamFilter can then delete them during regular cleanup. If you want to delete them right away, this one will do the job:<br><br>CREATE TABLE test(<br>email varchar(320)<br>);<br><br>LOAD DATA INFILE "/tmp/WL_AuthorizedTOEmails.txt"<br>INTO TABLE test<br>LINES TERMINATED BY '\r\n';<br><br>DELETE tblquarantine FROM tblquarantine LEFT JOIN test ON tblquarantine.emailto = test.email<br>WHERE ISNULL(test.email);<br><br>DELETE tblmsgs FROM tblmsgs LEFT JOIN tblquarantine ON tblmsgs.msgid = tblquarantine.msgid<br>WHERE ISNULL(tblquarantine.msgid);<br><br>DROP TABLE test;<br><br><br>]]>
   </description>
   <pubDate>Fri, 28 Mar 2008 20:57:26 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11945&amp;title=emails-quarantined-for-nonexistent-users#11945</guid>
  </item> 
  <item>
   <title><![CDATA[Emails Quarantined for Nonexistent users : Don&amp;#039;t worry about the script....]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11943&amp;title=emails-quarantined-for-nonexistent-users#11943</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=221">jerbo128</a><br /><strong>Subject:</strong> 6449<br /><strong>Posted:</strong> 28 March 2008 at 5:51pm<br /><br />Don't worry about the script.&nbsp; The users are in the DB.&nbsp; And I have a query to weed out the bad emails.&nbsp; <DIV>&nbsp;</DIV><DIV>My point is that when they come in at a rate of 30,000 per day, I just see it as a lot of unneeded SQL traffic. Both inbound and then deleting.</DIV><DIV>&nbsp;</DIV><DIV>As for the reliability of my blacklist, it's pretty good.&nbsp; But when you have that many entries, it only takes 1 bed entry to get a chewing from the customer.&nbsp; So I don't know if I am ready to flip the flag for "do not quarantine"</DIV><DIV>&nbsp;</DIV><DIV>Jeremy</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Fri, 28 Mar 2008 17:51:58 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11943&amp;title=emails-quarantined-for-nonexistent-users#11943</guid>
  </item> 
  <item>
   <title><![CDATA[Emails Quarantined for Nonexistent users : That depends on the reliability...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11942&amp;title=emails-quarantined-for-nonexistent-users#11942</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> 6449<br /><strong>Posted:</strong> 28 March 2008 at 5:45pm<br /><br />That depends on the reliability of your IP blacklist, which is causing the bulk of these blocks. If you are note receiving false positives from it, you could enable the option to "do not quarantine" emails from this filter.<br><br>Also, if you have the list of allowed users in a database, it's rather simple to create a query that will weed out the unwanted recipients. If the list is only in a text file, there's a few extra steps involved to bulk import it in a temp table in MySQL (don't know yet if MySQL can perform a query directly against a text file, as MS SQL can do). I'll take a stab at it tonite to see if I can help you here, but please email me to stop me if the data is already in the DB!<br>]]>
   </description>
   <pubDate>Fri, 28 Mar 2008 17:45:50 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11942&amp;title=emails-quarantined-for-nonexistent-users#11942</guid>
  </item> 
  <item>
   <title><![CDATA[Emails Quarantined for Nonexistent users : Do you have any suggestions for...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11936&amp;title=emails-quarantined-for-nonexistent-users#11936</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=221">jerbo128</a><br /><strong>Subject:</strong> 6449<br /><strong>Posted:</strong> 27 March 2008 at 11:35pm<br /><br /><P>Do you have any suggestions for dealing with such a huge amount of crap mail?</P><DIV>My SQL server stays much happier with 200K less emails in it's tummy.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 27 Mar 2008 23:35:52 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11936&amp;title=emails-quarantined-for-nonexistent-users#11936</guid>
  </item> 
  <item>
   <title><![CDATA[Emails Quarantined for Nonexistent users : Geez, I can&amp;#039;t even read my...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11935&amp;title=emails-quarantined-for-nonexistent-users#11935</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> 6449<br /><strong>Posted:</strong> 27 March 2008 at 10:49pm<br /><br />Geez, I can't even read my own warning. And think that I had even super bolded the notice "<span style="color: rgb255, 0, 0; font-weight: bold;"><font size="4">Please always check the latest post in this thread</font></span>" on that thread.<br><br>You're right, I did not see the updated order. What you posted is correct, the 4 filters (not 3) that cause emails to be quarantined before the "Authorized TO" list is hit are:<br><ol><li><font color="red" face="Verdana" size="2"><span style="font-size: 10pt; color: red; font-family: Verdana;">Local IP Blacklist</span></font><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;"> </span></font></li><li><font color="red" face="Verdana" size="2"><span style="font-size: 10pt; color: red; font-family: Verdana;">Local Domain Blacklist</span></font><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;"> </span></font></li><li><font color="red" face="Verdana" size="2"><span style="font-size: 10pt; color: red; font-family: Verdana;">Local Emails Blacklist</span></font><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;"> </span></font></li><li><font color="red" face="Verdana" size="2"><span style="font-size: 10pt; color: red; font-family: Verdana;">Local Emails TO Blacklist</span></font></li></ol><br>I did not mention the others that appear first (allowed domains, and the "forgotten" blacklist cache and greylist) because these ones reject emails immediately, without allowing them to be quarantined, so do not apply in ths discussion.<br>c<br>]]>
   </description>
   <pubDate>Thu, 27 Mar 2008 22:49:02 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11935&amp;title=emails-quarantined-for-nonexistent-users#11935</guid>
  </item> 
  <item>
   <title><![CDATA[Emails Quarantined for Nonexistent users :   LogSat wrote:jeremy,The only...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11933&amp;title=emails-quarantined-for-nonexistent-users#11933</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=221">jerbo128</a><br /><strong>Subject:</strong> 6449<br /><strong>Posted:</strong> 27 March 2008 at 7:16pm<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by LogSat" alt="Originally posted by LogSat" style="vertical-align: text-bottom;" /> <strong>LogSat wrote:</strong><br /><br />jeremy,<BR><BR>The only three filters that are before the "Authorized TO" list are:<BR><BR><OL><LI style="COLOR: red"><FONT face="Times New Roman" color=red size=3><SPAN style="FONT-SIZE: 12pt">Local Domain Blacklist<O:P></O:P></SPAN></FONT> <LI style="COLOR: red"><FONT face="Times New Roman" color=red size=3><SPAN style="FONT-SIZE: 12pt">Local Emails Blacklist<O:P></O:P></SPAN></FONT> <LI style="COLOR: red"><FONT face="Times New Roman" color=red size=3><SPAN style="FONT-SIZE: 12pt">Local Emails TO Blacklist</SPAN></FONT></LI></OL></td></tr></table> <DIV>Local domain blacklist =23,000 rows</DIV><DIV>Emails to/from = less than 100 each</DIV><DIV>Local IP blacklist = 250,000 rows (does not count for subnets)</DIV><DIV>&nbsp;</DIV><DIV>Most of these emails that I am seeing to unAutorized addresses are quarantined with ID 12 - Local IP Blacklist.&nbsp; I see a few with reason 7 and 9.</DIV><DIV>&nbsp;</DIV><DIV>Yes,&nbsp;you are&nbsp;correct - I am getting over 200,000 per week to these unauthorized addresses.&nbsp; Looking at the IP's and subjects&nbsp;of the connections - they are scattered everywhere.</DIV><DIV>&nbsp;</DIV><DIV>You&nbsp;said above that&nbsp; local IP blacklist is AFTER the Authorized User Check, then why am I seeing all of these?&nbsp;&nbsp; For clarification -This post lists a different filter order.&nbsp; &nbsp;<a href="http://www.logsat.com/SpamFilter/Forums/forum_posts.asp?TID=5171" target="_blank">http://www.logsat.com/SpamFilter/Forums/forum_posts.asp?TID=5171</A>&nbsp;</DIV><DIV>Which is right?</DIV><OL><LI><FONT face=Verdana color=red size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana">Cached IP blacklist</SPAN></FONT> <LI><FONT face=Verdana color=red size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana">Greylist<BR></SPAN></FONT><LI><FONT face=Verdana color=green size=2><SPAN style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: Verdana">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Whitelisted IP</SPAN></FONT><FONT face=Verdana size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"> </SPAN></FONT><LI><FONT face=Verdana color=green size=2><SPAN style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: Verdana">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Whitelisted Email Address To</SPAN></FONT><FONT face=Verdana size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"> </SPAN></FONT><LI><FONT face=Verdana color=green size=2><SPAN style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: Verdana">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Whitelisted EMail Address From</SPAN></FONT><FONT face=Verdana size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"> </SPAN></FONT><LI><FONT face=Verdana color=green size=2><SPAN style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: Verdana">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Whitelisted Email From Domain</SPAN></FONT><FONT face=Verdana size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"> </SPAN></FONT><LI><FONT face=Verdana color=green size=2><SPAN style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: Verdana">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Whitelisted Auto White List Force Delivery</SPAN></FONT><FONT face=Verdana size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"> </SPAN></FONT><LI><FONT face=Verdana color=red size=2><SPAN style="FONT-SIZE: 10pt; COLOR: red; FONT-FAMILY: Verdana">Allowed Domains</SPAN></FONT><FONT face=Verdana size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"> </SPAN></FONT><LI><FONT face=Verdana color=red size=2><SPAN style="FONT-SIZE: 10pt; COLOR: red; FONT-FAMILY: Verdana">Local IP Blacklist</SPAN></FONT><FONT face=Verdana size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"> </SPAN></FONT><LI><FONT face=Verdana color=red size=2><SPAN style="FONT-SIZE: 10pt; COLOR: red; FONT-FAMILY: Verdana">Local Domain Blacklist</SPAN></FONT><FONT face=Verdana size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"> </SPAN></FONT><LI><FONT face=Verdana color=red size=2><SPAN style="FONT-SIZE: 10pt; COLOR: red; FONT-FAMILY: Verdana">Local Emails Blacklist</SPAN></FONT><FONT face=Verdana size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"> </SPAN></FONT><LI><FONT face=Verdana color=red size=2><SPAN style="FONT-SIZE: 10pt; COLOR: red; FONT-FAMILY: Verdana">Local Emails TO Blacklist</SPAN></FONT><FONT face=Verdana size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"> </SPAN></FONT><LI><FONT face=Verdana color=red size=2><SPAN style="FONT-SIZE: 10pt; COLOR: red; FONT-FAMILY: Verdana">Not in Authorized TO Emails</SPAN></FONT><FONT face=Verdana size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"> </SPAN></FONT></LI></OL><P><FONT face=Verdana size=2><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana">Jeremy</SPAN></FONT></P><span style="font-size:10px"><br /><br />Edited by jerbo128 - 27 March 2008 at 7:20pm</span>]]>
   </description>
   <pubDate>Thu, 27 Mar 2008 19:16:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11933&amp;title=emails-quarantined-for-nonexistent-users#11933</guid>
  </item> 
  <item>
   <title><![CDATA[Emails Quarantined for Nonexistent users :  jeremy,The only three filters...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11932&amp;title=emails-quarantined-for-nonexistent-users#11932</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> 6449<br /><strong>Posted:</strong> 27 March 2008 at 5:47pm<br /><br />jeremy,<br><br>The only three filters that are before the "Authorized TO" list are:<br><br><ol><li style="color: red;"><font color="red" face="Times New Roman" size="3"><span style="font-size: 12pt;">Local     Domain Blacklist<o:p></o:p></span></font></li><li style="color: red;"><font color="red" face="Times New Roman" size="3"><span style="font-size: 12pt;">Local     Emails Blacklist<o:p></o:p></span></font></li><li style="color: red;"><font color="red" face="Times New Roman" size="3"><span style="font-size: 12pt;">Local     Emails TO Blacklist</span></font></li></ol><br><br>emails blocked by these are usually very, very small in numbers, if any at all. Are you actually receiving 200,000 emails each week blocked by these 3? If you have a huge blacklist of blacklisted sender's domains and emails, that may explain this large number, but if not, you may be targeted by very specific spammers/attackers.<br><br>In "normal" installations, the 3 lists above are often much smaller than the "Authorized TO" list, which is why SpamFilter examines the smaller ones first to try saving some resources. An option may be to change the order of the filters by moving up the "Authorized TO". We'll be monitoring the thread for feedback on this.<br>]]>
   </description>
   <pubDate>Thu, 27 Mar 2008 17:47:24 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11932&amp;title=emails-quarantined-for-nonexistent-users#11932</guid>
  </item> 
  <item>
   <title><![CDATA[Emails Quarantined for Nonexistent users : Roberto,  I understand, butin...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11931&amp;title=emails-quarantined-for-nonexistent-users#11931</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=221">jerbo128</a><br /><strong>Subject:</strong> 6449<br /><strong>Posted:</strong> 27 March 2008 at 4:44pm<br /><br />Roberto,<DIV>&nbsp;</DIV><DIV>I understand, but&nbsp;in my opinion, this could be a huge isse.&nbsp; With my retention of 7 days - that is 200,000 messages.&nbsp; To me, that is a waste of resources also.</DIV><DIV>&nbsp;</DIV><DIV>Maybe we need to weigh it out -to see&nbsp;which has a higher "cost"</DIV><DIV>&nbsp;</DIV><DIV>Anyone else have thoughts on this?&nbsp; How about some of you bigger guys who get a lot of mail, have you ever looked at the number of orphaned messages?</DIV>]]>
   </description>
   <pubDate>Thu, 27 Mar 2008 16:44:06 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11931&amp;title=emails-quarantined-for-nonexistent-users#11931</guid>
  </item> 
  <item>
   <title><![CDATA[Emails Quarantined for Nonexistent users :  Jeremy,The order in which the...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11930&amp;title=emails-quarantined-for-nonexistent-users#11930</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> 6449<br /><strong>Posted:</strong> 27 March 2008 at 4:23pm<br /><br />Jeremy,<br><br>The order in which the filters is applied is listed at <a href="http://www.logsat.com/SpamFilter/Forums/forum_posts.asp?TID=5171#5826" target="_blank">http://www.logsat.com/SpamFilter/Forums/forum_posts.asp?TID=5171#5826</a>. If a filter blocks an email, all subsequent filters will be ignored to avoid wasting resources. This will indeed cause a number of emails where the recipient is not in the "Autorized TO" list to be quarantined instead of being rejected right away.<br>]]>
   </description>
   <pubDate>Thu, 27 Mar 2008 16:23:03 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11930&amp;title=emails-quarantined-for-nonexistent-users#11930</guid>
  </item> 
  <item>
   <title><![CDATA[Emails Quarantined for Nonexistent users : I am getting a fair amount of...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11929&amp;title=emails-quarantined-for-nonexistent-users#11929</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=221">jerbo128</a><br /><strong>Subject:</strong> 6449<br /><strong>Posted:</strong> 27 March 2008 at 12:40pm<br /><br />I am getting a fair amount of mail in the quarantine for email addresses that do not appear in my tblwl_authorizedtoemails.&nbsp; <DIV>&nbsp;</DIV><DIV>I have a script that expires any message in tbl_quarantine where the email field does not have a match in tblwl_authorizedtoemails.</DIV><DIV>&nbsp;</DIV><DIV>I cleaned such messages this am, and now 2 hours later, I have 2600 more messages that match this rule.&nbsp; The first time that I ran this rule, it removed 200K messages from my database.</DIV><DIV>&nbsp;</DIV><DIV>After looking at the logs, It appears that the messages are being quarantined because they failed the local blacklist check.&nbsp; So, the authorized To Email list is never checked.</DIV><DIV>&nbsp;</DIV><DIV>Roberto - is this the intended behavior?&nbsp; What can we do to stop these from&nbsp;clogging my database up?&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Running 773 SFE.</DIV><DIV>&nbsp;</DIV><DIV>Any idea's?</DIV><DIV>&nbsp;</DIV><DIV>Jeremy</DIV><span style="font-size:10px"><br /><br />Edited by jerbo128 - 27 March 2008 at 2:39pm</span>]]>
   </description>
   <pubDate>Thu, 27 Mar 2008 12:40:51 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6449&amp;PID=11929&amp;title=emails-quarantined-for-nonexistent-users#11929</guid>
  </item> 
 </channel>
</rss>