<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>FAQforge &#187; ClamAV</title> <atom:link href="http://www.faqforge.com/tag/clamav/feed/" rel="self" type="application/rss+xml" /><link>http://www.faqforge.com</link> <description>Just another WordPress weblog</description> <lastBuildDate>Fri, 03 Feb 2012 13:47:23 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>How to disable spamfilter- and antivirus functions in ISPConfig 3</title><link>http://www.faqforge.com/linux/controlpanels/ispconfig3/how-to-disable-spamfilter-and-antivirus-functions-in-ispconfig-3/</link> <comments>http://www.faqforge.com/linux/controlpanels/ispconfig3/how-to-disable-spamfilter-and-antivirus-functions-in-ispconfig-3/#comments</comments> <pubDate>Wed, 14 Jul 2010 12:52:27 +0000</pubDate> <dc:creator>Till</dc:creator> <category><![CDATA[Debian]]></category> <category><![CDATA[Distributions]]></category> <category><![CDATA[Email]]></category> <category><![CDATA[ISPConfig 3]]></category> <category><![CDATA[Server]]></category> <category><![CDATA[Ubuntu]]></category> <category><![CDATA[Amavisd]]></category> <category><![CDATA[ClamAV]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=490</guid> <description><![CDATA[If you use a mailserver wil very low ram (&#60; 500 MB) and a slow CPU then it might be nescessary to disable the spam- and antivirus filter functions in ISPConfig 3 as amavisd and clamav might be too heavy for your server hardware. The steps to disable clamav and amavisd are: Edit postfix main.cf [...]]]></description> <content:encoded><![CDATA[<p>If you use a mailserver wil very low ram (&lt; 500 MB) and a slow CPU then it might be nescessary to disable the spam- and antivirus filter functions in ISPConfig 3 as amavisd and clamav might be too heavy for your server hardware. The steps to disable clamav and amavisd are:</p><p>Edit postfix main.cf file</p><p
class="command">vi /etc/postfix/main.cf</p><p>and comment out these lines by adding a &#8220;#&#8221; in front of them:</p><p
class="system"># content_filter = amavis:[127.0.0.1]:10024<br
/> # receive_override_options = no_address_mappings</p><p>Then restart postfix:</p><p
class="command">/etc/init.d/postfix restart</p><p>Now stop and disable the services. The following commands are for Debian and Ubuntu, the commands for other Linux distributions may vary</p><p
class="command">/etc/init.d/clamav-daemon stop<br
/> /etc/init.d/clamav-freshclam stop<br
/> /etc/init.d/amavis stop</p><p
class="command">update-rc.d -f clamav-daemon remove<br
/> update-rc.d -f clamav-freshclam remove<br
/> update-rc.d -f amavis remove</p><p>P The normal mail receive and send functions will still work after this modification. But please be aware that disabling amavisd and clamav will disable all spam-  and antivirus filtering so that the spamfiltering options that can be configured in the ispconfig interface will have any effect on mail delivery and no spam and viruses will get filtered.</p><p>The changes in postfix main.cf will get overwitten by a ispconfig software update when you select to reconfigure services during upadte, so you should comment out the lines again after you install a ispconfig update.</p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/linux/controlpanels/ispconfig3/how-to-disable-spamfilter-and-antivirus-functions-in-ispconfig-3/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>How to solve the ClamAV error &#8220;This version of the ClamAV engine is outdated&#8221; on Debian 5.0 (Lenny)</title><link>http://www.faqforge.com/linux/how-to-solve-the-clamav-error-this-version-of-the-clamav-engine-is-outdated-on-debian-5-0-lenny/</link> <comments>http://www.faqforge.com/linux/how-to-solve-the-clamav-error-this-version-of-the-clamav-engine-is-outdated-on-debian-5-0-lenny/#comments</comments> <pubDate>Fri, 16 Apr 2010 14:16:28 +0000</pubDate> <dc:creator>Till</dc:creator> <category><![CDATA[Controlpanels]]></category> <category><![CDATA[Debian]]></category> <category><![CDATA[Distributions]]></category> <category><![CDATA[Email]]></category> <category><![CDATA[ISPConfig 3]]></category> <category><![CDATA[Linux & Unix]]></category> <category><![CDATA[Server]]></category> <category><![CDATA[Amavisd]]></category> <category><![CDATA[ClamAV]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=442</guid> <description><![CDATA[As of today, all ClamAV 0.94 or older installs will stop working. The Debian project has not released updates for their current stable release (5.0) yet to solve this, but there is a workaround. The Debain volatile project provides newer clamav versions. The installation steps to install ClamAV 0.95.3 on Debian lenny are: 1) Add [...]]]></description> <content:encoded><![CDATA[<p>As of today, all ClamAV 0.94 or older installs will stop working. The Debian project has not released updates for their current stable release (5.0) yet to solve this, but there is a workaround. The Debain volatile project provides newer clamav versions. The installation steps to install ClamAV 0.95.3 on Debian lenny are:</p><p>1) Add the debian volatile repository to the sources list:</p><p
class="command">echo &#8220;deb http://volatile.debian.org/debian-volatile lenny/volatile main contrib non-free&#8221; >> /etc/apt/sources.list</p><p>2) Update the sources and install the new clamav package:</p><p
class="command">apt-get update<br
/> apt-get install clamav<br
/> apt-get -u upgrade</p><p>3) If you use amavisd-new (e.g. if you use a ISPConfig 3 server) then restart amavisd:</p><p
class="command">/etc/init.d/amavis restart</p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/linux/how-to-solve-the-clamav-error-this-version-of-the-clamav-engine-is-outdated-on-debian-5-0-lenny/feed/</wfw:commentRss> <slash:comments>11</slash:comments> </item> <item><title>Which virus scanner is used by ISPConfig 2</title><link>http://www.faqforge.com/linux/controlpanels/ispconfig2/which-virus-scanner-is-used-by-ispconfig-2/</link> <comments>http://www.faqforge.com/linux/controlpanels/ispconfig2/which-virus-scanner-is-used-by-ispconfig-2/#comments</comments> <pubDate>Tue, 28 Jul 2009 13:36:00 +0000</pubDate> <dc:creator>Till</dc:creator> <category><![CDATA[Email]]></category> <category><![CDATA[ISPConfig 2]]></category> <category><![CDATA[ClamAV]]></category> <category><![CDATA[Mailserver]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=19</guid> <description><![CDATA[ISPConfig 2 uses ClamAV (http://www.clamav.net) as virus scanner and the E-mail Sanitizer (http://www.impsec.org/email-tools/procmail-security.html) as content filter.]]></description> <content:encoded><![CDATA[<p>ISPConfig 2 uses ClamAV (<a
href="http://www.clamav.net/" target="_blank">http://www.clamav.net</a>) as virus scanner and the E-mail Sanitizer (<a
href="http://www.impsec.org/email-tools/procmail-security.html" target="_blank">http://www.impsec.org/email-tools/procmail-security.html</a>) as content filter.</p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/linux/controlpanels/ispconfig2/which-virus-scanner-is-used-by-ispconfig-2/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 1/17 queries in 0.028 seconds using disk: basic
Object Caching 632/661 objects using disk: basic

Served from: www.faqforge.com @ 2012-02-05 00:13:15 -->
