<?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 : Adding a field to a SFE table</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 : Adding a field to a SFE table]]></description>
  <pubDate>Wed, 11 Mar 2026 15:03:01 +0000</pubDate>
  <lastBuildDate>Mon, 04 Jun 2007 21:58:35 +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=6093</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[Adding a field to a SFE table :   LogSat wrote:Are the duplicates...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10272&amp;title=adding-a-field-to-a-sfe-table#10272</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> 6093<br /><strong>Posted:</strong> 04 June 2007 at 9:58pm<br /><br /><P><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 /><BR>Are the duplicates created by SpamFilter, or by some other process..? We could not duplicate this, as in having SpamFilter create the dupes.<BR></td></tr></table> </P><P>Thanks for the code.&nbsp; Will try it out.</P><P>Nearest I can tell now, most of the duplicates were created when mail was force delivered from the quarantine.&nbsp;&nbsp; I have noticed several users that have the email address to the SpamFilter listed several times.&nbsp; I will do some cleanup on the table and see if I can re-create to post back here.</P>]]>
   </description>
   <pubDate>Mon, 04 Jun 2007 21:58:35 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10272&amp;title=adding-a-field-to-a-sfe-table#10272</guid>
  </item> 
  <item>
   <title><![CDATA[Adding a field to a SFE table :     jerbo128 wrote:Will the...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10271&amp;title=adding-a-field-to-a-sfe-table#10271</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> 6093<br /><strong>Posted:</strong> 04 June 2007 at 8:35pm<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by jerbo128" alt="Originally posted by jerbo128" style="vertical-align: text-bottom;" /> <strong>jerbo128 wrote:</strong><br /><br /><p>Will the .677 look for duplicates in tables.&nbsp; I have noticed that I have a fair amount of them in the autowhitelist table.&nbsp;&nbsp;&nbsp; If 677 will&nbsp;not look for them- is it a problem having them?&nbsp; <br>If so...<br>Anyone have a bit of SQL code that will remove duplicates?<img style="cursor: pointer;" &#111;nclick="AddSmileyIc&#111;n'smileys/smiley4.gif'" alt="Big smile" src="http://www.logsat.com/spamfilter/forums/smileys/smiley4.gif" border="0"></p><p>jerbo128</p></td></tr></table><br><br>Are the duplicates created by SpamFilter, or by some other process..? We could not duplicate this, as in having SpamFilter create the dupes.<br>We were however able to create the duplicate entries manually in the database, there's nothing SpamFilter can do in that case... it will not remove the dupes once they are in there.<br><br>For the SQL:<br><span style="font-weight: bold;">Make a backup of your autowhitelist 1st!<br><span style="font-weight: bold;"><br></span></span>DELETE FROM tblwl_autowhitelistforcedelivery<br>WHERE&nbsp;&nbsp;&nbsp;&nbsp; (id IN<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  (SELECT&nbsp;&nbsp;&nbsp;&nbsp; id<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; FROM&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tblwl_autowhitelistforcedelivery AS F<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; WHERE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EXISTS<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; (SELECT&nbsp;&nbsp;&nbsp;&nbsp; email, COUNT(id) AS Expr1<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FROM&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tblwl_autowhitelistforcedelivery AS tblwl_autowhitelistforcedelivery_2<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WHERE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (email = F.email)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GROUP BY email<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HAVING&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (COUNT(id) &gt; 1)))) AND (id NOT IN<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  (SELECT&nbsp;&nbsp;&nbsp;&nbsp; MIN(id) AS Expr1<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; FROM&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tblwl_autowhitelistforcedelivery AS F<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; WHERE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EXISTS<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; (SELECT&nbsp;&nbsp;&nbsp;&nbsp; email, COUNT(id) AS Expr1<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FROM&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tblwl_autowhitelistforcedelivery AS tblwl_autowhitelistforcedelivery_1<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WHERE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (email = F.email)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GROUP BY email<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HAVING&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (COUNT(id) &gt; 1))<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; GROUP BY email))<br><br><span style="font-weight: bold;"><span style="font-weight: bold;"></span><br><br></span>PS - the SQL code came from:  http://www.4guysfromrolla.com/webtech/sqlguru/q051200-2.shtm l<span style="font-weight: bold;"><br></span><span style="font-size:10px"><br /><br />Edited by LogSat</span>]]>
   </description>
   <pubDate>Mon, 04 Jun 2007 20:35:15 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10271&amp;title=adding-a-field-to-a-sfe-table#10271</guid>
  </item> 
  <item>
   <title><![CDATA[Adding a field to a SFE table :   jerbo128 wrote: Anyone have...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10270&amp;title=adding-a-field-to-a-sfe-table#10270</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=22">Desperado</a><br /><strong>Subject:</strong> 6093<br /><strong>Posted:</strong> 04 June 2007 at 7:26pm<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by jerbo128" alt="Originally posted by jerbo128" style="vertical-align: text-bottom;" /> <strong>jerbo128 wrote:</strong><br /><br /><P>Anyone have a bit of SQL code that will remove duplicates?<IMG style="CURSOR: pointer" alt="Big smile" src="http://www.logsat.com/spamfilter/forums/smileys/smiley4.gif" &#111;nclick="AddSmileyIc&#111;n'smileys/smiley4.gif'" border="0"></P><P></td></tr></table> </P><DIV>Hmmm ... the simplest thing I can think of&nbsp;to eliminate the duplicate records is to SELECT DISTINCT into a temp table, then truncate the real table and then insert from the temp to the original.&nbsp; There are other ways I am sure.</DIV><span style="font-size:10px"><br /><br />Edited by Desperado</span>]]>
   </description>
   <pubDate>Mon, 04 Jun 2007 19:26:53 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10270&amp;title=adding-a-field-to-a-sfe-table#10270</guid>
  </item> 
  <item>
   <title><![CDATA[Adding a field to a SFE table : // New to VersionNumber = &amp;#039;3.5.3.677&amp;#039;;{TODO...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10269&amp;title=adding-a-field-to-a-sfe-table#10269</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=22">Desperado</a><br /><strong>Subject:</strong> 6093<br /><strong>Posted:</strong> 04 June 2007 at 5:10pm<br /><br /><P>// New to VersionNumber = '3.5.3.677';<BR>{TODO -cNew : SpamFilter Enterprise was deleting and re-inserting the entire AutoWhiteListForceDelivery list in the database when appending a new entry, possibly causing data loss in high traffic scenarios. This process was rewritten to append the new individual records only}<BR></P><P>Solved my issue!&nbsp; Thanks</P>]]>
   </description>
   <pubDate>Mon, 04 Jun 2007 17:10:16 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10269&amp;title=adding-a-field-to-a-sfe-table#10269</guid>
  </item> 
  <item>
   <title><![CDATA[Adding a field to a SFE table : Will the .677 look for duplicates...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10268&amp;title=adding-a-field-to-a-sfe-table#10268</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> 6093<br /><strong>Posted:</strong> 04 June 2007 at 5:07pm<br /><br /><P>Will the .677 look for duplicates in tables.&nbsp; I have noticed that I have a fair amount of them in the autowhitelist table.&nbsp;&nbsp;&nbsp; If 677 will&nbsp;not look for them- is it a problem having them?&nbsp; <BR>If so...<BR>Anyone have a bit of SQL code that will remove duplicates?<IMG style="CURSOR: pointer" &#111;nclick="AddSmileyIc&#111;n'smileys/smiley4.gif'" alt="Big smile" src="http://www.logsat.com/spamfilter/forums/smileys/smiley4.gif" border="0"></P><P>jerbo128</P>]]>
   </description>
   <pubDate>Mon, 04 Jun 2007 17:07:02 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10268&amp;title=adding-a-field-to-a-sfe-table#10268</guid>
  </item> 
  <item>
   <title><![CDATA[Adding a field to a SFE table : Very cool. Thanks! ]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10267&amp;title=adding-a-field-to-a-sfe-table#10267</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=102">WebGuyz</a><br /><strong>Subject:</strong> 6093<br /><strong>Posted:</strong> 04 June 2007 at 4:30pm<br /><br />Very cool. Thanks!]]>
   </description>
   <pubDate>Mon, 04 Jun 2007 16:30:36 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10267&amp;title=adding-a-field-to-a-sfe-table#10267</guid>
  </item> 
  <item>
   <title><![CDATA[Adding a field to a SFE table : Dan is correct on both cases....]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10265&amp;title=adding-a-field-to-a-sfe-table#10265</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> 6093<br /><strong>Posted:</strong> 04 June 2007 at 4:16pm<br /><br />Dan is correct on both cases. SpamFilter does not care about any extra fields you *append* at the end of the existing fields. <br><br>SpamFilter also was deleting and re-inserting all entries from the AutoWhiteListForceDelivery table every time a new entry was added to that list. While this was done to better maintain our code, it was causing issues with data loss in high traffic sites, causing the list to be truncated. This would also cause timestamp issues in Dan's case.<br><br>We just uploaded SpamFilter 3.5.3.677 in the registered user area. We've been testing this version of over a week since it required some major changes in how this list was being handled, and are now ready to make it public. All new records to the AutoWhiteListForceDelivery table are now simply appended to the table, and existing rows are not altered. We should thus now "leave alone" any timestamps yo may be adding.<br><br>Release note:<br><font size="1">// New to VersionNumber = '3.5.3.677';<br>{TODO -cNew : SpamFilter Enterprise was deleting and re-inserting the entire AutoWhiteListForceDelivery list in the database when appending a new entry, possibly causing data loss in high traffic scenarios. This process was rewritten to append the new individual records only}<br></font><br>]]>
   </description>
   <pubDate>Mon, 04 Jun 2007 16:16:33 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10265&amp;title=adding-a-field-to-a-sfe-table#10265</guid>
  </item> 
  <item>
   <title><![CDATA[Adding a field to a SFE table : SFE does not CARE about extra...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10264&amp;title=adding-a-field-to-a-sfe-table#10264</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=22">Desperado</a><br /><strong>Subject:</strong> 6093<br /><strong>Posted:</strong> 04 June 2007 at 11:20am<br /><br />SFE does not CARE about extra fields but will not write them.&nbsp; It looks like when an entry is added by SFE, it re-writes all entries for that domain ID so that you will propably loose the extra date and a new date will be written.&nbsp; So .... I was looking at adding a table for referance that is triggered by changes BUT I still have to work out how to get around the re-write of all the entries.&nbsp; Or ... I am not fully understanding what is happening when an entry is added by SFE.]]>
   </description>
   <pubDate>Mon, 04 Jun 2007 11:20:17 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10264&amp;title=adding-a-field-to-a-sfe-table#10264</guid>
  </item> 
  <item>
   <title><![CDATA[Adding a field to a SFE table : Hmm, forgot that SFE will add...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10263&amp;title=adding-a-field-to-a-sfe-table#10263</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=102">WebGuyz</a><br /><strong>Subject:</strong> 6093<br /><strong>Posted:</strong> 04 June 2007 at 11:13am<br /><br /><P>Hmm, forgot that SFE will add entries as people whitelist stuff out of quarantine. I was thinking of doing this for the autowhitelist entries we ourselves create from&nbsp;parsing our outbound mail servers. If SFE is adding entries it does not know about the extra field and may&nbsp;compalin when adding an entry.</P><P>Guess it would be safer to create a separate table and link it to&nbsp;recordid of the authowhitelist entry.</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Mon, 04 Jun 2007 11:13:14 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10263&amp;title=adding-a-field-to-a-sfe-table#10263</guid>
  </item> 
  <item>
   <title><![CDATA[Adding a field to a SFE table : Webguyz, That is easy to do BUT...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10261&amp;title=adding-a-field-to-a-sfe-table#10261</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=22">Desperado</a><br /><strong>Subject:</strong> 6093<br /><strong>Posted:</strong> 04 June 2007 at 11:02am<br /><br /><P>Webguyz,</P><P>That is easy to do BUT ... what I see happening is that when a new entry gets posted for say ... domain id 6, all the entries for that domain get the most current date.&nbsp; Perhaps you can see what I did wrong.</P><P><FONT face=Arial size=2>Added a column "date_added"&nbsp; with a default value of "datetime"</FONT></P>]]>
   </description>
   <pubDate>Mon, 04 Jun 2007 11:02:16 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6093&amp;PID=10261&amp;title=adding-a-field-to-a-sfe-table#10261</guid>
  </item> 
 </channel>
</rss>