<?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>QLJ's Blog &#187; email</title>
	<atom:link href="http://qlj.sh.cn/tag/email/feed/" rel="self" type="application/rss+xml" />
	<link>http://qlj.sh.cn</link>
	<description>搜集网络信息,风云磅实验</description>
	<lastBuildDate>Thu, 12 Apr 2012 06:50:08 +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>php邮件发送类推荐 PHPMailer:smtp法</title>
		<link>http://qlj.sh.cn/php/20110526/phpmailler/</link>
		<comments>http://qlj.sh.cn/php/20110526/phpmailler/#comments</comments>
		<pubDate>Wed, 25 May 2011 19:48:11 +0000</pubDate>
		<dc:creator>qlj</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://qlj.sh.cn/?p=1118</guid>
		<description><![CDATA[这里说明下 我用的是SMTP 其他方法的请继续 GOOGLE 刚拿到的时候 测试了下发信 无异常 支持HTML 但是SMTP 发送的过程中 需要先于SMTP 服务器建立连接 然后发信 这个过程可能需要1-3秒 可能会导致网页响应较长时间 所以呢. 我们建立一个表用于存放发送的邮件队列 每次发送邮件是将 邮件内容加入表中 然后 用CRON 每分钟检查下表 若存在 则 队列发送 目前在起哄网上使用中.用于发送EMAIL认证邮件 &#160; -- -- 表的结构 `qlj_sendmail` -- &#160; CREATE TABLE IF NOT EXISTS `qlj_sendmail` &#40; `id` INT&#40;11&#41; NOT NULL AUTO_INCREMENT, `email` VARCHAR&#40;50&#41; DEFAULT NULL, `subject` VARCHAR&#40;120&#41; DEFAULT NULL, `body` text, [...]]]></description>
			<content:encoded><![CDATA[<p>这里说明下 我用的是SMTP 其他方法的请继续 GOOGLE<br />
刚拿到的时候 测试了下发信 无异常 支持HTML<br />
但是SMTP 发送的过程中 需要先于SMTP 服务器建立连接 然后发信<br />
这个过程可能需要1-3秒 可能会导致网页响应较长时间<br />
所以呢. 我们建立一个表用于存放发送的邮件队列<br />
每次发送邮件是将 邮件内容加入表中<br />
然后 用CRON 每分钟检查下表 若存在 则 队列发送<br />
目前在<a href="http://www.qihoon.com/" title="起哄网">起哄网</a>上使用中.用于发送EMAIL认证邮件</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">&nbsp;
<span style="color: #808080; font-style: italic;">--</span>
<span style="color: #808080; font-style: italic;">-- 表的结构 `qlj_sendmail`</span>
<span style="color: #808080; font-style: italic;">--</span>
&nbsp;
<span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">TABLE</span> <span style="color: #993333; font-weight: bold;">IF</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">EXISTS</span> <span style="color: #ff0000;">`qlj_sendmail`</span> <span style="color: #66cc66;">&#40;</span>
  <span style="color: #ff0000;">`id`</span> <span style="color: #993333; font-weight: bold;">INT</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">11</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span> <span style="color: #993333; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`email`</span> <span style="color: #993333; font-weight: bold;">VARCHAR</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">50</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">DEFAULT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`subject`</span> <span style="color: #993333; font-weight: bold;">VARCHAR</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">120</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">DEFAULT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`body`</span> text<span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`error`</span> tinyint<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span> <span style="color: #993333; font-weight: bold;">DEFAULT</span> <span style="color: #ff0000;">'0'</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`dateline`</span> <span style="color: #993333; font-weight: bold;">INT</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">11</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">PRIMARY</span> <span style="color: #993333; font-weight: bold;">KEY</span>  <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`id`</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#41;</span> ENGINE<span style="color: #66cc66;">=</span>MyISAM  <span style="color: #993333; font-weight: bold;">DEFAULT</span> CHARSET<span style="color: #66cc66;">=</span>utf8 <span style="color: #993333; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #66cc66;">=</span><span style="color: #cc66cc;">1</span> ;</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">#!/usr/local/php/bin/php -q
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">include_once</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'mysql.class.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">include_once</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'class.phpmailer.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$mail</span>                <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> PHPMailer<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$db</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> DB<span style="color: #339933;">;</span>
<span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">connect</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">IsSMTP</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
	<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Host</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>  <span style="color: #666666; font-style: italic;">//SMTP服务器</span>
	<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Username</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;no-reply@qihoon.com&quot;</span><span style="color: #339933;">;</span>  
	<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Password</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>    
	<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">FromName</span> <span style="color: #339933;">=</span>  <span style="color: #0000ff;">&quot;起哄网信使&quot;</span><span style="color: #339933;">;</span>   
	<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">SMTPAuth</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>          
	<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">From</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Username</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">CharSet</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;utf8&quot;</span><span style="color: #339933;">;</span>           
	<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Encoding</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;base64&quot;</span><span style="color: #339933;">;</span> 
	<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">AddAddress</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sendto_email</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  
<span style="color: #000088;">$result</span><span style="color: #339933;">=</span><span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT id,email,subject,body FROM `qlj_sendmail` where error='0' LIMIT 0 , 30&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">num_rows</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&lt;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #990000;">exit</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span> <span style="color: #339933;">=</span><span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">fetch_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">AltBody</span> <span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/html&quot;</span><span style="color: #339933;">;</span> 
<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Subject</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'subject'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">MsgHTML</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'body'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">AddAddress</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;email&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;full_name&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Send</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #666666; font-style: italic;">//$errorid[]=array(id=&gt;$row['id'],error=&gt;$mail-&gt;ErrorInfo);//本来想记录出错信息的.但是表是INT 不浪费字段了.</span>
	  <span style="color: #000088;">$errid</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span><span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'id'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #000088;">$okid</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span><span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'id'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
  <span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ClearAddresses</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$okid</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&gt;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$sok</span><span style="color: #339933;">=</span><span style="color: #990000;">implode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">','</span><span style="color: #339933;">,</span><span style="color: #000088;">$okid</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;delete from `qlj_sendmail` where id in(<span style="color: #006699; font-weight: bold;">$sok</span>) ;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$errid</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&gt;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$serr</span><span style="color: #339933;">=</span><span style="color: #990000;">implode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">','</span><span style="color: #339933;">,</span><span style="color: #000088;">$errid</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;update `qlj_sendmail` set error='1' where id in(<span style="color: #006699; font-weight: bold;">$serr</span>) ;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>最后在  CRONTAB中 加入  每分钟的计划任务<br />
*/1 * * * * /usr/local/php/bin/php /home/yingouqlj/send_mail.php</p>
<p>参考官方实例.</p>
]]></content:encoded>
			<wfw:commentRss>http://qlj.sh.cn/php/20110526/phpmailler/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>笑谈QQmail的大容量</title>
		<link>http://qlj.sh.cn/web/20100520/qqmail-so-big/</link>
		<comments>http://qlj.sh.cn/web/20100520/qqmail-so-big/#comments</comments>
		<pubDate>Wed, 19 May 2010 19:12:08 +0000</pubDate>
		<dc:creator>qlj</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[qq]]></category>
		<category><![CDATA[腾讯]]></category>

		<guid isPermaLink="false">http://qlj.sh.cn/?p=1082</guid>
		<description><![CDATA[QQ邮箱正可谓巨大。。 大到了。。就想我的硬盘一般。。。 如此存放EMAIL 。。。 要放到啥时候才能满 邮箱容量：128G (已使用1.33G，1%) 受诱惑了吧。 更好的是。。QQ经常在线 用QQMAIL 还能直接收到邮件提醒。。 于是呼 打算代收一下GMAIL 。。 GMAIL 很方便很好用。。 垃圾过滤的也比其他任何一个强（自己用的几个目前是GMAIL 最强吧 不排除更好用的收费邮箱的存在） 就这样填写了自己GMAIL的帐户 密码 才收了几十封就停了 也没在意。 反正是代收。。 方便提醒邮件而已。。 没想到过了2天。。 收到TENCENT发来的邮件 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; 您的邮箱暂时不能收取大邮件 发件人信息 发件人：QQ邮箱管理员 &#60;10000@qq.com&#62; 查看 添加 时 间：2010年5月11日(星期二) 凌晨0:06 纯文本 &#124; 收件人： yingouqlj 附 件：0 个 ( ) 大 小：2.3K 打印 &#124; 显示邮件原文 &#124; 导出为eml文件 &#124; 邮件有乱码？ [...]]]></description>
			<content:encoded><![CDATA[<p>QQ邮箱正可谓巨大。。<br />
大到了。。就想我的硬盘一般。。。<br />
如此存放EMAIL 。。。<br />
要放到啥时候才能满<br />
邮箱容量：<span style="color: #ff0000;">128G</span> (已使用1.33G，1%)<br />
受诱惑了吧。<br />
<span id="more-1082"></span><br />
更好的是。。QQ经常在线 用QQMAIL 还能直接收到邮件提醒。。<br />
于是呼<br />
打算代收一下GMAIL 。。<br />
GMAIL 很方便很好用。。 垃圾过滤的也比其他任何一个强（自己用的几个目前是GMAIL 最强吧 不排除更好用的收费邮箱的存在）<br />
就这样填写了自己GMAIL的帐户 密码<br />
才收了几十封就停了</p>
<p>也没在意。<br />
反正是代收。。 方便提醒邮件而已。。</p>
<p>没想到过了2天。。<br />
收到TENCENT发来的邮件<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
您的邮箱暂时不能收取大邮件    发件人信息<br />
发件人：QQ邮箱管理员 &lt;10000@qq.com&gt;  查看 添加<br />
时   间：2010年5月11日(星期二) 凌晨0:06  纯文本 |<br />
收件人： yingouqlj<br />
附   件：0 个 ( )<br />
大   小：2.3K<br />
打印 | 显示邮件原文 | 导出为eml文件 | 邮件有乱码？ | 转发到群邮件 | 保存到记事本 | 作为附件转发</p>
<p>备　注： 编辑  删除<br />
请在此输入备注&#8230;<br />
取消</p>
<p>请认准此标志，拥有此标志的才是发自腾讯公司的系统邮件。<br />
标记：已将此邮件标记为待办邮件。 取消待办<br />
xcheatcode:0<br />
尊敬的用户，<br />
您好！</p>
<p>近期您的邮箱集中收到了过多的大邮件。可能是邮箱遭遇到恶意邮件大批量攻击。<br />
为了您的邮箱和系统的安全，最近5日内，此邮箱将不再接收大于5M的邮件。<br />
在此期间，对于普通附件不超过5M（超大附件不受限制）的邮件，仍然可以正常收取。在5日之后，邮箱将自动恢复正常。</p>
<p>敬请知晓。谢谢对QQ邮箱的支持。</p>
<p>QQ邮箱管理员<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>HOHO<br />
之前用GMAIL 发了几个 喊附件的邮件 附件在20M</p>
<p>没想到居然是这样。。。<br />
<span style="color: #ff0000;">TENCENT 真抠门。</span>。<br />
<strong>发附件超过5MB 是默认不保存 发件箱的（手动才可以）<br />
所谓的超大附件 也是只能放7天</strong><br />
163 3G邮箱（也自动保存）<br />
GMAIL 7G 也自动保存<br />
TENCENT 居然还会说 太多附件 邮件</p>
<p><a href="http://fashion.cotie.cn/">酷贴时尚</a></p>
]]></content:encoded>
			<wfw:commentRss>http://qlj.sh.cn/web/20100520/qqmail-so-big/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>圾邮件的定义-判断垃圾邮件</title>
		<link>http://qlj.sh.cn/webmarketing/20081231/email-spam/</link>
		<comments>http://qlj.sh.cn/webmarketing/20081231/email-spam/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 15:02:09 +0000</pubDate>
		<dc:creator>qlj</dc:creator>
				<category><![CDATA[网络营销]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[垃圾]]></category>
		<category><![CDATA[邮件]]></category>

		<guid isPermaLink="false">http://qlj.sh.cn/?p=459</guid>
		<description><![CDATA[网站经常发送系统消息,可以增加网站的互动性 可是就怕被邮箱视为垃圾邮件 下面看看垃圾邮件的定义 中国电信对垃圾邮件的定义 2000年8月，中国电信制订了适用于中国电信IP网络所有用户（包括拨号用户、专线用户及其它有业务流经中国电信IP网的用户）的垃圾邮件处理办法。中国电信将垃圾邮件的定义为： “向未主动请求的用户发送的电子邮件广告、刊物或其他资料；没有明确的退信方法、发信人、回信地址等的邮件；利用中国电信的网络从事违反其他ISP的安全策略或服务条款的行为；其它预计会导致投诉的邮件。” 中国互联网协会对垃圾邮件的定义 2002年11月1日，由中国互联网协会、263网络集团和新浪网共同发起，中国互联网协会反垃圾邮件协调小组即日在北京正式成立，国内20多家邮件服务商首批参加了反垃圾邮件协调小组。媒体称此举是向垃圾邮件打响了第一枪，但枪声响过之后，是否能将目标给予严重打击，目前还看不出任何明显效果。中国互联网协会在《中国互联网协会反垃圾邮件规范》中是这样定义垃圾邮件的： “本规范所称垃圾邮件，包括下述属性的电子邮件： （一）收件人事先没有提出要求或者同意接收的广告、电子刊物、各种形式的宣传品等宣传性的电子邮件； （二）收件人无法拒收的电子邮件； （三）隐藏发件人身份、地址、标题等信息的电子邮件； （四）含有虚假的信息源、发件人、路由等信息的电子邮件。”]]></description>
			<content:encoded><![CDATA[<p>网站经常发送系统消息,可以增加网站的互动性</p>
<p>可是就怕被邮箱视为垃圾邮件</p>
<p><span id="more-459"></span></p>
<p>下面看看垃圾邮件的定义</p>
<h4>中国电信对垃圾邮件的定义</h4>
<p>2000年8月，中国电信制订了适用于中国电信IP网络所有用户（包括拨号用户、专线用户及其它有业务流经中国电信IP网的用户）的垃圾邮件处理办法。中国电信将垃圾邮件的定义为：</p>
<p>“向未主动请求的用户发送的电子邮件广告、刊物或其他资料；没有明确的退信方法、发信人、回信地址等的邮件；利用中国电信的网络从事违反其他ISP的安全策略或服务条款的行为；其它预计会导致投诉的邮件。”</p>
<h4>中国互联网协会对垃圾邮件的定义</h4>
<p>2002年11月1日，由中国互联网协会、263网络集团和新浪网共同发起，中国互联网协会反垃圾邮件协调小组即日在北京正式成立，国内20多家邮件服务商首批参加了反垃圾邮件协调小组。媒体称此举是向垃圾邮件打响了第一枪，但枪声响过之后，是否能将目标给予严重打击，目前还看不出任何明显效果。中国互联网协会在《中国互联网协会反垃圾邮件规范》中是这样定义垃圾邮件的：</p>
<p>“本规范所称垃圾邮件，包括下述属性的电子邮件：<br />
（一）收件人事先没有提出要求或者同意接收的广告、电子刊物、各种形式的宣传品等宣传性的电子邮件；<br />
（二）收件人无法拒收的电子邮件；<br />
（三）隐藏发件人身份、地址、标题等信息的电子邮件；<br />
（四）含有虚假的信息源、发件人、路由等信息的电子邮件。”</p>
]]></content:encoded>
			<wfw:commentRss>http://qlj.sh.cn/webmarketing/20081231/email-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

