<?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>Unix Surgeon &#187; mail scanner</title>
	<atom:link href="http://www.unixsurgeon.com/kb/tag/mail-scanner/feed" rel="self" type="application/rss+xml" />
	<link>http://www.unixsurgeon.com/kb</link>
	<description>Linux Hosting Solution, Linux Web Hosting Solution, Learn Linux, How to, Server Management , Web Hosting Solution , Linux Solution , KnowledgeBase , Linux Tutorial</description>
	<lastBuildDate>Mon, 06 Feb 2012 10:42:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to install ClamAV</title>
		<link>http://www.unixsurgeon.com/kb/how-to-install-clamav.html</link>
		<comments>http://www.unixsurgeon.com/kb/how-to-install-clamav.html#comments</comments>
		<pubDate>Wed, 19 May 2010 22:49:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux tutorials]]></category>
		<category><![CDATA[clam anti virus]]></category>
		<category><![CDATA[clam-milter]]></category>
		<category><![CDATA[ClamAV]]></category>
		<category><![CDATA[mail scanner]]></category>
		<category><![CDATA[milter]]></category>
		<category><![CDATA[open sources anti virus]]></category>

		<guid isPermaLink="false">http://www.unixsurgeon.com/kb/?p=43</guid>
		<description><![CDATA[ If you Want to install ClamAV on your Red Hat Enterprise Linux, CentOS, or Fedora Core box to scan your server files &#38; folders as well as your all mails,please use the following steps to install the Open sources Anti-Virus &#8220;Clam-AV&#8221;.
In Clam AV :-



Clamd is the scanning daemon, clamav-milter is the milter, and freshclam [...]]]></description>
			<content:encoded><![CDATA[<p><!-- @page { margin: 0.79in } 		P { margin-bottom: 0.08in } --> <!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --><span style="color: #0000ff;"><span style="font-size: small;">If you Want to install ClamAV on your Red Hat Enterprise Linux, CentOS, or Fedora Core box to scan your server files &amp; folders as well as your all mails,please use the following steps to install the Open sources Anti-Virus &#8220;Clam-AV&#8221;.</span></span></p>
<p><span style="font-size: small;">In Clam AV :-</span></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-7877248176171699";
google_ad_slot = "4635030684";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p><span style="font-size: small;">Clamd is the scanning daemon, clamav-milter is the milter, and freshclam is the process that updates the virus definitions on regular basis.</span></p>
<p><span style="font-size: small;"><strong>1.</strong>Install gmp, gmp-devel, sendmail, sendmail-cf, sendmail-devel, zlib, zlib-devel, bzip2, bzip2-devel.</span></p>
<p><span style="font-size: small;"><strong>2.</strong>Get the sendmail source from sendmail.org. Extract it, go into the libmilter subdirectory. Run &#8220;make&#8221; and &#8220;make install&#8221;. That will install libmilter into /usr, where sendmail can find it. No need to build the whole sendmail.</span></p>
<p><span style="font-size: small;"><strong>3. </strong>Download the latest stable ClamAV distribution from http://www.clamav.net or from sourgeforge http://sourceforge.net/projects/clamav/files/</span></p>
<p><span style="font-size: small;"><strong>4. </strong>Next you will need to create a user &amp; group for clamav to use:</span></p>
<p><span style="font-size: small;"># useradd clamav</span></p>
<p><span style="font-size: small;">Some OS&#8217;s require you to add the group as well:</span></p>
<p><span style="font-size: small;"># groupadd clamav</span></p>
<p><span style="font-size: small;">#useradd -g clamav -s /bin/false -c &#8220;Clam AntiVirus&#8221; clamav</span></p>
<p><span style="font-size: small;"><strong>5.</strong> Extract the ClamAv tar ball, build it, install it (three lines, two are make):</span></p>
<p><span style="font-size: small;"># ./configure &#8211;prefix=/usr/local/clamav &#8211;disable-zlib-vcheck &#8211;enable-milter</span></p>
<p><span style="font-size: small;"># make</span></p>
<p><span style="font-size: small;"># make install</span></p>
<p><span style="font-size: small;"><strong>6. </strong>Configure /usr/local/clamav/etc/clamd.conf. I changed the following:</span></p>
<p><span style="font-size: small;"># Example (default is uncommented you just add the # or comment that line )</span></p>
<p><span style="font-size: small;">And uncomment the following lines :-</span></p>
<p><span style="font-size: small;">LogTime: yes</span></p>
<p><span style="font-size: small;">LogSyslog yes</span></p>
<p><span style="font-size: small;">LogFacility LOG_MAIL</span></p>
<p><span style="font-size: small;">PidFile /var/run/clamav/clamd.pid</span></p>
<p><span style="font-size: small;">TemporaryDirectory /tmp</span></p>
<p><span style="font-size: small;">LocalSocket /var/run/clamav/clamd.socket or LocalSocket /tmp/clamd</span></p>
<p><span style="font-size: small;">FixStaleSocket yes</span></p>
<p><span style="font-size: small;">User clamav</span></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-7877248176171699";
google_ad_slot = "4635030684";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p><span style="font-size: small;"><strong>7.</strong> Configure /usr/local/clamav/etc/freshclam.conf. I changed the following:</span></p>
<p><span style="font-size: small;"># Example (default is uncommented you just add the # or comment that line )</span></p>
<p><span style="font-size: small;">And uncomment the following lines :-</span></p>
<p><span style="font-size: small;">LogSyslog yes</span></p>
<p><span style="font-size: small;">LogFacility LOG_MAIL</span></p>
<p><span style="font-size: small;">PidFile /var/run/clamav/freshclam.pid</span></p>
<p><span style="font-size: small;">DatabaseMirror db.us.clamav.net</span></p>
<p><span style="font-size: small;">NotifyClamd /usr/local/clamav/etc/clamd.conf</span></p>
<p><span style="font-size: small;"><strong>8.</strong> # mkdir /var/run/clamav</span></p>
<p><span style="font-size: small;"><strong>9.</strong> # chown clamav.clamav /var/run/clamav/</span></p>
<p><span style="font-size: small;"><strong>10.</strong> # chmod 700 /var/run/clamav</span></p>
<p><span style="font-size: small;"><strong>11. </strong>Create an empty log file for clamav updates:</span></p>
<p><span style="font-size: small;"># touch /var/log/clam-update.log</span></p>
<p><span style="font-size: small;"># chown clamav:clamav /var/log/clam-update.log</span></p>
<p><span style="font-size: small;"><strong>12.</strong> Start the base services to make sure they work. You may want to &#8220;tail -f /var/log/maillog&#8221; while you’re doing this:</span></p>
<p><span style="font-size: small;"># /usr/local/clamav/sbin/clamd</span></p>
<p><span style="font-size: small;"># /usr/local/clamav/bin/freshclam -d</span></p>
<p><span style="font-size: small;"><strong>13.</strong> Configure the milter. Add the following to /etc/mail/sendmail.mc right before the MAILER(smtp)dnl line. It’s two lines, the second beginning with “define”:</span></p>
<p><span style="font-size: small;">INPUT_MAIL_FILTER(`clamav’, `S=local:/var/run/clamav/clmilter.sock, F=, T=S:4m;R:4m;C:30s;E:10m’)dnl</span></p>
<p><span style="font-size: small;">define(`confINPUT_MAIL_FILTERS’, `clamav’)</span></p>
<p><span style="font-size: small;"><strong>14. </strong>Make the new sendmail.cf by issuing a &#8220;make -C /etc/mail&#8221; command.</span></p>
<p><span style="font-size: small;"><strong>15. </strong>Start the milter process to test it:</span></p>
<p><span style="font-size: small;">/usr/local/clamav/sbin/clamav-milter -lo /var/run/clamav/clmilter.sock</span></p>
<p><span style="font-size: small;"><strong>16. </strong>Restart sendmail to make it pick up the configuration changes (service sendmail restart).</span></p>
<p><span style="font-size: small;"><strong>17.</strong> Then send a test mail.</span></p>
<p><span style="font-size: small;"><strong>18. </strong>Please add clamd service in your init.d directory to run this server at boot time of your machine.</span></p>
<p><span style="font-size: small;"><strong>Enjoy Linux&#8230;!!!! <img src='http://www.unixsurgeon.com/kb/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></span></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-7877248176171699";
google_ad_slot = "4635030684";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unixsurgeon.com/kb/how-to-install-clamav.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Mail scanner in Cpanel.</title>
		<link>http://www.unixsurgeon.com/kb/how-to-install-mail-scanner-in-cpanel.html</link>
		<comments>http://www.unixsurgeon.com/kb/how-to-install-mail-scanner-in-cpanel.html#comments</comments>
		<pubDate>Sun, 19 Apr 2009 10:21:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[ClamAV]]></category>
		<category><![CDATA[mail scanner]]></category>
		<category><![CDATA[RVskin]]></category>

		<guid isPermaLink="false">http://www.unixsurgeon.com/?p=20</guid>
		<description><![CDATA[There is two way to install mail scanner for your server either through Cpanel plugins or RVskin.
Method 1 :-
Following steps will guide you how to install ClamAV scanner :-
1. Login in to your WHM and click on Manage plugins
2. Do check mark on ClamAv Connector( Virus Protection for Email and Filemanager Uploads) then click on [...]]]></description>
			<content:encoded><![CDATA[<h4><strong><em>There is two way to install mail scanner for your server either through Cpanel plugins or RVskin.</em></strong></h4>
<h4><span style="color: #ff6600;"><strong>Method 1 :-</strong></span></h4>
<h4><strong>Following steps will guide you how to install ClamAV scanner :-</strong></h4>
<h4><strong><span style="color: #ff6600;">1.</span> Login in to your WHM and click on Manage plugins</strong></h4>
<h4><strong><span style="color: #ff6600;">2.</span> Do check mark on ClamAv Connector( Virus Protection for Email and Filemanager Uploads) then click on Go.</strong></h4>
<h4><strong><span style="color: #ff6600;">3.</span> After installing please refresh then you find calmAV in to your Plugins &gt;&gt; configure ClamAVconnector.<a href="http://67.228.106.118:2086/cgi/addon_clamavconnector.cgi" target="mainFrame"><br />
</a></strong></h4>
<h4><span style="color: #ff6600;"><strong><em>Method 2 :-</em></strong></span></h4>
<h4><strong><em>Following steps will guide you to integrate Rvskin with Mailscanner for Cpanel:</em></strong></h4>
<h4><strong><span style="color: #ff6600;">1.</span> Login to your <em>WHM</em> and click on the <em>Rvskin Manager</em> under the <em>Add-ons</em> option in your <em>WHM</em>.</strong></h4>
<h4><strong><span style="color: #ff6600;">2.</span> In </strong><strong><em>Rvskin Manager</em>, select the <em>WHM Addon Module Integration</em> from the <em>Integartion</em> option.</strong></h4>
<h4><strong><span style="color: #ff6600;">3.</span> Within the  <em>WHM Addon Module Integration </em>select <em>MailScanner Configuration &gt;&gt; Email Management Tools.<br />
</em><br />
<span style="color: #ff6600;">4.</span> Now select<em> Config &gt;&gt; Package Feature Manager &gt;&gt; Default Feature List &gt;&gt; Edit &gt;&gt; MailScanner Configuration &gt;&gt; enable &gt;&gt; edit</em> .</strong></h4>
<h4><strong>Enjoy Linux !!!</strong></h4>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-7877248176171699";
google_ad_slot = "4635030684";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unixsurgeon.com/kb/how-to-install-mail-scanner-in-cpanel.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

