<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>邮件技术资讯网博客站-5DMail.Net BLOG</title>
<link>http://blog.5dmail.net/</link>
<description>邮件系统,EMAIL SERVER,邮件服务器,邮件原理协议,Exchange Server ,维护管理,教程,安装,Imail Server,MDaemon,Loutes Domino</description>
<generator>Oblog 3.0</generator>
<webMaster>cndgm@163.com</webMaster>
<item>
<title><![CDATA[Exchange Server 缩略语不完全汇总]]></title>
<link>http://blog.5dmail.net/user1/1/200916181858.html</link>
<author>cndgm</author>
<pubDate>2009-1-6 18:18:58</pubDate>
<description><![CDATA[<P>今天看资料，找到一个Exchange Server 缩略语不完全汇总，分享一下！欢迎大家补充：（可能有不合适的字母，Blog系统不让发，所以大家看论坛下面的帖子）</P><A href="http://www.5dmail.net/bbs/thread-180668-1-1.html">http://www.5dmail.net/bbs/thread-180668-1-1.html</A>
<P>1.<A target=_blank href="http://www.5dmail.net/html/2007-3-23/2007323235321.htm">Exchange 2007 术语表</A></P>
<P>2.<A href="http://www.microsoft.com/language/mtcf/mtcf_home.aspx?s=1&amp;langid=1328&amp;cult=zh-cn">MTCF for Excange 2007</A></P>
<P>3.<A href="http://www.microsoft.com/language/zh/cn/default.mspx">微软术语门户网站</A></P>]]></description>
</item><item>
<title><![CDATA[: 设备、Linux 文件系统与文件系统层次标准（FHS）]]></title>
<link>http://blog.5dmail.net/user1/70/200914114146.html</link>
<author>aku1</author>
<pubDate>2009-1-4 11:41:46</pubDate>
<description><![CDATA[<P>在本节中，学习以下内容：</P>
<P>硬链接 <BR>符号链接 </P>
<P>硬链接</P>
<P>在主题 103 的教程 “LPI 101 考试准备（主题 103）：GNU 和 UNIX 命令” 中学过，文件或目录包含在块 的集合中，关于文件或目录的信息包含在 inode 中。 </P>
<P>硬链接 是指向 inode 的指针。所以，文件名实际上是指向包含文件信息的 inode 的链接。可以使用 ls 命令的 -i 选项显示文件和目录项的 inode 号。</P>
<P>可以使用 ln 命令为现有文件创建其他硬链接（但是对于目录不能这么做，尽管系统会将 . 和 .. 设置为硬链接）。如果一个 inode 有多个硬链接，那么只有当链接计数减少到零时 inode 才会被删除。</P>
<P>清单 58 显示如何创建文件，然后创建它的硬链接。它还说明即使删除了原来的文件名，第二个硬链接会使 inode 不被清除。 </P>
<P><BR>清单 58. 硬链接</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> echo testing &gt; file1<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> ls -l file*<BR>-rw-r--r--&nbsp; 1 ian ian 8 2005-12-26 15:35 file1<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> ln file1 file2<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> ls -l file*<BR>-rw-r--r--&nbsp; 2 ian ian 8 2005-12-26 15:35 file1<BR>-rw-r--r--&nbsp; 2 ian ian 8 2005-12-26 15:35 file2<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> rm file1<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> ls -l file*<BR>-rw-r--r--&nbsp; 1 ian ian 8 2005-12-26 15:35 file2<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> cat file2<BR>testing<BR>&nbsp;</P>
<P><BR>硬链接只能在一个特定的文件系统中存在。硬链接不能跨越文件系统，因为它们要引用 inode 号，而 inode 号只在一个文件系统中是惟一的。</P>
<P>查找硬链接</P>
<P>如果需要查明哪些文件链接到某个 inode，那么可以使用 find 命令和 -samefile 选项加一个文件名，或者 -inum 选项加一个 inode 号，如清单 59 所示。 </P>
<P><BR>清单 59. 查找硬链接</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> ln file2 file3<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> ls -il file2<BR>172 -rw-r--r--&nbsp; 2 ian ian 8 2005-12-26 15:35 file2<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> find . -samefile file2<BR>./file2<BR>./file3<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> find . -inum 172<BR>./file2<BR>./file3<BR>&nbsp;</P>
<P><BR>&nbsp;</P>
<P>&nbsp;回页首 <BR>&nbsp;</P>
<P>&nbsp;</P>
<P>符号链接</P>
<P>Linux 系统中使用的文件系统链接的另一种形式是符号链接（常常简称为 symlink）。在这种形式中，链接引用另一个文件系统对象的名称，而不是它的 inode。符号链接可以引用目录，也可以引用另一个文件系统上的文件。它们常常用于为系统命令提供别名。在长目录清单中，如果一个对象的第一个字符是小写的 l，那么它就是符号链接。如清单 60 所示。 </P>
<P><BR>清单 60. 符号链接示例</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> ls -l /sbin/mkfs.*<BR>-rwxr-xr-x&nbsp; 1 root root&nbsp; 14160 2005-09-20 12:43 /sbin/mkfs.cramfs<BR>-rwxr-xr-x&nbsp; 3 root root&nbsp; 31224 2005-08-23 09:25 /sbin/mkfs.ext2<BR>-rwxr-xr-x&nbsp; 3 root root&nbsp; 31224 2005-08-23 09:25 /sbin/mkfs.ext3<BR>-rwxr-xr-x&nbsp; 2 root root&nbsp; 55264 2005-06-24 07:48 /sbin/mkfs.jfs<BR>-rwxr-xr-x&nbsp; 1 root root&nbsp; 13864 2005-09-20 12:43 /sbin/mkfs.minix<BR>lrwxrwxrwx&nbsp; 1 root root&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7 2005-12-14 07:40 /sbin/mkfs.msdos -&gt; mkdosfs<BR>-rwxr-xr-x&nbsp; 2 root root 241804 2005-05-11 09:40 /sbin/mkfs.reiser4<BR>-rwxr-xr-x&nbsp; 2 root root 151020 2004-11-25 21:09 /sbin/mkfs.reiserfs<BR>lrwxrwxrwx&nbsp; 1 root root&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7 2005-12-14 07:40 /sbin/mkfs.vfat -&gt; mkdosfs<BR>-rwxr-xr-x&nbsp; 1 root root 303788 2005-04-14 01:27 /sbin/mkfs.xfs<BR>&nbsp;</P>
<P><BR>除了 l 类型之外，可以在右边看到 -&gt;，后面是这个链接引用的名称。例如，mkfs.vfat 命令是 mkdosfs 命令的符号链接。在 /sbin 和其他系统目录中会看到许多这样的链接。符号链接的另一个迹象是，它的大小等于链接目标名的字符数。</P>
<P>可以使用 ln 命令加 -s 选项创建符号链接，如清单 61 所示。 </P>
<P><BR>清单 61. 创建符号链接</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> touch file5<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> ln -s file5 file6<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> ln -s file5 file7<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> ls -l file*<BR>-rw-r--r--&nbsp; 2 ian ian 8 2005-12-26 15:35 file2<BR>-rw-r--r--&nbsp; 2 ian ian 8 2005-12-26 15:35 file3<BR>-rw-r--r--&nbsp; 1 ian ian 0 2005-12-26 17:40 file5<BR>lrwxrwxrwx&nbsp; 1 ian ian 5 2005-12-26 17:40 file6 -&gt; file5<BR>lrwxrwxrwx&nbsp; 1 ian ian 5 2005-12-26 17:40 file7 -&gt; file5<BR>&nbsp;</P>
<P><BR>注意，目录清单中的链接计数没有更新。删除链接并不影响目标文件。符号链接并不阻止文件被删除；如果目标文件被转移或删除了，那么符号链接就断了。因此，许多系统在目录清单中使用颜色，常常用淡蓝色表示好链接，用红色表示断裂的链接。</P>
<P>查找符号链接</P>
<P>如果需要查明哪些文件符号链接到某个文件，那么可以使用 find 命令和 -lname 选项加一个文件名，如清单 62 所示。链接可以使用相对路径或绝对路径，所以可能需要在要匹配的文件名前面加一个星号。</P>
<P><BR>清单 62. 查找符号链接</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> mkdir linktest1<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> ln -s ~/file3 linktest1/file8<BR><A href="mailto:.ian@pinguino:~$">.ian@pinguino:~$</A> find . -lname "*file3"<BR>./linktest1/file8<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> find . -lname "*file5"<BR>./file7<BR>./file6<BR>&nbsp;</P>
<P><BR>路径和符号链接</P>
<P>在前面看到的大多数例子中，符号链接与目标在同一个目录中，链接中的路径是相对路径。在清单 62 中，我们在 linktest1 子目录中创建了一个链接，这个链接使用了绝对目标（~/file3）。在创建符号链接时，需要考虑使用相对路径还是绝对路径，因为这两者都是允许的。图 3 说明了将一组文件和符号链接转移到子目录中的效果。 </P>
<P><BR>图 3. 符号链接和路径<BR>&nbsp;</P>
<P>红色表示 linktest1/file8 链接现在断裂了。这很正常，因为现在没有 ~/file3 了。但是 file5 的两个符号链接仍然是好的，因为文件仍然在同样的相对位置，尽管它和它的两个链接已经被移动了。关于在符号链接中是使用相对路径还是绝对路径，并没有硬性规定和通用的规则；这个问题在一定程度上取决于链接或目标是否有可能被转移。在建立符号链接时要考虑这个问题。</P>
<P>断裂的符号链接</P>
<P>最后一点与断裂的符号链接有关。读这个文件的尝试会失败，因为文件不存在。但是，如果对目标文件有适当的权限，那么写文件的尝试会成功完成，如清单 63 所示。</P>
<P><BR>清单 63. 读和写断裂的符号链接</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> cat linktest1/file8<BR>cat: linktest1/file8: No such file or directory<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> echo "test file 8" &gt;&gt; linktest1/file8<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> cat linktest1/file8<BR>test file 8<BR><A href="mailto:ian@pinguino:~$">ian@pinguino:~$</A> find . -name file3<BR>./linktest2/file3<BR>./file3<BR>&nbsp;<BR></P>]]></description>
</item><item>
<title><![CDATA[第一次炒牛肉不是很成功]]></title>
<link>http://blog.5dmail.net/user1/70/2009112089.html</link>
<author>aku1</author>
<pubDate>2009-1-1 20:08:09</pubDate>
<description><![CDATA[<P>特到网上补课</P>
<P>&nbsp;</P>
<P>嫩炒牛肉片 <BR>原料：<BR><BR>牛外脊肉200克，菜油、香油、酱油、绍酒、味精、淀粉、葱姜丝、花椒水、精盐各适量。 <BR><BR>做法：<BR><BR>1.将牛肉顶刀切1厘米宽、2厘米长的薄片，放在碗里，加适量淀粉和少量水，抓拌均匀。 <BR><BR>2.炒锅置旺火上，加底油烧热，肉片下锅，用筷子划开炒熟，待肉片炒至相互分开时，放入葱姜丝、绍酒、酱油、精盐、味精、花椒水，颠炒几下，迅速勾芡，淋上香油，装盘即可。 <BR><BR>特点：<BR><BR>鲜嫩味美。 <BR><BR>银丝牛肉 <BR>原料：<BR><BR>嫩牛肉125克，细粉丝25克，鸡蛋清1个，盐1克，湿淀粉25克，葱、姜末各5克，料酒10克，味精1克，白胡椒粉1克，高汤75克，香油少许；猪油500克，酱油适量。 <BR><BR>做法：<BR><BR>1.牛肉切成0.5厘米见方、3厘米长的丝，用盐、鸡蛋清、湿淀粉抓匀。 <BR><BR>2.锅内倒入油，旺火将油烧至七八成热时，将粉丝弄成圆形下锅炸，粉丝涨发成白色，捞出放在盘内，待用。然后，将抓好糊的肉丝下锅，待肉丝渐白，八成熟时捞出。 <BR><BR>3.锅内留10克热油，放入过油的肉丝，加入葱、姜末、料酒、味精、酱油、白胡椒粉、高汤，开后用湿淀粉勾芡，淋入香油，盛盘食时，倒在炸好的粉丝中间即成。 <BR><BR>特点：<BR><BR>白红相间，形如菊花，肉质软嫩而鲜；粉条又酥又香，别有风味。<BR><BR><BR>香豉牛肉片 <BR>原料：<BR><BR>牛里脊肉400克，虾油10克，芹菜心150克，黄酒35克，香豉25克，味精3克，姜末1O克，酱油10克，辣椒酱25克，清汤100克，湿淀粉25克，香油5克，干淀粉15克，鸡蛋清2个，花生油1000克(实耗75克)，精盐2克。<BR><BR>做法：<BR><BR>1.将牛里脊肉洗净，剔去老筋，切薄片，放碗中，加精盐、鸡蛋清、干淀粉拌匀上劲；芹菜心洗净，切成3厘米长的段。 <BR><BR>2.炒锅上旺火，倒入花生油烧至五成热，下牛肉丝滑散至刚熟，倒入漏勺沥去油。 <BR><BR>3.原锅复上旺火上，放入香豉、姜末、辣椒酱略煸片刻，再倒入芹菜炒几下，下黄酒、清汤、味精、 虾油、酱油，投入牛肉片，用湿淀粉勾芡，淋入香油迅速炒匀即成。 <BR><BR>特点：<BR><BR>香辣，嫩爽。 <BR><BR>蚝油咖喱牛肉片 <BR>原料：<BR><BR>熟牛肉125克，姜末10克，洋葱25克，辣椒末10克，蒜末10克，咖喱粉10克，味精2克，料酒25克，精盐1克，糖5克，湿淀粉25克，花生油500克(实耗95克)，高汤适量。 <BR><BR>做法：<BR><BR>1.将碗内放入料酒、味精、糖、盐、淀粉、高汤少许，调成芡汁，熟牛肉切块放入碗内。 <BR><BR>2.锅内放油，烧到五六成热，将牛肉放入，用手勺拨散，稍滑一下，油滗出，炒锅回火上，加油25克烧热，放入咖喱粉，炒出香味，下姜末、洋葱末、辣椒末、蒜末略炒，将滑好的牛肉倒回，加料酒炒片刻，迅速把调好的芡汁倒入，颠翻几下，出锅装盘即成。 <BR><BR>特点：<BR><BR>牛肉爽滑，别有风味。<BR><BR><BR>干煽牛肉丝 <BR>原料：<BR><BR>主料 瘦嫩牛肉600克，芹芽60克。调料 植物油120克，豆瓣辣椒酱30，辣椒粉6克，白糖8克，料酒15克，青蒜段30克，姜丝(去皮)6克，盐、酱油、醋、味精适量。 <BR><BR>做法：<BR><BR>((1) 将牛肉筋膜剥除掉，片成0.1～0.2厘米厚的薄片，横着肉纹切成5 ～6厘米长的细丝。把芹芽的根、筋、叶择去，洗干净后切成2～3厘米长的段(过粗的劈开)。将豆瓣辣椒酱剁成细泥。 <BR><BR>(2) 用旺火烧热炒勺，倒入植物油烧到6～7成热，放入牛肉丝快速煽炒几下，加入盐，再炒至酥脆，肉变成枣红地，再加入豆瓣辣椒酱泥和辣椒粉，再颠炒几下。<BR><BR>(3) 然后顺次加入白糖、料酒、酱油、味精，翻炒均匀，再加入芹菜、青蒜、姜丝、拌炒几下后，喷点醋颠翻几下盛出，在上面撇上花椒即可。 <BR><BR>特点：<BR><BR>肉丝色泽酱红酥香，芹菜嫩绿清脆，麻辣咸甜味美，促进食欲佳肴。 <BR><BR>爆牛肉 <BR>原料： <BR><BR>主料：牛里脊肉250克。 <BR><BR>调料：香油500克(实耗约60克)，湿淀粉25克，蒜6克，蒜末3克，料酒少许，酱油60克，醋少许，葱斜段20克，姜末2克。 <BR><BR>做法：<BR><BR>(1) 将牛里脊肉上筋膜剥除掉，切成3厘米长的薄片，加入酱油(30克)、湿淀粉、清水(30～35克)拌匀，把青蒜切成3厘米长的长段。 <BR><BR>(2)炒勺内倒入香油，在旺火上烧到冒烟，倾入拌好的肉片，爆15～20秒钟后倒入漏勺里沥出油。 <BR><BR>(3) 炒勺再放回旺火上，加入香油(30克)烧热，再加上葱斜段、姜末、蒜末，急炒成黄色。 <BR><BR>(4) 再将爆好的肉片倒入，随即放入料酒、酱油、醋、水(少许)，再炒15～20秒钟，撒上青蒜段即成。 <BR><BR>特点：<BR><BR>色泽鲜亮，肉片松散，软嫩清香，爽口不腻。</P>]]></description>
</item><item>
<title><![CDATA[使用ORF拒绝自己发给自己的垃圾邮件]]></title>
<link>http://blog.5dmail.net/user1/1/200812301869.html</link>
<author>cndgm</author>
<pubDate>2008-12-30 18:06:09</pubDate>
<description><![CDATA[<SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">最近的一个月，一种很古老的发送垃圾邮件的把戏再一次上演了，它叫自我发送垃圾邮件，主要的特征是垃圾邮件的发件人和收件人都是同一个地址，表面上看起来这封邮件像是自己发给自己的邮件。但奇怪的是往往最简单的把戏却很容易通过垃圾邮件的过滤轻松过关。有很多深受其害的管理员四处打听解决的办法。其实这类垃圾邮件能发送成功原因是多种的，我个人发现最“过份”的原因是邮件服务器管理员把自己的电子邮件域加到了白名单。<SPAN lang=EN-US><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></SPAN>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">那么在<SPAN lang=EN-US>ORF</SPAN>中如何才能防止这类垃圾邮件呢？我猜大家第一个想到的是<SPAN lang=EN-US>SPF</SPAN>，不错，<SPAN lang=EN-US>SPF</SPAN>对于这类垃圾邮件很有效，但实际的情况是，在国内很多域名都是注册商提供<SPAN lang=EN-US>DNS Server</SPAN>的，很多注册商提供的域名管理网页并不支持增加<SPAN lang=EN-US>SPF</SPAN>记录。为难了？头痛了？别急，在<SPAN lang=EN-US>ORF</SPAN>中防止这类垃圾邮件其实方法很简单－－在<SPAN lang=EN-US>Sender Blacklist </SPAN>（发件人黑名单）加入自己邮件服务器上的电子邮件域。没错，我们建议就是要反其道而行之，这样你就可以轻松的战胜这类垃圾邮件。具体的设定方法如下：<SPAN lang=EN-US><BR>1.</SPAN>打开<SPAN lang=EN-US>ORF</SPAN>的<SPAN lang=EN-US>Administrator Tool</SPAN>－》<SPAN lang=EN-US>Configuration</SPAN>－》<SPAN lang=EN-US>Tests</SPAN>－》<SPAN lang=EN-US>Recipient Blacklist</SPAN>，并确定选择的是<SPAN lang=EN-US>Blacklist Only the list below</SPAN>（仅阻止以下列表项）如图：<SPAN lang=EN-US><BR style="mso-special-character: line-break"><BR style="mso-special-character: line-break"><o:p></o:p></SPAN></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-no-proof: yes" lang=EN-US><IMG src="http://www.5dmail.net/pic/5dmail-2008-12-30-0008.gif"></SPAN><SPAN style="http://blog.5dmail.net/FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><BR>2.</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">点击上图右下角的“<SPAN lang=EN-US>New</SPAN>”，在<SPAN lang=EN-US>Email Address/Mask</SPAN>中输入<SPAN lang=EN-US>*@5dmail.net( </SPAN>其中<SPAN lang=EN-US>@</SPAN>后来你公司邮件地址后缀<SPAN lang=EN-US>)</SPAN>，并选择“<SPAN lang=EN-US>Email address or wildcard expression</SPAN>”（</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; COLOR: black; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 'Courier New'; mso-font-kerning: 0pt">电子邮件地址或通配符表达式</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">） 。为了验证表达式是否有效，我还建议你在<SPAN lang=EN-US>Test Address</SPAN>中输入一个你邮件服务器上用户的邮件地址进行测试，如果为“<SPAN lang=EN-US>Match</SPAN>”则为有效。如图：<SPAN lang=EN-US><BR style="mso-special-character: line-break"><BR style="mso-special-character: line-break"></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; COLOR: black; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 'Courier New'; mso-font-kerning: 0pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-no-proof: yes" lang=EN-US><IMG src="http://www.5dmail.net/pic/5dmail-2008-12-30-0001.gif"></SPAN><SPAN style="http://blog.5dmail.net/FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US>3.</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">点击“<SPAN lang=EN-US>OK</SPAN>”以确定。<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US>4.</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">点击菜单栏“<SPAN lang=EN-US>Cofiguration</SPAN>－》<SPAN lang=EN-US>Save and Update Configuration</SPAN>“以保存和更新配置。<SPAN lang=EN-US><BR style="mso-special-character: line-break"><BR style="mso-special-character: line-break"><o:p></o:p></SPAN></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-no-proof: yes" lang=EN-US><IMG src="http://www.5dmail.net/pic/5dmail-2008-12-30-0002.gif"></SPAN><SPAN style="http://blog.5dmail.net/FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US>5.</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">这样就可以拒绝自己发给自己的垃圾邮件了。<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">故事讲到这里，很多朋友可能会问一个问题，这样做了以后，会不会把我公司合法的用户往外发的邮件也阻止掉了呢？答案是否定的。首先<SPAN lang=EN-US>ORF</SPAN>只对由外到内的邮件进行过滤，不过滤从内部到外部的邮件。其次，因为内部用户直接连接邮件邮件服务器提交邮件（比如使用<SPAN lang=EN-US>outlook MAPI</SPAN>的方式连接<SPAN lang=EN-US>Exchange</SPAN>）不需要连接<SPAN lang=EN-US>SMTP</SPAN>，所以不会过滤内部用户发送的邮件。<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">另一个问题随之而来，是当用户出差在外，并且使用<SPAN lang=EN-US>outlook</SPAN>或<SPAN lang=EN-US>Outlook Express</SPAN>的<SPAN lang=EN-US>POP3+SMTP</SPAN>方式收发邮件时，它是需要连接<SPAN lang=EN-US>SMTP</SPAN>的，会不会被过滤呢？答案还是否定的，但是我们建议你检查两个设定：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 18pt; mso-char-indent-count: 0; mso-list: l2 level1 lfo1" class=MsoListParagraph><EM><SPAN style="FONT-STYLE: normal; FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 微软雅黑; mso-ansi-language: EN; mso-bidi-font-style: italic" lang=EN><SPAN style="mso-list: Ignore">1.<SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></EM><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">在</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-ansi-language: EN" lang=EN>Configuration </SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-ansi-language: EN">－》<SPAN lang=EN> Global </SPAN>－》<SPAN lang=EN>Intermediate Hosts</SPAN><EM><SPAN style="FONT-STYLE: normal; FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-bidi-font-style: italic">中增加你中继网关的<SPAN lang=EN>IP</SPAN>地址（公网<SPAN lang=EN>IP</SPAN>即可）。设定位置如图：<SPAN lang=EN><o:p></o:p></SPAN></SPAN></EM></SPAN></P>
<P style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 18pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-no-proof: yes" lang=EN-US><IMG src="http://www.5dmail.net/pic/5dmail-2008-12-30-0003.gif"></SPAN><EM><SPAN style="http://blog.5dmail.net/FONT-STYLE: normal; FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN; mso-bidi-font-style: italic" lang=EN><o:p></o:p></SPAN></EM></P>
<P style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 18pt; mso-char-indent-count: 0" class=MsoListParagraph><EM><SPAN style="FONT-STYLE: normal; FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN; mso-bidi-font-style: italic" lang=EN><o:p>&nbsp;</o:p></SPAN></EM></P>
<P style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 18pt; mso-char-indent-count: 0; mso-list: l2 level1 lfo1" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore">2.<SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-ansi-language: EN" lang=EN>Configuration </SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-ansi-language: EN">－》<SPAN lang=EN> Global </SPAN>－》<SPAN lang=EN>Miscellaneous</SPAN>－》<EM><SPAN style="FONT-STYLE: normal; FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-bidi-font-style: italic" lang=EN>Exclude authenticated clients from filtering</SPAN></EM><EM><SPAN style="FONT-STYLE: normal; FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-bidi-font-style: italic">已勾选。这个设定用来排除过滤使用客户端<SPAN lang=EN>(</SPAN>比如</SPAN></EM></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US>outlook</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">或<SPAN lang=EN-US>Outlook Express</SPAN></SPAN><EM><SPAN style="FONT-STYLE: normal; FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN; mso-bidi-font-style: italic" lang=EN-US> </SPAN></EM><EM><SPAN style="FONT-STYLE: normal; FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN; mso-bidi-font-style: italic" lang=EN>)</SPAN></EM><EM><SPAN style="FONT-STYLE: normal; FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN; mso-bidi-font-style: italic">并已通过身份验证的用户发送的邮件。</SPAN></EM><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-no-proof: yes" lang=EN-US><IMG src="http://www.5dmail.net/pic/5dmail-2008-12-30-0004.gif"></SPAN><SPAN style="http://blog.5dmail.net/FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">最后，我们需要提醒一个很重要的事项。基于<SPAN lang=EN-US>ORF</SPAN>白名单优于黑名单的原理。对于已经启用了<SPAN lang=EN-US>Automatic Sender Whitelist</SPAN>（自动发件人白名单）并且有使用<SPAN lang=EN-US>outlook</SPAN>或<SPAN lang=EN-US>Outlook Express</SPAN>的<SPAN lang=EN-US>POP3+SMTP</SPAN>方式收发邮件的情况，因为如果一封邮件的收件人包括自己域名的地址<SPAN lang=EN-US>,</SPAN>它也会被加到自动发件人白名单中<SPAN lang=EN-US>, </SPAN>这将导致昌用你公司某用户的地址向你服务器发送的垃圾邮件，因为白名单而被放行<SPAN lang=EN-US>.</SPAN>所以我们需要把本地的域排除在自动发件人白名单之外<SPAN lang=EN-US>.</SPAN>设定方法如下：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US>1.</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-ansi-language: EN" lang=EN>Configuration </SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-ansi-language: EN">－》<SPAN lang=EN> Tests </SPAN>－》<SPAN lang=EN> Auto sender whitelist</SPAN>－》<SPAN lang=EN> Settings</SPAN>－》<SPAN lang=EN>Check Exceptions</SPAN>－》<SPAN lang=EN>Edit List </SPAN>－》<SPAN lang=EN>New</SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-no-proof: yes" lang=EN-US><IMG src="http://www.5dmail.net/pic/5dmail-2008-12-30-0005.gif"></SPAN><SPAN style="http://blog.5dmail.net/FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US>2. </SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">点击 “<SPAN lang=EN-US>New</SPAN>”，在<SPAN lang=EN-US>Email Address/Mask</SPAN>中输入<SPAN lang=EN-US>*@5dmail.net( </SPAN>其中<SPAN lang=EN-US>@</SPAN>后来你公司邮件地址后缀<SPAN lang=EN-US>)</SPAN>，并选择“<SPAN lang=EN-US>Email address or wildcard expression</SPAN>”（</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; COLOR: black; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 'Courier New'; mso-font-kerning: 0pt">电子邮件地址或通配符表达式</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">） 。为了验证表达式是否有效，我还建议你在<SPAN lang=EN-US>Test Address</SPAN>中输入一个你邮件服务器上用户的邮件地址进行测试，如果为“<SPAN lang=EN-US>Match</SPAN>”则为有效。如图：<SPAN lang=EN-US><BR style="mso-special-character: line-break"><BR style="mso-special-character: line-break"></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; COLOR: black; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 'Courier New'; mso-font-kerning: 0pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-no-proof: yes" lang=EN-US><IMG src="http://www.5dmail.net/pic/5dmail-2008-12-30-0001.gif"></SPAN><SPAN style="http://blog.5dmail.net/FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">注意：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 18pt; mso-char-indent-count: 0; mso-list: l1 level1 lfo2" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 微软雅黑; mso-ansi-language: EN" lang=EN><SPAN style="mso-list: Ignore">1.<SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US>Sender </SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-ansi-language: EN" lang=EN>Exceptions</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-ansi-language: EN">功能只在<SPAN lang=EN>ORF 4.2</SPAN>中提供，如果是旧版用户需要升级<SPAN lang=EN>ORF</SPAN>版本。<SPAN lang=EN><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 18pt; mso-char-indent-count: 0; mso-list: l1 level1 lfo2" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore">2.<SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">如果你不想升级，可以考虑使用以下两种方法：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 36pt; mso-char-indent-count: 0; mso-list: l3 level1 lfo3" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore">A．</SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">暂时停用<SPAN lang=EN-US>Automatic Sender Whitelist</SPAN>功能，<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 36pt; mso-char-indent-count: 0; mso-list: l3 level1 lfo3" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore">B．<SPAN style="FONT: 7pt 'Times New Roman'"> </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">使用</SPAN><SPAN style="FONT-FAMILY: 宋体; FONT-SIZE: 11.5pt; mso-ascii-font-family: Calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: Calibri; mso-hansi-theme-font: minor-latin">自动发件人白名单查看工具</SPAN><SPAN style="FONT-SIZE: 11.5pt" lang=EN-US><FONT face=Calibri>(</FONT><A target=_blank href="http://www.5dmail.net/bbs/thread-175860-1-1.html"><SPAN style="http://blog.5dmail.net/COLOR: #006699; TEXT-DECORATION: none; text-underline: none"><FONT face=Calibri>http://www.5dmail.net/bbs/thread-175860-1-1.html</FONT></SPAN></A><FONT face=Calibri>)</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; FONT-SIZE: 11.5pt; mso-ascii-font-family: Calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: Calibri; mso-hansi-theme-font: minor-latin">来手动删除</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 18pt; mso-char-indent-count: 0; mso-list: l1 level1 lfo2" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore">3.<SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">建议大家在配置前把<SPAN lang=EN-US>Automatic Sender Whitelist</SPAN>的数据库字段做一次清空动作，以删除已经存在于<SPAN lang=EN-US>Automatic Sender Whitelist</SPAN>的数据库的条目。操作如下图：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 18pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-no-proof: yes" lang=EN-US><IMG src="http://www.5dmail.net/pic/5dmail-2008-12-30-0006.gif"></SPAN><SPAN style="http://blog.5dmail.net/FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">当然，做为结尾，虽然可能性很少，但我必须提醒大家，检查一下，有没有在<SPAN lang=EN-US>ORF</SPAN>中把内部的某个邮件地址或是整个域加到收件人白名单。如图：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-no-proof: yes" lang=EN-US><IMG src="http://www.5dmail.net/pic/5dmail-2008-12-30-0007.gif"></SPAN><SPAN style="http://blog.5dmail.net/FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">如果没有使用<SPAN lang=EN-US>ORF的朋友</SPAN>，请参考下面的信息开始试用ORF：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 18pt; mso-char-indent-count: 0; mso-list: l0 level1 lfo4" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore">1.<SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">下载地址：<SPAN lang=EN-US><A href="http://www.vamsoft.cn/download.asp">http://www.vamsoft.cn/download.asp</A><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 18pt; mso-char-indent-count: 0; mso-list: l0 level1 lfo4" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore">2.<SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">安装配置教程：<SPAN lang=EN-US><A href="http://www.vamsoft.cn/orfee_install.asp">http://www.vamsoft.cn/orfee_install.asp</A><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 18pt; mso-char-indent-count: 0; mso-list: l0 level1 lfo4" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore">3.<SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US>ORF</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">论坛：<SPAN lang=EN-US><A href="http://www.5dmail.net/bbs/forum-117-2.html">http://www.5dmail.net/bbs/forum-117-2.html</A><o:p></o:p></SPAN></SPAN></P>]]></description>
</item><item>
<title><![CDATA[linux 文件颜色的含义]]></title>
<link>http://blog.5dmail.net/user1/70/2008122322202.html</link>
<author>aku1</author>
<pubDate>2008-12-23 22:20:02</pubDate>
<description><![CDATA[<TABLE style="BORDER-COLLAPSE: collapse; WORD-WRAP: break-word" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle height=25><FONT style="FONT-SIZE: 14pt" color=#02368d><B>linux 文件颜色的含义</B></FONT><BR></B></FONT></TD></TR>
<TR>
<TD bgColor=#d2dee2 height=1></TD></TR>
<TR>
<TD bgColor=#ffffff height=1></TD></TR>
<TR>
<TD align=middle>
<TABLE style="BORDER-COLLAPSE: collapse; WORD-WRAP: break-word" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="100%">
<DIV id=art style="MARGIN: 15px" width="100%">
<DIV>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: 19.2pt; TEXT-ALIGN: center; mso-pagination: widow-orphan" align=center><FONT size=3><SPAN lang=EN-US style="FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">linux</SPAN><SPAN lang=EN-US style="FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-bidi-font-size: 10.5pt"> </SPAN><SPAN style="FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">文件</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-bidi-font-size: 10.5pt">颜色</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">的</SPAN></FONT><SPAN style="FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-bidi-font-size: 10.5pt"><FONT size=3>含义</FONT><FONT size=3><SPAN lang=EN-US> <BR></SPAN><SPAN style="COLOR: blue">蓝色</SPAN>代表目录</FONT><SPAN lang=EN-US><BR></SPAN><FONT size=3><SPAN style="COLOR: lime">绿色</SPAN>代表可执行文件</FONT><SPAN lang=EN-US><BR></SPAN><FONT size=3><SPAN style="COLOR: red">红色</SPAN>表示压缩文件</FONT><SPAN lang=EN-US><BR></SPAN><FONT size=3><SPAN style="COLOR: paleturquoise">浅蓝色</SPAN>表示链接文件</FONT><SPAN lang=EN-US><BR></SPAN><FONT size=3><SPAN style="COLOR: silver">灰色</SPAN>表示其他文件</FONT><SPAN lang=EN-US><BR></SPAN><FONT size=3><SPAN style="COLOR: sienna">红色闪烁</SPAN>表示链接的文件有</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt"><FONT size=3>问题</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-bidi-font-size: 10.5pt"><FONT size=3>了</FONT><SPAN lang=EN-US><BR></SPAN><FONT size=3><SPAN style="COLOR: yellow">黄色</SPAN>表示设备文件<SPAN lang=EN-US><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></FONT></SPAN></P></DIV></DIV></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>]]></description>
</item><item>
<title><![CDATA[如何在Linux服务器间移动用户帐户(摘)]]></title>
<link>http://blog.5dmail.net/user1/70/20081223132823.html</link>
<author>aku1</author>
<pubDate>2008-12-23 13:28:23</pubDate>
<description><![CDATA[others. This is also useful if you are using old Linux distribution such as Redhat 9 or Debian 2.x. 
<P>Following files/dirs are required for traditional Linux user management:<BR>* <STRONG><A href="http://www.cyberciti.biz/faq/understanding-etcpasswd-file-format/"><FONT color=#2361a1>/etc/passwd</FONT></A></STRONG> - contains various pieces of information for each user account</P>
<P>* <STRONG><A href="http://www.cyberciti.biz/faq/understanding-etcshadow-file/"><FONT color=#2361a1>/etc/shadow</FONT></A></STRONG> - contains the encrypted password information for user's accounts and optional the password aging information.<BR><SPAN id=more-433></SPAN><BR>* <STRONG><A href="http://www.cyberciti.biz/faq/understanding-etcgroup-file/"><FONT color=#2361a1>/etc/group</FONT></A></STRONG> - defines the groups to which users belong</P>
<P>* <STRONG>/etc/gshadow</STRONG> - group shadow file (contains the encrypted password for group)</P>
<P>* <STRONG>/var/spool/mail</STRONG> - Generally user emails are stored here.</P>
<P>* <STRONG>/home</STRONG> - All Users data is stored here.</P>
<P>You need to backup all of the above files and directories from old server to new Linux server.</P>
<H3>Commands to type on old Linux system</H3>
<P>First create a tar ball of old uses (old Linux system). Create a directory:<BR><FONT size=2><FONT style="BACKGROUND-COLOR: #eeeeee"><FONT face=Courier><CODE># mkdir /root/move/</CODE><BR></FONT></FONT></FONT>Setup UID filter limit:<BR><FONT size=2><FONT style="BACKGROUND-COLOR: #eeeeee"><FONT face=Courier><CODE># export UGIDLIMIT=500</CODE><BR></FONT></FONT></FONT>Now copy /etc/passwd accounts to /root/move/passwd.mig using awk to filter out system account (i.e. only copy user accounts)<BR><FONT size=2><FONT style="BACKGROUND-COLOR: #eeeeee"><FONT face=Courier><CODE># awk -v LIMIT=$UGIDLIMIT -F: '($3&gt;=LIMIT) &amp;&amp; ($3!=65534)' /etc/passwd &gt; /root/move/passwd.mig</CODE><BR></FONT></FONT></FONT>Copy /etc/group file:<BR><FONT size=2><FONT style="BACKGROUND-COLOR: #eeeeee"><FONT face=Courier><CODE># awk -v LIMIT=$UGIDLIMIT -F: '($3&gt;=LIMIT) &amp;&amp; ($3!=65534)' /etc/group &gt; /root/move/group.mig</CODE><BR></FONT></FONT></FONT>Copy /etc/shadow file:<BR><FONT size=2><FONT style="BACKGROUND-COLOR: #eeeeee"><FONT face=Courier><CODE># awk -v LIMIT=$UGIDLIMIT -F: '($3&gt;=LIMIT) &amp;&amp; ($3!=65534) {print $1}' /etc/passwd | tee - |egrep -f - /etc/shadow &gt; /root/move/shadow.mig</CODE><BR></FONT></FONT></FONT>Copy /etc/gshadow (rarely used):<BR><FONT size=2><FONT style="BACKGROUND-COLOR: #eeeeee"><FONT face=Courier><CODE># cp /etc/gshadow /root/move/gshadow.mig</CODE><BR></FONT></FONT></FONT>Make a backup of /home and /var/spool/mail dirs:<BR><CODE><FONT style="BACKGROUND-COLOR: #eeeeee" face=Courier size=2># tar -zcvpf /root/move/home.tar.gz /home<BR># tar -zcvpf /root/move/mail.tar.gz /var/spool/mail</FONT></CODE></P>
<P>Where,</P>
<UL>
<LI>Users that are added to the Linux system always start with UID and GID values of as specified by Linux distribution or set by admin. Limits according to different Linux distro: 
<UL>
<LI><STRONG>RHEL/CentOS/Fedora Core</STRONG> : Default is 500 and upper limit is 65534 (/etc/libuser.conf). 
<LI><STRONG>Debian and Ubuntu Linux</STRONG> : Default is 1000 and upper limit is 29999 (/etc/adduser.conf). </LI></UL>
<LI>You should never ever create any new system user accounts on the newly installed Cent OS Linux. So above awk command filter out UID according to Linux distro. 
<LI><STRONG>export UGIDLIMIT=500 </STRONG>- setup UID start limit for normal user account. Set this value as per your Linux distro. 
<LI><STRONG>awk -v LIMIT=$UGIDLIMIT -F: '($3&gt;=LIMIT) &amp;&amp; ($3!=65534)' /etc/passwd &gt; /root/move/passwd.mig</STRONG> - You need to pass UGIDLIMIT variable to awk using -v option (it assigns value of shell variable UGIDLIMIT to awk program variable LIMIT). Option -F: sets the field separator to : . Finally awk read each line from /etc/passwd, filter out system accounts and generates new file /root/move/passwd.mig. Same logic is applies to rest of awk command. 
<LI><STRONG>tar -zcvpf /root/move/home.tar.gz /home</STRONG> - Make a backup of users /home dir 
<LI><STRONG>tar -zcvpf /root/move/mail.tar.gz /var/spool/mail</STRONG> - Make a backup of users mail dir </LI></UL>
<P>Use scp or usb pen or tape to copy /root/move to a new Linux system.<BR><CODE><FONT style="BACKGROUND-COLOR: #eeeeee" face=Courier size=2># scp -r /root/move/* user@new.linuxserver.com:/path/to/location</FONT></CODE></P>
<H3>Commands to type on new Linux system</H3>
<P>First, make a backup of current users and passwords:<BR><FONT size=2><FONT style="BACKGROUND-COLOR: #eeeeee"><FONT face=Courier><CODE># mkdir /root/newsusers.bak<BR># cp /etc/passwd /etc/shadow /etc/group /etc/gshadow /root/newsusers.bak<BR></CODE><BR></FONT></FONT></FONT>Now restore passwd and other files in /etc/<BR><CODE><FONT style="BACKGROUND-COLOR: #eeeeee" face=Courier size=2># cd /path/to/location<BR># cat passwd.mig &gt;&gt; /etc/passwd<BR># cat group.mig &gt;&gt; /etc/group<BR># cat shadow.mig &gt;&gt; /etc/shadow<BR># /bin/cp gshadow.mig /etc/gshadow</FONT></CODE></P>
<P>Please note that you must use <STRONG>&gt;&gt;</STRONG> (append) and not <STRONG>&gt;</STRONG> (create) shell redirection. </P>
<P>Now copy and extract home.tar.gz to new server /home<BR><CODE><FONT style="BACKGROUND-COLOR: #eeeeee" face=Courier size=2># cd /<BR># tar -zxvf /path/to/location/home.tar.gz</FONT></CODE></P>
<P>Now copy and extract mail.tar.gz (Mails) to new server /var/spool/mail<BR><CODE><FONT style="BACKGROUND-COLOR: #eeeeee" face=Courier size=2># cd /<BR># tar -zxvf /path/to/location/mail.tar.gz</FONT></CODE></P>
<P>Now reboot system; when the Linux comes back, your user accounts will work as they did before on old system:<BR><CODE><FONT style="BACKGROUND-COLOR: #eeeeee" face=Courier size=2># reboot</FONT></CODE></P>
<P>Please note that if you are new to Linux perform above commands in a sandbox environment. Above technique can be used to UNIX to UNIX OR UNIX to Linux account migration. You need to make couple of changes but overall the concept remains the same.</P>
<H3>Further readings</H3>
<UL>
<LI>Read man pages of awk, passwd(5), shadow(5), group(5), tar command </LI></UL>
<P>Updated for accuracy.</P><!-- <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
				xmlns:dc="http://purl.org/dc/elements/1.1/"
				xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
			<rdf:Description rdf:about="http://www.cyberciti.biz/faq/howto-move-migrate-user-accounts-old-to-new-server/"
    dc:identifier="http://www.cyberciti.biz/faq/howto-move-migrate-user-accounts-old-to-new-server/"
    dc:title="Move or migrate user accounts from old Linux server to a new Linux server"
    trackback:ping="http://www.cyberciti.biz/faq/howto-move-migrate-user-accounts-old-to-new-server/trackback/" />
</rdf:RDF> -->
<DIV id=subscribebox>
<DIV id=leftbox>Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our <STRONG>daily email newsletter</STRONG> to make sure you don't miss a single tip/tricks. Subscribe to our <EM><A href="http://www.cyberciti.biz/tips/subscribe#weekly" rel=nofollow><FONT color=#2361a1>weekly newsletter here</FONT></A></EM>! 
<FORM onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=Nixcraft-LinuxFreebsdSolarisTipsTricks', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" action=http://feedburner.google.com/fb/a/mailverify method=post target=popupwindow><INPUT class=text_input id=name onblur="if (this.value=='') {this.value='you@address.com';}" onclick="if (this.value=='you@address.com') {this.value=''};" value=you@address.com name=email><INPUT type=hidden value=Nixcraft-LinuxFreebsdSolarisTipsTricks name=uri> <INPUT type=hidden value=en_US name=loc><INPUT class=form_submit onclick="javascript: pageTracker._trackPageview('/outgoing/tips-email-box/');" type=submit value=Subscribe></FORM></DIV>
<UL id=utilitylinks>
<LI id=email><A title="Email to a friend" onclick="javascript: pageTracker._trackPageview('/outgoing/tips-email/');" href="http://blog.5dmail.net/javascript:location.href='http://www.cyberciti.biz/faq/howto-move-migrate-user-accounts-old-to-new-server/email/'" rel=nofollow><FONT color=#2361a1>E-mail this to a friend</FONT></A> 
<LI id=print><A title="Print this FAQ" onclick="javascript: pageTracker._trackPageview('/outgoing/tips-print/');" href="http://blog.5dmail.net/javascript:location.href='http://www.cyberciti.biz/faq/howto-move-migrate-user-accounts-old-to-new-server/print/'" rel=nofollow><FONT color=#2361a1>Printable version</FONT></A> 
<LI id=download>PDF version</A> 
<LI id=rss><A title=RSS onclick="javascript: pageTracker._trackPageview('/outgoing/tips-rss/');" href="http://feeds.cyberciti.biz/Nixcraft-LinuxFreebsdSolarisTipsTricks" rel=nofollow><FONT color=#2361a1>Rss Feed</FONT></A></LI></UL></DIV><BR>
<CENTER>
<SCRIPT type=text/javascript>
	sr_adspace_id = 5007407;
	sr_adspace_width = 336;
	sr_adspace_height = 280;
	sr_adspace_type = "graphic";
	sr_ad_new_window = true;
	
</SCRIPT>

<SCRIPT src="http://ad.afy11.net/srad.js?azId=5007407" type=text/javascript>
</SCRIPT>

<SCRIPT src="http://ad.afy11.net/ad?asId=5007407&amp;sd=2x336x280&amp;ct=15&amp;enc=1&amp;sf=0&amp;sfd=0&amp;ynw=0&amp;anw=1&amp;rand=24913934&amp;rk1=18414041&amp;rk2=1230010159.515&amp;pt=0"></SCRIPT>

<SCRIPT type=text/javascript><!--
   e9 = new Object();
   e9.size = "336x280";
   e9.noAd = 1;
//--></SCRIPT>

<SCRIPT src="http://tags.expo9.exponential.com/tags/nixCraft/ROS/tags.js" type=text/javascript></SCRIPT>

<DIV style="BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; OVERFLOW: hidden; WIDTH: 0px; HEIGHT: 0px; BORDER-RIGHT-WIDTH: 0px"><FONT color=#2361a1><!-- Start Quantcast tag -->
<SCRIPT type=text/javascript>
_qoptions={
  qacct:"p-25K88fxDSEn9Y",
  labels:"IDG Tech Network"
};
</SCRIPT>

<SCRIPT src="http://edge.quantserve.com/quant.js" type=text/javascript></SCRIPT>
<NOSCRIPT>
<a href="http://www.quantcast.com/p-25K88fxDSEn9Y"
target="_blank"><img
src="http://pixel.quantserve.com/pixel/p-25K88fxDSEn9Y.gif"
style="display: none;" border="0" height="1" width="1"
alt="Quantcast"/></a>
</NOSCRIPT><!-- End Quantcast tag --></FONT></DIV>
<CENTER><FONT color=#2361a1>
<SCRIPT src="http://a.tribalfusion.com/j.ad?site=nixcraft&amp;adSpace=ros&amp;tagKey=61160795&amp;size=336x280&amp;p=10108937&amp;a=1&amp;flashVer=9&amp;ver=1.14&amp;center=1&amp;noAd=1&amp;url=http%3A%2F%2Fwww.cyberciti.biz%2Ffaq%2Fhowto-move-migrate-user-accounts-old-to-new-server%2F&amp;rurl=http%3A%2F%2Fbbs.linuxsky.org%2Fviewthread.php%3Ftid%3D5476%26statsdata%3D7%257C%257C2206&amp;rnd=10105878" type=text/javascript></SCRIPT>
</FONT></CENTER>
<CENTER><A href="http://a.tribalfusion.com/h.click/a2mx72mdZayVdf8XFMkXrbh0qZaMRbvZcWb3SWWQUnFJxQFfnYEQy5aUk5aY5mEJL1bjcWHJRoPULpGvwoWfD5EMg2dms3mJJprvEYVbTYGQ3XGbnmEJU3U3TVUMZaW6nTRHvghw8AoI/http://a.tribalfusion.com" target=_blank><FONT color=#2361a1><IMG height=1 src="http://cdn5.tribalfusion.com/media/37536.gif" width=1 border=0></FONT></A></CENTER></CENTER>
<DIV id=comments>
<DIV class=comments_intro>
<P><SPAN class=bracket><FONT color=#cccccc size=5>{</FONT></SPAN> <SPAN><FONT color=#111111 size=5>1</FONT></SPAN> trackback <SPAN class=bracket><FONT color=#cccccc size=5>}</FONT></SPAN></P></DIV>
<DL id=trackback_list>
<DT><A href="http://www.hackitlinux.com/50226711/from_old_to_new_data_migration.php" rel="http://blog.5dmail.net/external nofollow">HackITLinux</A> 
<DD>01.31.07 at 11:01 am </DD></DL>
<DIV class=comments_intro>
<P><SPAN class=bracket><FONT color=#cccccc size=5>{</FONT></SPAN> <SPAN><FONT color=#111111 size=5>36</FONT></SPAN> comments… read them below or <A href="http://www.cyberciti.biz/faq/howto-move-migrate-user-accounts-old-to-new-server/#respond" rel=nofollow><FONT color=#2361a1>add one</FONT></A> <SPAN class=bracket><FONT color=#cccccc size=5>}</FONT></SPAN></P></DIV>
<DL id=comment_list>
<DT class=comment id=comment-5242><SPAN class=avatar><FONT color=#cccccc size=5><IMG class="avatar avatar-50" height=50 alt="" src="http://www.gravatar.com/avatar/f2ff1eccf2b0c8eb2f48e94adafe2d8f?s=50&amp;d=http%3A%2F%2Fwww.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D50&amp;r=G" width=50></FONT></SPAN> <SPAN class=comment_num><A title="http://blog.5dmail.net/Permalink to this comment" href="http://www.cyberciti.biz/faq/howto-move-migrate-user-accounts-old-to-new-server/#comment-5242" rel=nofollow><STRONG><FONT color=#aaaaaa size=2>1</FONT></STRONG></A></SPAN> <SPAN class=comment_author><STRONG><FONT size=3>podee</FONT></STRONG></SPAN> <SPAN class=comment_time><FONT color=#888888 size=2>12.21.06 at 4:00 am</FONT></SPAN> 
<DD class=comment>
<DIV class=format_text>
<P>Hi</P>
<P>I followed your instuction on CentOS 4.4. When I reboot I lost my root user and gdm din’t start.<BR>I could login from all user but not root.<BR>Can you help to give me some advices please?</P>
<P>Pordee</P></DIV>
<DT class="comment alt" id=comment-5247><SPAN class=avatar><A href="http://blogs.cyberciti.biz/hm/" rel="http://blog.5dmail.net/external nofollow"><IMG class="avatar avatar-50" height=50 alt="" src="http://www.gravatar.com/avatar/f70c4bd411985237db78966be0dc27de?s=50&amp;d=http%3A%2F%2Fwww.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D50&amp;r=G" width=50></A></SPAN> <SPAN class=comment_num><A title="http://blog.5dmail.net/Permalink to this comment" href="http://www.cyberciti.biz/faq/howto-move-migrate-user-accounts-old-to-new-server/#comment-5247" rel=nofollow><STRONG><FONT color=#aaaaaa size=2>2</FONT></STRONG></A></SPAN> <SPAN class=comment_author><A href="http://blogs.cyberciti.biz/hm/" rel="http://blog.5dmail.net/external nofollow"><STRONG><FONT color=#2361a1 size=3>nixcraft</FONT></STRONG></A></SPAN> <SPAN class=comment_time><FONT color=#888888 size=2>12.21.06 at 7:59 am</FONT></SPAN> 
<DD class="comment alt">
<DIV class=format_text>
<P>You made mistake somewhere. But don’t worry you can login into single user mode (rescue mode) and reset root account password.</P>
<P><A href="http://www.cyberciti.biz/faq/linux-reset-forgotten-root-password/" rel=nofollow><FONT color=#2361a1>http://www.cyberciti.biz/faq/linux-reset-forgotten-root-password/</FONT></A></P></DIV>
<DT class=comment id=comment-6393><SPAN class=avatar><FONT color=#2361a1><IMG class="avatar avatar-50" height=50 alt="" src="http://www.gravatar.com/avatar/f174cc157a6d16fe914aefc85fc8f5b1?s=50&amp;d=http%3A%2F%2Fwww.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D50&amp;r=G" width=50></FONT></SPAN> <SPAN class=comment_num><A title="http://blog.5dmail.net/Permalink to this comment" href="http://www.cyberciti.biz/faq/howto-move-migrate-user-accounts-old-to-new-server/#comment-6393" rel=nofollow><STRONG><FONT color=#aaaaaa size=2>3</FONT></STRONG></A></SPAN> <SPAN class=comment_author><STRONG><FONT size=3>ssdon</FONT></STRONG></SPAN> <SPAN class=comment_time><FONT color=#888888 size=2>01.02.07 at 10:25 pm</FONT></SPAN> 
<DD class=comment>
<DIV class=format_text>
<P>Great! The following line is probably a typo as I’m assuming you mean to back this up with a copy, otherwise you nuke the password files (probably what happened to nixcraft)</P>
<P># mv /etc/passwd /etc/shadow /etc/group /etc/gshadow /root/newsusers.bak</P>
<P># cp /etc/passwd /etc/shadow /etc/group /etc/gshadow /root/newsusers.bak</P></DIV></DD></DL></DIV>]]></description>
</item><item>
<title><![CDATA[OWA 2007 中实现图片邮件签名的简单方法]]></title>
<link>http://blog.5dmail.net/user1/1/20081216155825.html</link>
<author>cndgm</author>
<pubDate>2008-12-16 15:58:26</pubDate>
<description><![CDATA[为了有统一的企业形像，有些公司需要在电子邮件签名中使用自己公司的特定的内容，比如LOGO或是商标，而对于OWA的用户来说，在邮件签名中是不能插入图片的。今天我们来试试用一个最简单的方法来实现OWA 2007 中的图片邮件签名。
<P>1.在Exchange Server 2007的CAS服务器上，找到Exchagne 安装目录 \Microsoft\Exchange Server\ClientAccess\Owa<BR><BR>2.新建一个目录，比如“Images”</P>
<P>3.将公司LOGO或是商标的图片COPY到这个目录。</P>
<P>4.新开IE页面，并登录到OWA中。</P>
<P>5.创建或编辑邮件签名。</P>
<P>6.在IE中使用这个LOGO文件的URL打开。比如：</P>
<P><A href="http://mail.5dmail.net/owa/images/logo.jpg">http://mail.5dmail.net/owa/images/logo.jpg</A>&nbsp;，将复制图片。</P>
<P>7.将复制的图片粘贴到邮件签名窗口。这样就搞定了。</P>
<P>当然，这个方法只适用于有固定使用一个或是某几个图片的情形，如果每一个用户都需要自定义的方法，管理员需要考虑是否要为每一个用户都代为存放图片啦！</P>]]></description>
</item><item>
<title><![CDATA[Exchange Server 的OWA 邮件签名大小限制]]></title>
<link>http://blog.5dmail.net/user1/1/20081216151555.html</link>
<author>cndgm</author>
<pubDate>2008-12-16 15:15:55</pubDate>
<description><![CDATA[<P>随着电子邮件的普及应用，五花八门的邮件签名也随着每个人的创意诞生了。作为Exchange Server的客户端访问方式之一，OWA也同样提供了邮件签名的设置选项。但是，有时用户会发现，当他想在OWA中为自己的邮箱设定一个COOL的邮件签名时，有可能会得到“未保存您的更改，因为<SPAN class=t_tag onclick=tagshow(event) href="http://blog.5dmail.net/tag.php?name=%B5%E7%D7%D3%D3%CA%BC%FE">电子邮件</SPAN>签名过大。请<SPAN class=t_tag onclick=tagshow(event) href="http://blog.5dmail.net/tag.php?name=%CA%B9%D3%C3">使用</SPAN>较小的格式。”这样的错误。为什么？原来OWA 邮件签名大小也是有限制的。</P>
<P><STRONG>1.OWA 2007中的邮件签名大小</STRONG></P>
<P>OWA 2007中默认最大的邮件签名大小时4096字节(bytes)（4KB）,而且不能手动增加大小。所以，如果你需要在OWA 2007中使用邮件签名，务必将大小控制在4096Bytes内。比如，尽可能的删除HTML格式签名的空白区域。</P>
<P><STRONG>2.OWA 2003中的邮件签名大小</STRONG></P>
<P>OWA 2003中默认安装的情况下。允许最大的邮件签名大小同样是4096字节(byte)（4KB）,但是允许在需要的情况下扩展到<STRONG>16672</STRONG>bytes （16KB）.</P>
<P><STRONG>3.如何修改OWA 2003中的邮件签名大小？</STRONG></P>
<P>如果确定需要扩展OWA 2003中的邮件签名大小，请通过下方法修改注册表：<BR><BR><STRONG>A.点击“开始”菜单－》“运行”，输入regedit,“确定”<BR><BR>B.导航到以下子键：<BR>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeWeb\OWA<BR><BR>C.在OWA，新建一个“DWORD值”类型，并取名为：SignatureMaxLength<BR><BR>D.双击打开新值，然后编辑值为：<FONT face=NSimsun><FONT face=Arial>16672</FONT>，并选择十进制的基数。</FONT></STRONG></P>
<P><FONT face=新宋体><STRONG>E.关闭注册表编辑器。</STRONG></FONT></P>]]></description>
</item><item>
<title><![CDATA[如何导出导入Exchange Server 2003的发件人过滤列表]]></title>
<link>http://blog.5dmail.net/user1/1/20081216145958.html</link>
<author>cndgm</author>
<pubDate>2008-12-16 14:59:58</pubDate>
<description><![CDATA[<P style="MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US>Exchange Server 2003</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">在反垃圾邮件功能方面提供一个发件人过滤的功能。</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">使用发件人筛选功能可以阻止手动维护的特定发件人邮件地址，并可以对这类邮件进行多种操作。如图：</SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt"><IMG src="http://blog.5dmail.net/UploadFile/2008-12/1216251058.gif"><BR></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt"></SPAN>&nbsp;</P>
<P style="MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">具体的配置方法请看：</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><A href="http://blog.5dmail.net/user1/1/200891204912.html"><SPAN style="http://blog.5dmail.net/COLOR: windowtext">Exchange&nbsp;Server&nbsp;2003&nbsp;</SPAN><SPAN style="COLOR: windowtext" lang=EN-US><SPAN lang=EN-US>反垃圾邮件经验谈(</SPAN></SPAN><SPAN style="COLOR: windowtext" lang=EN-US><SPAN lang=EN-US>中)</SPAN></SPAN></A></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">，<SPAN lang=EN-US><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-no-proof: yes" lang=EN-US><?xml:namespace prefix = v ns = "urn:schemas-microsoft-com:vml" /><v:shapetype id=_x0000_t75 stroked="f" filled="f" path="m@4@5l@4@11@9@11@9@5xe" o:preferrelative="t" o:spt="75" coordsize="21600,21600"><v:stroke joinstyle="miter"></v:stroke><v:formulas><v:f eqn="if lineDrawn pixelLineWidth 0"></v:f><v:f eqn="sum @0 1 0"></v:f><v:f eqn="sum 0 0 @1"></v:f><v:f eqn="prod @2 1 2"></v:f><v:f eqn="prod @3 21600 pixelWidth"></v:f><v:f eqn="prod @3 21600 pixelHeight"></v:f><v:f eqn="sum @0 0 1"></v:f><v:f eqn="prod @6 1 2"></v:f><v:f eqn="prod @7 21600 pixelWidth"></v:f><v:f eqn="sum @8 21600 0"></v:f><v:f eqn="prod @7 21600 pixelHeight"></v:f><v:f eqn="sum @10 21600 0"></v:f></v:formulas><v:path o:connecttype="rect" gradientshapeok="t" o:extrusionok="f"></v:path><o:lock aspectratio="t" v:ext="edit"></o:lock></v:shapetype></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt" lang=EN-US><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">但使用过收件人过滤的朋友一定会一个问题，如何才能将手动加入的地址导出，甚至导入到其它服务器上使用呢？在<SPAN lang=EN-US>ExchangeServer 2003</SPAN>的系统管理工具中并没有提供这样的导出功能。其实这个设定被存放在了<SPAN lang=EN-US>AD</SPAN>的配置分区的</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-ansi-language: EN" lang=EN>msExchTurfListNames </SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-ansi-language: EN">对像中，使用<SPAN lang=EN>Adsiedit</SPAN>工具可以找到，如下图：<BR></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-ansi-language: EN" lang=EN><o:p>&nbsp;<SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt" lang=EN-US><IMG src="http://blog.5dmail.net/UploadFile/2008-12/1216475124.gif"></SPAN></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-no-proof: yes" lang=EN-US></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ansi-language: EN" lang=EN><o:p></o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">本文将介绍导入和导出的方法：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: auto 0cm auto 18pt; mso-list: l2 level1 lfo1" class=MsoListParagraph><SPAN style="mso-bidi-font-size: 10.5pt" lang=EN-US><SPAN style="mso-list: Ignore"><FONT size=3 face=宋体>1.</FONT><SPAN style="FONT: 7pt 'Times New Roman'">&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt">导出发件人过滤列表<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">如果想导出发件人过滤列表，可以使用<SPAN lang=EN-US>ldifde</SPAN>工具来完成。方法如下：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">在<SPAN lang=EN-US>CMD</SPAN>中输入以下命令：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt" lang=EN-US>
<DIV style="CURSOR: pointer" class=HtmlCode title=点击运行该代码！ onclick="preWin=window.open('','','');preWin.document.open();preWin.document.write(this.innerText);preWin.document.close();" ;><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt" lang=EN-US>ldifde -m -f C:\senderfilter.ldf -r "(objectCategory=msExchSMTPTurfList)" -d "cn=configuration,dc=yourdomain" -l msExchTurfListNames</SPAN></DIV></SPAN>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">注意</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt" lang=EN-US>dc=yourdomain </SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">中的<SPAN lang=EN-US>yourdomain</SPAN>需要根据你<SPAN lang=EN-US>AD</SPAN>域名来修改，比如你的<SPAN lang=EN-US>AD</SPAN>域名为<SPAN lang=EN-US>5dmail.net,</SPAN>则命令应该是：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt" lang=EN-US>
<DIV style="CURSOR: pointer" class=HtmlCode title=点击运行该代码！ onclick="preWin=window.open('','','');preWin.document.open();preWin.document.write(this.innerText);preWin.document.close();" ;><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt" lang=EN-US>ldifde -m -f C:\senderfilter.ldf -r "(objectCategory=msExchSMTPTurfList)" -d "cn=configuration,dc=5dmail,dc=net" -l msExchTurfListNames</SPAN></DIV></SPAN>
<P style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt" class=MsoNormal align=left><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">这样，就将收件人过滤表列表导出来了将放在了<SPAN lang=EN-US>C:\senderfilter.ldf</SPAN>，可以使用记事本打开看看。<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt" class=MsoNormal align=left><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: auto 0cm auto 18pt; mso-list: l2 level1 lfo1" class=MsoListParagraph><SPAN style="mso-bidi-font-size: 10.5pt" lang=EN-US><SPAN style="mso-list: Ignore"><FONT size=3 face=宋体>2.</FONT><SPAN style="FONT: 7pt 'Times New Roman'">&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt">导入发件人过滤列表<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: auto 0cm auto 18pt; mso-list: l0 level1 lfo2" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore">A.<SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt">如果想将已导出的发件人过滤列表导入到原有的<SPAN lang=EN-US>AD</SPAN>域中，请使用以下命令<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt" lang=EN-US>
<DIV style="CURSOR: pointer" class=HtmlCode title=点击运行该代码！ onclick="preWin=window.open('','','');preWin.document.open();preWin.document.write(this.innerText);preWin.document.close();" ;><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt" lang=EN-US>ldifde -i -f senderfilter.ldf</SPAN></DIV></SPAN>
<P style="TEXT-INDENT: -18pt; MARGIN: auto 0cm auto 18pt; mso-list: l0 level1 lfo2" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore">B.<SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt">有时可能希望将已导出的发件人过滤列表导入到不同的<SPAN lang=EN-US>AD</SPAN>域中，可以使用以下命令实现：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt" lang=EN-US>
<DIV style="CURSOR: pointer" class=HtmlCode title=点击运行该代码！ onclick="preWin=window.open('','','');preWin.document.open();preWin.document.write(this.innerText);preWin.document.close();" ;><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt" lang=EN-US>ldifde -i -f senderfilter.ldf –c dc=x dc=5dmail,dc=net</SPAN></DIV></SPAN>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt">注意与导出时一样</SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt" lang=EN-US>dc=yourdomain </SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">中的<SPAN lang=EN-US>yourdomain</SPAN>需要根据你<SPAN lang=EN-US>AD</SPAN>域名来修改<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt" lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">另外，如果你只是想导出一个列表，我找到一个<SPAN lang=EN-US>VBS</SPAN>的脚本，请下载后，在脚本所在的目录下执行以下命令即可导出成<SPAN lang=EN-US>TXT</SPAN>的文件：<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: auto 0cm auto 18pt; mso-list: l1 level1 lfo3" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore">A.<SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt">下载<SPAN lang=EN-US>VBS</SPAN>脚本地址：<BR><BR><SPAN lang=EN-US><A href="http://www.5dmail.net/down/SoftList-3418.htm"><SPAN style="http://blog.5dmail.net/COLOR: windowtext">http://www.5dmail.net/down/SoftList-3418.htm</SPAN></A><o:p></o:p></SPAN></SPAN></P>
<P style="TEXT-INDENT: -18pt; MARGIN: auto 0cm auto 18pt; mso-list: l1 level1 lfo3" class=MsoListParagraph><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore">B.<SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt">在脚本所在的目录下执行以下命令<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></P><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt; mso-bidi-font-family: 微软雅黑" lang=EN-US><SPAN style="mso-list: Ignore"><SPAN style="FONT: 7pt 'Times New Roman'">
<DIV style="CURSOR: pointer" class=HtmlCode title=点击运行该代码！ onclick="preWin=window.open('','','');preWin.document.open();preWin.document.write(this.innerText);preWin.document.close();" ;>
<P style="TEXT-INDENT: -18pt; MARGIN: auto 0cm auto 18pt; mso-list: l1 level1 lfo3" class=MsoListParagraph><SPAN><SPAN style="mso-list: Ignore"><SPAN style="FONT: 7pt 'Times New Roman'">&nbsp; </SPAN></SPAN>getSenderFilterList.vbs /f:filename.txt </SPAN><SPAN style="FONT-FAMILY: '微软雅黑','sans-serif'; FONT-SIZE: 10.5pt; mso-ansi-language: EN" lang=EN>- exports to file</SPAN></P></DIV></SPAN></SPAN></SPAN>]]></description>
</item><item>
<title><![CDATA[幸福在哪里 ?]]></title>
<link>http://blog.5dmail.net/user1/70/2008123223019.html</link>
<author>aku1</author>
<pubDate>2008-12-3 22:30:19</pubDate>
<description><![CDATA[很久一段时间,自己总是很彷徨,不知为什么,也许是因为年龄慢慢大了,来自各方面压力也更大了,有时侯一个人的时候会经常想幸福在哪里,会想很多不开心,感觉幸福离自己很远.........,所以更confused , 然而仔细想想,谁也给不了我答案,只有自己才知道自己想要什么,也许幸福就在自己身边的,好好过好每一天,多开心,多享受下生活便是幸福了]]></description>
</item><item>
<title><![CDATA[IT Delivery Transtion]]></title>
<link>http://blog.5dmail.net/user1/70/20081123191153.html</link>
<author>aku1</author>
<pubDate>2008-11-23 19:11:53</pubDate>
<description><![CDATA[<P>As I&nbsp; first participated in the comercial transition project ,I will writing my thinking ,experiece&nbsp; and ignorance in the future , I hope I will get more progress&nbsp;in&nbsp;the&nbsp;economy slowdown and accumulated more knowledges to help my future</P>]]></description>
</item><item>
<title><![CDATA[Like&nbsp;machine&nbsp;?]]></title>
<link>http://blog.5dmail.net/user1/70/20081121232757.html</link>
<author>aku1</author>
<pubDate>2008-11-21 23:27:57</pubDate>
<description><![CDATA[<P>I never face the kind of situation , the impossible project ,you must take all of your time for it ,you have to work overtime every evening ,With the poor condition : less time ,a group of freshman ,a big pressure ,wihat's more ,you must make the project better ,your commitment&nbsp;&nbsp;,I am exhaused to back home , I never want to move&nbsp;while i&nbsp;seat&nbsp;into &nbsp;the SAFA ,I hate the state ,but I have another choice ,we need money ,<IMG src="http://blog.5dmail.net/images/emot/face1.gif">&nbsp; advancement, Like this , even I have enough time to </P>
<P>make friends,&nbsp; girl frined , No way ....................., , finding the work/life balance ,just </P>
<P>like dream. that 's my life, </P>]]></description>
</item>
</channel>
</rss>
