<?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 : Spamfilter 3.1.3.615</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 : Spamfilter 3.1.3.615]]></description>
  <pubDate>Tue, 10 Mar 2026 11:58:55 +0000</pubDate>
  <lastBuildDate>Tue, 26 Aug 2008 16:54:56 +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=6544</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[Spamfilter 3.1.3.615 : The growth of the DB depends on...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6544&amp;PID=12352&amp;title=spamfilter-313615#12352</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> 6544<br /><strong>Posted:</strong> 26 August 2008 at 4:54pm<br /><br />The growth of the DB depends on the amount of emails you receive. If for example you receive for example 100,000 emails/day, on average that will result in the database growing 1GB per day.<br /><br />An increase of 800MB in half an hour would indicate a flow of about 4 million emails/day, which I do not believe is your case (please do correct me if the assumption is wrong). However...<br /><br />..In your 1st post you say that the database is over 9GB, but without going into specifics on the size of the .MDF and of the .LDF files. Only now we see that they are 9.2GB and 1.2GB. As I mentioned before, maintaing the SQL transaction logs (the .LDF files) on a SQL Server is a hassle that database administrators need to beware of, as these transaction logs can become very large. If your .ldf files is 1.2GB *after* you compacted the database, that usually indicates that you (or the DBA) did not truncate the transaction log. If you perform routine backups, and are willing to sacrifice the ability to restore the database at any specific point in time in case of disasters, and are comfortable with just having the ability to restore the database in its entirety only (without the point-in-time option), then I'd recommend you configure the database(s) to use the "Simple" recovery model in SQL Server. This almost completely eliminates the issue with large growing .LDF files and will allow you to have more room.<br /><br />You can try saving]]>
   </description>
   <pubDate>Tue, 26 Aug 2008 16:54:56 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6544&amp;PID=12352&amp;title=spamfilter-313615#12352</guid>
  </item> 
  <item>
   <title><![CDATA[Spamfilter 3.1.3.615 : And so the saga continues   I...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6544&amp;PID=12351&amp;title=spamfilter-313615#12351</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=914">jwutzke</a><br /><strong>Subject:</strong> 6544<br /><strong>Posted:</strong> 26 August 2008 at 2:37pm<br /><br />And so the saga continues<DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>I deleted and rearanged to get 2.1 gigs of free space on the partition that spamfilter database is stored. within 30 min the following database files grew to the following numbers spamfilter.mdf 9,210,368 KB and spamfilter_log.LDF 1,206,106 KB leaving me 1.25 gigs on the hard drive. So they ate up 800 megs in 30 min. I have changed the retention of the quarantined database from 30 to 15 days and have verified that is all that is being saved. My question is what is taking up all the space in the database, and what is growing so quickly?</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 26 Aug 2008 14:37:41 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6544&amp;PID=12351&amp;title=spamfilter-313615#12351</guid>
  </item> 
  <item>
   <title><![CDATA[Spamfilter 3.1.3.615 :   Jeff,Hundreds of thousands...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6544&amp;PID=12349&amp;title=spamfilter-313615#12349</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> 6544<br /><strong>Posted:</strong> 25 August 2008 at 8:18pm<br /><br />Jeff,<br><br>Hundreds of thousands or several millions can be normal if you receive a lot of emails. The best way to see if the automatic deletion is working is to look at the first dozen of records in the tblQuarantine table. The records will have a field called "MsgDate" that contains the date stamp for the emails that were received. None of the emails in the database should have values in the MsgDate fields that are older than 30 days. If you do have many (as in thousands) records which have older dates, then there is indeed an issue with SpamFilter not being able to delete older messages.<br><br>If SpamFilter does have issues deleting the records, you can manually delete them by executing the following query in SQL Server on the SpamFilter database:<br><br><br><font color="#0000ff">SET ROWCOUNT 500<br>delete_more1:<br>UPDATE tblQuarantine SET Expire = 1 WHERE (DATEDIFF(day, MsgDate, GETDATE()) &gt; </font><font color="#0000ff" size="5"><b>30</b></font><font color="#0000ff">) AND Expire = 0<br>IF @@ROWCOUNT &gt; 0 GOTO delete_more1<br>SET ROWCOUNT 0<br><br>SET ROWCOUNT 500<br>delete_more2:<br>DELETE FROM tblQuarantine WHERE tblQuarantine.Expire &lt;&gt; 0<br>IF @@ROWCOUNT &gt; 0 GOTO delete_more2<br>SET ROWCOUNT 0<br><br>SET ROWCOUNT 500<br>delete_more3:<br>DELETE tblMsgs FROM tblMsgs LEFT JOIN tblQuarantine <br>ON tblMsgs.MsgID = tblQuarantine.MsgID WHERE (tblQuarantine.MsgID IS NULL)<br>IF @@ROWCOUNT &gt; 0 GOTO delete_more3<br>SET ROWCOUNT 0<br></font><br><br>The only parameter you may want to change is that big “30” that specifies the number of days to hold the emails. This procedure uses loops to update/delete 500 rows of data at a time, and this avoid extensive table/row locking to increase performance and reduce database timeouts. <br><br>Records can also be deleted from the database with a simple "DELETE" query to remove all old entries, but doing so can place locks on the database preventing SpamFilter from adding new records while the delete process occurs in the background.<br><br><span style="font-size:10px"><br /><br />Edited by LogSat - 27 December 2010 at 11:10pm</span>]]>
   </description>
   <pubDate>Mon, 25 Aug 2008 20:18:29 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6544&amp;PID=12349&amp;title=spamfilter-313615#12349</guid>
  </item> 
  <item>
   <title><![CDATA[Spamfilter 3.1.3.615 : Oh sorry, I am running MS SQL....]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6544&amp;PID=12347&amp;title=spamfilter-313615#12347</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=914">jwutzke</a><br /><strong>Subject:</strong> 6544<br /><strong>Posted:</strong> 25 August 2008 at 5:20pm<br /><br />Oh sorry, I am running MS SQL.&nbsp; so on the Quarantine tab I have it set to 30 days. but in say the tblMsgs there are hundreds of thousands of lines.&nbsp; so it looks to me like the old data is not being deleted.<DIV>&nbsp;</DIV><DIV>is there a way to force delete from the Quarantine database?</DIV><DIV>&nbsp;</DIV><DIV>--Jeff</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 25 Aug 2008 17:20:38 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6544&amp;PID=12347&amp;title=spamfilter-313615#12347</guid>
  </item> 
  <item>
   <title><![CDATA[Spamfilter 3.1.3.615 : Jeff,  Are you running Microsoft...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6544&amp;PID=12346&amp;title=spamfilter-313615#12346</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> 6544<br /><strong>Posted:</strong> 25 August 2008 at 4:26pm<br /><br />Jeff,<br /><br />Are you running Microsoft SQL Server or MySQL? <br /><br />In either case, SpamFilter stores your quarantined spam emails in the database, but should remove old emails automatically. The number of days for which emails are stored is user-defined using a setting in the "Settings - Database Setup" tab in SpamFilter. Reducing this number will reduce the amount of DB space on disk, even though you will possibly have to compact the database (how it's done is platform-dependent) to regain the space.<br /><br />With Microsoft SQL Server there is the additional hassle of having to maintain the SQL Server transaction logs (depending on how your SpamFilter database was configured), as those can grow quite large.<br />]]>
   </description>
   <pubDate>Mon, 25 Aug 2008 16:26:02 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6544&amp;PID=12346&amp;title=spamfilter-313615#12346</guid>
  </item> 
  <item>
   <title><![CDATA[Spamfilter 3.1.3.615 : I have spamfilter running on win2k...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6544&amp;PID=12345&amp;title=spamfilter-313615#12345</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=914">jwutzke</a><br /><strong>Subject:</strong> 6544<br /><strong>Posted:</strong> 25 August 2008 at 2:27pm<br /><br />I have spamfilter running on win2k with SQL installed, has been running for quite awhile(long before I got here)<DIV></DIV><DIV></DIV><DIV></DIV><DIV>&nbsp;</DIV><DIV>Well here is my problem it is on a 14 gig hard drive and it is filling up (had to remove the </DIV><DIV>i386 dir for space today), the database is over 9 gigs and then webshield is a couple, What </DIV><DIV>I need to know is what is stored in the SQL database and how to remove say anything before 6 months ago. Is this something that can be done? Or should I look at building a new VM to run it with more space and move it to there?</DIV><DIV>&nbsp;</DIV><DIV>--Jeff Wutzke</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 25 Aug 2008 14:27:38 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=6544&amp;PID=12345&amp;title=spamfilter-313615#12345</guid>
  </item> 
 </channel>
</rss>