<?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>Computer Support &#187; bypass</title>
	<atom:link href="http://www.xiitec.com/blog/tag/bypass/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xiitec.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 30 Dec 2009 08:40:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bypassing Spam Checks</title>
		<link>http://www.xiitec.com/blog/2009/03/16/bypassing-spam-checks-2/</link>
		<comments>http://www.xiitec.com/blog/2009/03/16/bypassing-spam-checks-2/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 16:42:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sendmail]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.xiitec.com/blog/?p=253</guid>
		<description><![CDATA[Your sendmail is configured to block incoming junk mail, and you have   been asked to allow junk mail through when it is addressed to specific   recipients.

Add an entry to the /etc/mail/access text file for each   recipient who should be allowed to receive junk mail. Use the tag Spam:  [...]]]></description>
			<content:encoded><![CDATA[<p>Your sendmail is configured to block incoming junk mail, and you have   been asked to allow junk mail through when it is addressed to specific   recipients.</p>
<p><span id="more-253"></span></p>
<p>Add an entry to the <em>/etc/mail/access</em> text file for each   recipient who should be allowed to receive junk mail. Use the tag Spam:   and the recipient address to create the key field of the entry. Use the keyword   FRIEND as the return value for each entry. Run makemap to build a hash type database from the text   file.</p>
<p>Create a sendmail configuration containing the <em>access_db </em>feature and the <em>delay_checks</em> feature with the optional   friend argument. Make sure that the <em>access_db</em> FEATURE   macro precedes the <em>delay_checks</em> FEATURE macro in the   configuration. Here are the lines that would be added to the sendmail   configuration:</p>
<pre>dnl Use the access database

FEATURE(`access_db')

dnl Check for spam friends before rejecting the mail

FEATURE(`delay_checks', `friend')</pre>
<p>Rebuild the <em>sendmail.cf</em> file, copy the new <em>sendmail.cf</em> file to <em>/etc/mail</em>, and restart sendmail</p>
<p>Someone on your system—the postmaster, a security expert, a   developer writing mail filters—might need to receive junk mail that is normally   blocked by sendmail. The <em>delay_checks</em> feature allows this by changing the   order in which spam checks are applied. The <em>delay_checks</em> feature allows   the envelope recipient address to be checked before the envelope sender address   or the connection address, which, in turn, makes it possible for mail addressed   to specific recipients to bypass the other two checks. To use the <em>delay_checks</em> feature in this way, it must be invoked with the   friend argument, as shown in the Solution section.</p>
<p>The specific recipients allowed to receive junk mail are   defined in the <em>access</em> database using the Spam: tag and the   FRIEND return value. Here is an example access database:</p>
<pre>Connect:example.com                  REJECT

Spam:uce@wrotethebook.com            FRIEND

Spam:clark+junk@wrotethebook.com     FRIEND</pre>
<p>Given the sendmail configuration described in the Solution   section, this <em>access</em> database rejects mail from <em>example.com</em> unless   it is addressed to <em>uce@wrotethebook.com</em> or to <em>clark+junk@wrotethebook.com</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xiitec.com/blog/2009/03/16/bypassing-spam-checks-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Bypassing Spam Checks</title>
		<link>http://www.xiitec.com/blog/2009/02/13/bypassing-spam-checks/</link>
		<comments>http://www.xiitec.com/blog/2009/02/13/bypassing-spam-checks/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 17:36:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sendmail]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.xiitec.com/blog/?p=247</guid>
		<description><![CDATA[Your sendmail is configured to block incoming junk mail, and you have   been asked to allow junk mail through when it is addressed to specific   recipients.

Add an entry to the /etc/mail/access text file for each   recipient who should be allowed to receive junk mail. Use the tag Spam:  [...]]]></description>
			<content:encoded><![CDATA[<p>Your sendmail is configured to block incoming junk mail, and you have   been asked to allow junk mail through when it is addressed to specific   recipients.</p>
<p><span id="more-247"></span></p>
<p>Add an entry to the <em>/etc/mail/access</em> text file for each   recipient who should be allowed to receive junk mail. Use the tag Spam:   and the recipient address to create the key field of the entry. Use the keyword   FRIEND as the return value for each entry. Run makemap to build a hash type database from the text   file.</p>
<p>Create a sendmail configuration containing the <em>access_db </em>feature and the <em>delay_checks</em> feature with the optional   friend argument. Make sure that the <em>access_db</em> FEATURE   macro precedes the <em>delay_checks</em> FEATURE macro in the   configuration. Here are the lines that would be added to the sendmail   configuration:</p>
<pre>dnl Use the access database

FEATURE(`access_db')

dnl Check for spam friends before rejecting the mail

FEATURE(`delay_checks', `friend')</pre>
<p>Rebuild the <em>sendmail.cf</em> file, copy the new <em>sendmail.cf</em> file to <em>/etc/mail</em>, and restart sendmail</p>
<p>Someone on your system—the postmaster, a security expert, a   developer writing mail filters—might need to receive junk mail that is normally   blocked by sendmail. The <em>delay_checks</em> feature allows this by changing the   order in which spam checks are applied. The <em>delay_checks</em> feature allows   the envelope recipient address to be checked before the envelope sender address   or the connection address, which, in turn, makes it possible for mail addressed   to specific recipients to bypass the other two checks. To use the <em>delay_checks</em> feature in this way, it must be invoked with the   friend argument, as shown in the Solution section.</p>
<p>The specific recipients allowed to receive junk mail are   defined in the <em>access</em> database using the Spam: tag and the   FRIEND return value. Here is an example access database:</p>
<pre>Connect:example.com                  REJECT

Spam:uce@wrotethebook.com            FRIEND

Spam:clark+junk@wrotethebook.com     FRIEND</pre>
<p>Given the sendmail configuration described in the Solution   section, this <em>access</em> database rejects mail from <em>example.com</em> unless   it is addressed to <em>uce@wrotethebook.com</em> or to <em>clark+junk@wrotethebook.com</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xiitec.com/blog/2009/02/13/bypassing-spam-checks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
