<?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>Blog Behind GFW &#187; Spam</title>
	<atom:link href="http://www.behindgfw.com/archives/tag/spam/feed" rel="self" type="application/rss+xml" />
	<link>http://www.behindgfw.com/archives</link>
	<description>在墙后面写博客...</description>
	<lastBuildDate>Mon, 02 Nov 2009 03:46:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>给域名添加SPF记录</title>
		<link>http://www.behindgfw.com/archives/2009/03/domain-spf-record.html</link>
		<comments>http://www.behindgfw.com/archives/2009/03/domain-spf-record.html#comments</comments>
		<pubDate>Wed, 18 Mar 2009 06:51:14 +0000</pubDate>
		<dc:creator>behindGFW</dc:creator>
				<category><![CDATA[WebDev]]></category>
		<category><![CDATA[Domain]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://www.behindgfw.com/archives/2009/03/domain-spf-record.html</guid>
		<description><![CDATA[独立域名博客在收到主机寄过来的邮件时，邮件头会经常显示如下两行：
Received-SPF: neutral (google.com: 72.47.192.112 is neither permitted nor denied by best guess record for domain of wordpress@your_domain.com) client-ip=72.47.192.112;
Received-SPF: fail (google.com: domain of wordpress@your_domain.com does not designate 72.47.192.112 as permitted sender) client-ip=72.47.192.112;
Authentication-Results: mx.google.com; spf=hardfail (google.com: domain of wordpress@your_domain.com does not designate 72.47.192.112 as permitted sender) smtp.mail=wordpress@your_domain.com
Received-SPF: softfail (google.com: domain of transitioning wordpress@your_domain.com does not designate 72.47.192.112 [...]]]></description>
			<content:encoded><![CDATA[<p>独立域名博客在收到主机寄过来的邮件时，邮件头会经常显示如下两行：</p>
<blockquote><p>Received-SPF: neutral (google.com: 72.47.192.112 is neither permitted nor denied by best guess record for domain of wordpress@your_domain.com) client-ip=72.47.192.112;</p></blockquote>
<blockquote><p>Received-SPF: fail (google.com: domain of wordpress@your_domain.com does not designate 72.47.192.112 as permitted sender) client-ip=72.47.192.112;<br />
Authentication-Results: mx.google.com; spf=hardfail (google.com: domain of wordpress@your_domain.com does not designate 72.47.192.112 as permitted sender) smtp.mail=wordpress@your_domain.com</p></blockquote>
<blockquote><p>Received-SPF: softfail (google.com: domain of transitioning wordpress@your_domain.com does not designate 72.47.192.112 as permitted sender) client-ip=72.47.192.112;<br />
Authentication-Results: mx.google.com; spf=softfail (google.com: domain of transitioning wordpress@your_domain.com does not designate 72.47.192.112 as permitted sender) smtp.mail=wordpress@your_domain.com</p></blockquote>
<p>对一个完美主义者来说，出现“Fail”是不可接受的，这种邮件被Gmail扔进Spam的几率比较大哦。这是你域名的SPF记录没配置好出现验证失败的缘故，那什么是SPF呢？</p>
<p>由于同一个域名可能透过多台的mail server或是ISP寄信，通过IP地址来反向解析看是否为伪造信件的方式就不够用了（我们也经常可以收到发件人是自己的垃圾邮件）。因此就有域名验证的观念出来了，共包括domain key和SPF这两大类，都必须在网域名称的DNS记录中加入一笔记录。</p>
<p>SPF(或是Sender ID)是Sender Policy Framework的缩写。当你定义了你域名的SPF记录后，接收邮件方会根据你的SPF记录来判断连接过来的IP地址是否被包含在SPF记录里面，如果在，则认为是一封正确的邮件，否则则认为是一封伪造的邮件。现在绝大部份反垃圾邮件系统都支持SPF过滤，这种过滤一般不会有误判，除非是邮件系统管理员自己把SPF记录配置错误或遗漏.</p>
<p>至于domain key则是由Yahoo所提出的。必需配合软件和加密技术，比较麻烦。目前使用的也不多。 Google目前所谓的支援domainkey也只是在寄信的时候加入，免得被yahoo退信，本身并没有要求寄件者要有domainkey。</p>
<p>正确设置后邮件头一般显示如下：</p>
<blockquote><p>Received-SPF: pass (google.com: domain of wordpress@your_domain.com designates 72.47.192.112 as permitted sender) client-ip=72.47.192.112;<br />
Authentication-Results: mx.google.com; spf=pass (google.com: domain of wordpress@your_domain.com designates 72.47.192.112 as permitted sender) smtp.mail=wordpress@your_domain.com</p></blockquote>
<p>关于SPF是否有设定的必要？一般认为有加上SPF比较好，怕万一碰到哪个收件服务器有采用SenderID机制来过滤信件的话就有用处了。</p>
<p>如何增加SPF记录，非常简单，在DNS里面添加TXT记录即可，可以使用下面两个SPF生成检查工具：<br />
<a href="http://www.microsoft.com/mscorp/safety/content/technologies/senderid/wizard/default.aspx">http://www.microsoft.com/mscorp/safety/content/technologies/senderid/wizard/default.aspx</a><br />
<a href="http://old.openspf.org/wizard.html"> http://old.openspf.org/wizard.html</a></p>
<p><img class="alignnone" title="SPF" src="https://oan6sg.blu.livefilestore.com/y1mHktY4EWc6gjNMZCYcbz27AQ-edIw9NHGIfKgKgbQwGRLw9egjxn5aWt76HT8OhrvExAg02cPiTbbabrreb1z2b80hzM2nhwGrNUQtWsXhqAoYYIF6EIlMmX4VDqkWmcjKszzZWc6prA/image_thumb" alt="" width="400" height="80" /></p>
<p>a 你域名的A记录，一般选择yes，因为他有可能发出邮件，比如我上面提到的Wordpress的回信。<br />
mx 一般也是yes，MX服务器会有退信等。<br />
ptr 选择no，官方建议的。<br />
inlude 如果有可能通过一个isp来发信，isp有自己的SPF记录，则填入这个isp的域名。比如你使用Google Apps，应该增加include:google.com记录，因为你的邮件时从Google服务器发出去的。<br />
ip4： 你还有没有其他的ip发信？可能你的smtp服务器是独立出来的，那么就填入你的IP地址或者网段。<br />
~all: 意思是除了上面的，其他的都不认可。当然是yes了。</p>
<p>再检查下，进入cmd（以Google.com为例）:</p>
<blockquote><p><strong>C:\Documents and Settings\&gt;</strong>nslookup<br />
Default Server:  resolver1.opendns.com<br />
Address:  208.67.222.222&gt;<br />
<strong>&gt;</strong> set type=txt<br />
<strong>&gt;</strong><br />
<strong>&gt;</strong> google.com<br />
Server:  resolver1.opendns.com<br />
Address:  208.67.222.222</p>
<p>Non-authoritative answer:<br />
google.com      text =</p>
<p>&#8220;v=spf1 include:_netblocks.google.com ~all&#8221;<br />
<strong>&gt;</strong><br />
<strong>&gt;</strong> _netblocks.google.com<br />
Server:  resolver1.opendns.com<br />
Address:  208.67.222.222</p>
<p>Non-authoritative answer:<br />
_netblocks.google.com   text =</p>
<p>&#8220;v=spf1 ip4:216.239.32.0/19 ip4:64.233.160.0/<br />
2.14.192.0/18 ip4:209.85.128.0/17 ip4:66.102.0.0/20 i<br />
0.0/20 ip4:207.126.144.0/20 ?all&#8221;<br />
<strong>&gt;</strong><br />
<strong>&gt;</strong>behindgfw.com<br />
Server:  resolver1.opendns.com<br />
Address:  208.67.222.222</p>
<p>Non-authoritative answer:<br />
behindgfw.com   text =</p>
<p>&#8220;v=spf1 a a:fwolf.com mx include:google.com ~all&#8221;</p></blockquote>
<p>ok，都设置好了，给check-auth@verifier.port25.com发封邮件，很快会有回信告诉你设置是否正确。或者在<a href="http://69.56.15.194/">http://69.56.15.194/</a>找到一个形如XXXX@69.56.15.194的邮箱地址，发封邮件，点击“view sample”就可以看见你的检测结果了。这两种方式都会返回详细的SPF check、DomainKeys check、DKIM check、Sender-ID check结果。</p>
<p>至于那些域名注册商支持添加SPF记录，可以在如下网址检查：<br />
<a href="http://www.kitterman.com/spf/txt.html">http://www.kitterman.com/spf/txt.html</a></p>
<p>参考链接：<br />
RFC4408 <a href="http://www.ietf.org/rfc/rfc4408.txt">http://www.ietf.org/rfc/rfc4408.txt</a><br />
<a href="http://blog.sina.com.cn/s/blog_44652a83010004y7.html">Chifeng</a></p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://www.behindgfw.com/archives/2007/08/several_dns_host_tools.html" title="几个域名、主机工具">几个域名、主机工具</a></li><li><a href="http://www.behindgfw.com/archives/2006/08/blog-post_01.html" title="头痛的垃圾邮件">头痛的垃圾邮件</a></li><li><a href="http://www.behindgfw.com/archives/2006/04/host.html" title="贴一个host文件">贴一个host文件</a></li><li><a href="http://www.behindgfw.com/archives/2006/02/blog-post_22.html" title="发垃圾邮件的当心了">发垃圾邮件的当心了</a></li></ul><hr />
© 2009 <a href="http://www.behindgfw.com/archives">BehindGFW</a> |
<a href="http://feed.BehindGFW.com/">订阅</a> |
<a href="http://www.behindgfw.com/archives/2009/03/domain-spf-record.html">本文链接</a> |
<a href="http://www.behindgfw.com/archives/2009/03/domain-spf-record.html#comments">3条评论</a> |
<a href="http://del.icio.us/post?url=http://www.behindgfw.com/archives/2009/03/domain-spf-record.html&title=给域名添加SPF记录">添加到del.icio.us</a>]]></content:encoded>
			<wfw:commentRss>http://www.behindgfw.com/archives/2009/03/domain-spf-record.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>头痛的垃圾邮件</title>
		<link>http://www.behindgfw.com/archives/2006/08/blog-post_01.html</link>
		<comments>http://www.behindgfw.com/archives/2006/08/blog-post_01.html#comments</comments>
		<pubDate>Tue, 01 Aug 2006 05:31:00 +0000</pubDate>
		<dc:creator>zdpress</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://behindgfw.com/archives/2006/08/%e5%a4%b4%e7%97%9b%e7%9a%84%e5%9e%83%e5%9c%be%e9%82%ae%e4%bb%b6.html</guid>
		<description><![CDATA[在Hotmail和Gmail中如果收到钓鱼邮件，你的邮件头部有可能会显示如下：

存在潜在不安全因素的邮件。报告并删除 &#124;允许发件人  
对邮件进行的 SenderID 检查失败，我们建议您在打开邮件之前与发件人进行电话沟通。了解详细信息
 Warning:  This message may not be from whom it claims to be. Beware of following any links in it or of providing the sender with any personal information.   Learn more
你可能会发现hotmail的邮件头中有“SenderID”字样，这就是微软这个世界第一大免费邮件提供商的主要防垃圾邮件技术措施。与微软SenderID身分认证过滤技术类似，AOL、Yahoo亦分别提出AOL SPF(Sender Policy Framework)、Yahoo Domain Keys，至于Gmail我目前还没找到具体的防垃圾邮件技术标准。虽然做了如此之多的功课，我的Hotmail和Gmail中垃圾邮件数量还是日趋增多，达每天30封，并且漏判邮件数量也在不断上升。现在的反垃圾邮件策略又由静态走向动态行为特征模式过滤的发展趋势，或许该技术可有效改善今后反垃圾邮件的拦劫率与误判率。
不过，上述的做法可能对僵尸网络垃圾邮件(Zombie Spam)技术毫无影响，因为黑客可透过木马软件四处攻击组成肉鸡网络，接着再透过这些毫不知情的受害电脑滥发垃圾邮件。检查人员抓了半天，所抓到的可能都是毫不知情的代罪羔羊，至于真正元凶，恐怕很难追缉而依旧逍遥法外、继续作乱。
虽然各国政府已经致力于制定反垃圾邮件法，但是很多人都对反垃圾邮件事业持悲观态度。拿美国来说：对已经施行2年的美国CAN-SPAM法案  (Controlling the Assault of Non-Solicited Pornography and Marketing Act) [...]]]></description>
			<content:encoded><![CDATA[<p>在Hotmail和Gmail中如果收到钓鱼邮件，你的邮件头部有可能会显示如下：</p>
<p style="padding-top: 4px">
<p style="margin: 0pt 0pt 0pt 4px; padding: 4px 8px; background: #ff9999 none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial">存在潜在不安全因素的邮件。<span>报告并删除 </span>|<span>允许发件人  </span></p>
<p><img src="http://gfx1.mail.live.com/mail/11.00/beta/i_unsafe.gif" />对邮件进行的 SenderID 检查失败，我们建议您在打开邮件之前与发件人进行电话沟通。<a href="http://by115w.bay115.mail.live.com/mail/ApplicationMainReach.aspx?Control=ReadMessage&#038;ReadMessageID=351eca2f-f428-4939-8075-c16447890e1f&#038;FolderID=00000000-0000-0000-0000-000000000001#" target="_blank">了解详细信息</a></p>
<p style="margin: 0pt 0pt 0pt 4px; padding: 4px 8px; background: #cc0000 none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial"> <strong><font color="#ffffff">Warning:  This message may not be from whom it claims to be. Beware of following any links in it or of providing the sender with any personal information.</font>   <a href="http://mail.google.com/support/bin/answer.py?ctx=%67mail&#038;hl=en&#038;answer=8253" target="_blank" style="color: #c3d9ff">Learn more</a></strong></p>
<p>你可能会发现hotmail的邮件头中有“SenderID”字样，这就是微软这个世界第一大免费邮件提供商的主要防垃圾邮件技术措施。与微软SenderID身分认证过滤技术类似，AOL、Yahoo亦分别提出AOL SPF(Sender Policy Framework)、Yahoo Domain Keys，至于Gmail我目前还没找到具体的防垃圾邮件技术标准。虽然做了如此之多的功课，我的Hotmail和Gmail中垃圾邮件数量还是日趋增多，达每天30封，并且漏判邮件数量也在不断上升。现在的反垃圾邮件策略又由静态走向动态行为特征模式过滤的发展趋势，或许该技术可有效改善今后反垃圾邮件的拦劫率与误判率。</p>
<p>不过，上述的做法可能对僵尸网络垃圾邮件(Zombie Spam)技术毫无影响，因为黑客可透过木马软件四处攻击组成肉鸡网络，接着再透过这些毫不知情的受害电脑滥发垃圾邮件。检查人员抓了半天，所抓到的可能都是毫不知情的代罪羔羊，至于真正元凶，恐怕很难追缉而依旧逍遥法外、继续作乱。</p>
<p>虽然各国政府已经致力于制定反垃圾邮件法，但是很多人都对反垃圾邮件事业持悲观态度。拿美国来说：对已经施行2年的美国CAN-SPAM法案  (Controlling the Assault of Non-Solicited Pornography and Marketing Act) 的效果，美国许多安全大厂与专家的评价是十分不理想。</p>
<p>牛皮癣难治啊！</p>
<p><span style="font-weight: bold">附：</span><br />
中国反垃圾邮件相关网址：<br />
中国互联网协会反垃圾邮件中心：http://www.anti-spam.cn/<br />
违法和不良信息举报中心：http://net.china.cn/chinese/index.htm<br />
国家计算机网络应急技术处理协调中心：http://www.cert.org.cn/<br />
国家计算机病毒应急处理中心：http://www.antivirus-china.org.cn/<br />
国家计算机网络入侵防范中心：http://www.nipc.org.cn/<br />
国家反计算机入侵及防病毒研究中心：http://www.aiav.com.cn/<br />
公安部网络违法案件举报网站：http://www.cyberpolice.cn/common/index.aspx<br />
中国扫黄打非网：http://www.shdf.gov.cn/</p>
<p>其他的国家/地区：<br />
日本<br />
组织：Nippon Information Communication Association<br />
网站：http://www.dekyo.or.jp/<br />
电子邮件地址：meiwaku@dekyo.or.jp</p>
<p>西班牙<br />
组织：Spanish Agency for Data Protection<br />
网站：https://www.agpd.es<br />
电子邮件地址：spacontact@agpd.es</p>
<p>法国<br />
组织：Commission Nationale de l&#8217;Informatique et des Libertés<br />
网站：http://www.cnil.fr/<br />
电子邮件地址：无</p>
<p>荷兰<br />
组织：Onafhankelijke Post en Telecommunicatie Autoriteit (OPTA)<br />
网站：https://www.spamklacht.nl/<br />
电子邮件地址：无（您可以使用 OPTA 网站上的表单来报告垃圾邮件）</p>
<p>意大利<br />
组织：Italian Naming Authority<br />
网站：http://www.romanelmondo.it/sugg/spam.htm<br />
电子邮件地址：ABUSE@NA.nic.it 和抄送地址：info@nic.it</p>
<p>葡萄牙<br />
组织：Commissao Nacional de Proteccao de Dados Pessoais Informatizados<br />
网站：http://www.cnpd.pt/<br />
电子邮件地址：cnpdpi@mail.telepac.pt</p>
<p><span style="font-weight: bold">update:</span>2006.8.2/9:06<br />
若干网络安全词汇翻译</p>
<ul>
<li><font face="Tahoma">病毒 － Virus </font></li>
<li><font face="Tahoma">蠕虫 － Worm </font></li>
<li><font face="Tahoma">木马 － Trojan Horse </font></li>
<li><font face="Tahoma">假病毒 － Hoax </font></li>
<li><font face="Tahoma">恶作剧 － Joke </font></li>
<li><font face="Tahoma">后门 － Backdoor </font></li>
<li><font face="Tahoma">间谍程序 － Spyware </font></li>
<li><font face="Tahoma">规模传播的邮件病毒 － Mass Mailer </font></li>
<li><font face="Tahoma">僵尸程序 － Bot </font></li>
<li><font face="Tahoma">广告软件 － Adware </font></li>
<li><font face="Tahoma">恶意代码/脚本/代码 － Malware/MalScript/MalCode </font></li>
<li><font face="Tahoma">网络钓鱼 － Phishing </font></li>
<li><font face="Tahoma">键盘记录软件 － KeyLogger </font></li>
<li><font face="Tahoma">行为记录软件 － Track Ware </font></li>
<li><font face="Tahoma">窃取程序 － Stealer </font></li>
<li><font face="Tahoma">垃圾邮件 － Spam </font></li>
<li><font face="Tahoma">拨号软件 － Dialer </font></li>
<li><font face="Tahoma">逻辑炸弹 － Logic Bomb </font></li>
<li><font face="Tahoma">漏洞利用代码 － Exploit Code </font></li>
<li><font face="Tahoma">流氓软件</font></li>
<li><font face="Tahoma"></font><a href="http://www.cert.org.cn/articles/tabloid/common/2006062622771.shtml"><font face="Tahoma">勒索软件</font></a><font face="Tahoma"> － </font><font face="Tahoma">Ransomware</font></li>
</ul>
<p>电子邮件地址：cnpdpi@mail.telepac.pt圾邮件事业应该抱乐观态度。</p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://www.behindgfw.com/archives/2009/04/gmail-sender-time-zone.html" title="显示Gmail发信人时区">显示Gmail发信人时区</a></li><li><a href="http://www.behindgfw.com/archives/2009/03/domain-spf-record.html" title="给域名添加SPF记录">给域名添加SPF记录</a></li><li><a href="http://www.behindgfw.com/archives/2008/07/gmail-launched-auto-https-logon.html" title="Gmail开始支持自动https登录">Gmail开始支持自动https登录</a></li><li><a href="http://www.behindgfw.com/archives/2006/04/gmailpdf.html" title="用gmail破解PDF">用gmail破解PDF</a></li><li><a href="http://www.behindgfw.com/archives/2006/02/blog-post_22.html" title="发垃圾邮件的当心了">发垃圾邮件的当心了</a></li></ul><hr />
© 2009 <a href="http://www.behindgfw.com/archives">BehindGFW</a> |
<a href="http://feed.BehindGFW.com/">订阅</a> |
<a href="http://www.behindgfw.com/archives/2006/08/blog-post_01.html">本文链接</a> |
<a href="http://www.behindgfw.com/archives/2006/08/blog-post_01.html#comments">评论</a> |
<a href="http://del.icio.us/post?url=http://www.behindgfw.com/archives/2006/08/blog-post_01.html&title=头痛的垃圾邮件">添加到del.icio.us</a>]]></content:encoded>
			<wfw:commentRss>http://www.behindgfw.com/archives/2006/08/blog-post_01.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>发垃圾邮件的当心了</title>
		<link>http://www.behindgfw.com/archives/2006/02/blog-post_22.html</link>
		<comments>http://www.behindgfw.com/archives/2006/02/blog-post_22.html#comments</comments>
		<pubDate>Wed, 22 Feb 2006 13:04:00 +0000</pubDate>
		<dc:creator>zdpress</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://behindgfw.com/archives/2006/02/%e5%8f%91%e5%9e%83%e5%9c%be%e9%82%ae%e4%bb%b6%e7%9a%84%e5%bd%93%e5%bf%83%e4%ba%86.html</guid>
		<description><![CDATA[　　 《互联网电子邮件服务管理办法》将于3月30日起施行。
据信息产业部有关负责人21日介绍，对于广告电子邮件，管理办法规定，未经互联网电子邮件接收者明确同意，不得向其发送包含商业广告内容的互联网电子邮件。发送包含商业广告内容的电子邮件时，应当在互联网电子邮件标题信息前注明“广告”或“ＡＤ”字样。
管理办法还公布了用户举报垃圾邮件的方式，并规定了接到举报后的处理程序。
管理办法中，对提供互联网电子邮件服务实行市场准入管理，规定了电子邮件服务器ＩＰ地址登记制度，要求互联网电子邮件服务提供者按照技术标准建设服务系统，采取安全防范措施，并对电子邮件服务提出具体要求。违反规定发送电子邮件，将有相应处罚措施。
爽了 ，整死那帮发垃圾邮件的 ！Link
相关文章给域名添加SPF记录头痛的垃圾邮件
© 2009 BehindGFW &#124;
订阅 &#124;
本文链接 &#124;
评论 &#124;
添加到del.icio.us]]></description>
			<content:encoded><![CDATA[<p>　　 《互联网电子邮件服务管理办法》将于3月30日起施行。</p>
<p>据信息产业部有关负责人21日介绍，对于广告电子邮件，管理办法规定，未经互联网电子邮件接收者明确同意，不得向其发送包含商业广告内容的互联网电子邮件。发送包含商业广告内容的电子邮件时，应当在互联网电子邮件标题信息前注明“广告”或“ＡＤ”字样。</p>
<p>管理办法还公布了用户举报垃圾邮件的方式，并规定了接到举报后的处理程序。</p>
<p>管理办法中，对提供互联网电子邮件服务实行市场准入管理，规定了电子邮件服务器ＩＰ地址登记制度，要求互联网电子邮件服务提供者按照技术标准建设服务系统，采取安全防范措施，并对电子邮件服务提出具体要求。违反规定发送电子邮件，将有相应处罚措施。<br />
爽了 ，整死那帮发垃圾邮件的 ！<a href="http://www.iresearch.com.cn/email_service/detail_news.asp?id=26444" class="blines2" target="_blank">Link</a></p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://www.behindgfw.com/archives/2009/03/domain-spf-record.html" title="给域名添加SPF记录">给域名添加SPF记录</a></li><li><a href="http://www.behindgfw.com/archives/2006/08/blog-post_01.html" title="头痛的垃圾邮件">头痛的垃圾邮件</a></li></ul><hr />
© 2009 <a href="http://www.behindgfw.com/archives">BehindGFW</a> |
<a href="http://feed.BehindGFW.com/">订阅</a> |
<a href="http://www.behindgfw.com/archives/2006/02/blog-post_22.html">本文链接</a> |
<a href="http://www.behindgfw.com/archives/2006/02/blog-post_22.html#comments">评论</a> |
<a href="http://del.icio.us/post?url=http://www.behindgfw.com/archives/2006/02/blog-post_22.html&title=发垃圾邮件的当心了">添加到del.icio.us</a>]]></content:encoded>
			<wfw:commentRss>http://www.behindgfw.com/archives/2006/02/blog-post_22.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
