﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>IT博客-手指飞扬的Blog-文章分类-Other</title><link>http://www.cnitblog.com/blueyb/category/8205.html</link><description>Living is a program, programing is living.</description><language>zh-cn</language><lastBuildDate>Wed, 05 Oct 2011 10:48:26 GMT</lastBuildDate><pubDate>Wed, 05 Oct 2011 10:48:26 GMT</pubDate><ttl>60</ttl><item><title>硬盘分区结构及windows文件系统结构(转载)</title><link>http://www.cnitblog.com/blueyb/articles/56195.html</link><dc:creator>Finger_Flying</dc:creator><author>Finger_Flying</author><pubDate>Thu, 09 Apr 2009 15:39:00 GMT</pubDate><guid>http://www.cnitblog.com/blueyb/articles/56195.html</guid><wfw:comment>http://www.cnitblog.com/blueyb/comments/56195.html</wfw:comment><comments>http://www.cnitblog.com/blueyb/articles/56195.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/blueyb/comments/commentRss/56195.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/blueyb/services/trackbacks/56195.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 1.关于硬盘分区：&nbsp;&nbsp;&nbsp; IDE接口硬盘中，不管什么操作系统，都有如下结构：                                    MBR(Master Boot Record)及基本分区表                                                    分区1   ...&nbsp;&nbsp;<a href='http://www.cnitblog.com/blueyb/articles/56195.html'>阅读全文</a><img src ="http://www.cnitblog.com/blueyb/aggbug/56195.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/blueyb/" target="_blank">Finger_Flying</a> 2009-04-09 23:39 <a href="http://www.cnitblog.com/blueyb/articles/56195.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>用telnet发邮件</title><link>http://www.cnitblog.com/blueyb/articles/56051.html</link><dc:creator>Finger_Flying</dc:creator><author>Finger_Flying</author><pubDate>Sun, 05 Apr 2009 17:20:00 GMT</pubDate><guid>http://www.cnitblog.com/blueyb/articles/56051.html</guid><wfw:comment>http://www.cnitblog.com/blueyb/comments/56051.html</wfw:comment><comments>http://www.cnitblog.com/blueyb/articles/56051.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/blueyb/comments/commentRss/56051.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/blueyb/services/trackbacks/56051.html</trackback:ping><description><![CDATA[<h2><a title="Permanent Link: 用telnet发邮件(支持smtp认证)" href="http://www.juyimeng.com/sending-mail-using-telnet-with-smtp-auth.html" rel=bookmark><u><font color=#800080>用telnet发邮件(支持smtp认证)</font></u></a></h2>
<font size=2>*转载自<a href="http://www.juyimeng.com/sending-mail-using-telnet-with-smtp-auth.html">http://www.juyimeng.com/sending-mail-using-telnet-with-smtp-auth.html</a></font><br>
<div class=entry>
<p>1.用<strong>telnet</strong>连到远程服务器</p>
<p>可以</p>
<div class=hl-surround>
<div class=hl-main>telnet mail.test.com 25</div>
</div>
<p>或者</p>
<div class=hl-surround>
<div class=hl-main>telnet mail.test.com smtp</div>
</div>
<p>2.跟服务器打招呼</p>
<div class=hl-surround>
<div class=hl-main>HELO mail.test.com</div>
</div>
<p>服务器应该返回<br>250</p>
<p>如果服务器smtp需要验证，进行第三步，否则到第四步<br>3.输入</p>
<div class=hl-surround>
<div class=hl-main>AUTH LOGIN</div>
</div>
<p>会一次提示你<br>334 VXNlcm5hbWU6<br>和<br>334 UGFzc3dvcmQ6<br>后边的内容是提示输入用户名和口令，信息是经过base64编码的<br>输入的用户名和口令也要经过编码，<a onclick="javascript:pageTracker._trackPageview('/outgoing/makcoder.sourceforge.net/demo/base64.php');" href="http://makcoder.sourceforge.net/demo/base64.php"><u><font color=#0000ff>这里是一个编码、解码的工具</font></u></a><br>smtp认证通过后会显示<br>235 2.0.0 Authentication successful<br>4.写信<br>输入</p>
<div class=hl-surround>
<div class=hl-main>MAIL FROM: &lt;juhui@test.com&gt;</div>
</div>
<p>和</p>
<div class=hl-surround>
<div class=hl-main>RCPT TO: &lt;phpbird@test.com&gt;</div>
</div>
<p>分别是发自，发往<br>如果正常都应该返回250<br>输入</p>
<div class=hl-surround>
<div class=hl-main>DATA</div>
</div>
<p>开始写信</p>
<div class=hl-surround>
<div class=hl-main>Subject:test mail<br>test email<br>.</div>
</div>
<p>250 2.0.0 Ok: queued as 93223136C8E<br>退出</p>
<div class=hl-surround>
<div class=hl-main>QUIT</div>
</div>
<p>Postfix上试用通过。</p>
</div>
<img src ="http://www.cnitblog.com/blueyb/aggbug/56051.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/blueyb/" target="_blank">Finger_Flying</a> 2009-04-06 01:20 <a href="http://www.cnitblog.com/blueyb/articles/56051.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>