<?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>rafan's blog &#187; Mail</title>
	<atom:link href="http://blog.rafan.org/categories/computer/mail/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.rafan.org</link>
	<description>rafan? rafan!</description>
	<lastBuildDate>Mon, 26 Apr 2010 15:19:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-alpha</generator>
		<item>
		<title>把 Thunderbird 列表字型調大的方法</title>
		<link>http://blog.rafan.org/archives/173</link>
		<comments>http://blog.rafan.org/archives/173#comments</comments>
		<pubDate>Sat, 11 Apr 2009 07:35:37 +0000</pubDate>
		<dc:creator>rafan</dc:creator>
				<category><![CDATA[Mail]]></category>

		<guid isPermaLink="false">http://blog.rafan.org/?p=173</guid>
		<description><![CDATA[昨天找了半天，終於發現要怎麼改大信件跟信件匣列表的字型大小。方法是要在 profile 目錄下造一個 chrome/userChrome.css 然後裡面放 * { font-size: 14px !important } #folderTree treechildren:-moz-tree-row { height: 18px !important; } #threadTree treechildren:-moz-tree-row { height: 18px !important; } 然後重開 Thunderbird 就可以了。]]></description>
			<content:encoded><![CDATA[<p>昨天找了半天，終於發現要怎麼改大信件跟信件匣列表的字型大小。方法是要在 profile 目錄下造一個 chrome/userChrome.css 然後裡面放<br />
<code><br />
* {<br />
    font-size: 14px !important<br />
}<br />
#folderTree treechildren:-moz-tree-row {<br />
    height: 18px !important;<br />
}<br />
#threadTree treechildren:-moz-tree-row {<br />
    height: 18px !important;<br />
}<br />
</code></p>
<p>然後重開 Thunderbird 就可以了。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rafan.org/archives/173/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>freepops</title>
		<link>http://blog.rafan.org/archives/132</link>
		<comments>http://blog.rafan.org/archives/132#comments</comments>
		<pubDate>Mon, 05 Feb 2007 14:05:21 +0000</pubDate>
		<dc:creator>rafan</dc:creator>
				<category><![CDATA[Mail]]></category>
		<category><![CDATA[Network]]></category>

		<guid isPermaLink="false">http://www.rafan.org/blog/archives/132</guid>
		<description><![CDATA[最近為了某些因素，要把 Hotmail 的信轉出來，而 Hotmail 不提供任何 forwarding 或者 POP3 的功能。想當然，對付這種邪惡的單位，一定有一堆人寫了一堆好用的程式，就剛好發現 freepops 這套用 lua (!) 寫的，可以在各種平台跑。它是將 Hotmail 轉成用 POP3 存取，因此，我就可以用 fetchmail 來幫我轉寄信件]]></description>
			<content:encoded><![CDATA[<p>最近為了某些因素，要把 Hotmail 的信轉出來，而 Hotmail 不提供任何 forwarding 或者 POP3 的功能。想當然，對付這種邪惡的單位，一定有一堆人寫了一堆好用的程式，就剛好發現 freepops 這套用 lua (!) 寫的，可以在各種平台跑。它是將 Hotmail 轉成用 POP3 存取，因此，我就可以用 fetchmail 來幫我轉寄信件 <img src='http://blog.rafan.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rafan.org/archives/132/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>惡搞 Horde/IMP Quota</title>
		<link>http://blog.rafan.org/archives/112</link>
		<comments>http://blog.rafan.org/archives/112#comments</comments>
		<pubDate>Thu, 04 Aug 2005 14:59:01 +0000</pubDate>
		<dc:creator>rafan</dc:creator>
				<category><![CDATA[CINC]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[webmail]]></category>

		<guid isPermaLink="false">http://rafan.infor.org/blog/?p=112</guid>
		<description><![CDATA[很久以前，計中 WebMail 的 quota 就是用 imap client 端去算的，去年中的時候，用 session 當 cache 來加速過。 剛再看 mailbox.php（郵件列表）在不同地方花的時間，會有常看到算 quota 的地方會花不少時間。而有些狀況，像是清空一個 folder 之類的，不應該全部 folder 都看一次，於是，剛就再度惡搞 IMP 的 session，把已經算過的 folder 大小塞進去（當然，在適當的地方要記得 flush）。 觀察 log 的感想是，用 folder size cache 的大概只有 20% 到 30% 左右，其實正解應該還是要 server-side 作才對啊 XD]]></description>
			<content:encoded><![CDATA[<p>很久以前，計中 WebMail 的 quota 就是用 imap client 端去算的，去年中的時候，用 session 當 cache 來加速過。</p>
<p>剛再看 mailbox.php（郵件列表）在不同地方花的時間，會有常看到算 quota 的地方會花不少時間。而有些狀況，像是清空一個 folder 之類的，不應該全部 folder 都看一次，於是，剛就再度惡搞 IMP 的 session，把已經算過的 folder 大小塞進去（當然，在適當的地方要記得 flush）。</p>
<p>觀察 log 的感想是，用 folder size cache 的大概只有 20% 到 30% 左右，其實正解應該還是要 server-side 作才對啊 XD</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rafan.org/archives/112/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mailgraph 1.11</title>
		<link>http://blog.rafan.org/archives/111</link>
		<comments>http://blog.rafan.org/archives/111#comments</comments>
		<pubDate>Sun, 19 Jun 2005 16:10:25 +0000</pubDate>
		<dc:creator>rafan</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[Ports]]></category>

		<guid isPermaLink="false">http://rafan.infor.org/blog/archives/111</guid>
		<description><![CDATA[mailgraph 前陣子終於出了新版了，很重要的一點是跟 RRDtool 1.2.x 相容了（現在 ports 的已經是 1.2.x），我剛剛 send-pr 去更新 mailgraph 了。我終於可以 upgrade rrdtool 了 :p]]></description>
			<content:encoded><![CDATA[<p>mailgraph 前陣子終於出了新版了，很重要的一點是跟 RRDtool 1.2.x 相容了（現在 ports 的已經是 1.2.x），我剛剛 send-pr 去更新 mailgraph 了。我終於可以 upgrade rrdtool 了 :p</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rafan.org/archives/111/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RRD 是 machine dependent</title>
		<link>http://blog.rafan.org/archives/68</link>
		<comments>http://blog.rafan.org/archives/68#comments</comments>
		<pubDate>Sat, 29 Jan 2005 09:53:12 +0000</pubDate>
		<dc:creator>rafan</dc:creator>
				<category><![CDATA[CSIE]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[Workstation Lab]]></category>

		<guid isPermaLink="false">http://rafan.infor.org/blog/?p=68</guid>
		<description><![CDATA[剛在換機器，發現 RRD 是 machine dependent&#8230; 所以要先 dump -> restore。]]></description>
			<content:encoded><![CDATA[<p>剛在換機器，發現 RRD 是 machine dependent&#8230; 所以要先 dump -> restore。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rafan.org/archives/68/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>postal 與 HTT</title>
		<link>http://blog.rafan.org/archives/65</link>
		<comments>http://blog.rafan.org/archives/65#comments</comments>
		<pubDate>Thu, 06 Jan 2005 18:13:59 +0000</pubDate>
		<dc:creator>rafan</dc:creator>
				<category><![CDATA[CSIE]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[Workstation Lab]]></category>

		<guid isPermaLink="false">http://rafan.infor.org/blog/?p=65</guid>
		<description><![CDATA[最近在用 postal 在測 postfix 跟 amavisd-new，結果 postal 有時候跑一跑會看到 Can't write data to ITC pipe. 然後就自己爆炸，一開始我都不知道為什麼，前幾天剛好發現，如果我把 machdep.hlt_logical_cpus 打開（也就是不要用 logical cpu）的話，postal 就不會爛了&#8230; 然後昨天我試了好幾次，只要一打開 logical cpu 的話，postal 過不久就炸了&#8230; !@#$%]]></description>
			<content:encoded><![CDATA[<p>最近在用 postal 在測 postfix 跟 amavisd-new，結果 postal 有時候跑一跑會看到 <code>Can't write data to ITC pipe.</code> 然後就自己爆炸，一開始我都不知道為什麼，前幾天剛好發現，如果我把 <code>machdep.hlt_logical_cpus</code> 打開（也就是不要用 logical cpu）的話，postal 就不會爛了&#8230; 然後昨天我試了好幾次，只要一打開 logical cpu 的話，postal 過不久就炸了&#8230; !@#$%</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rafan.org/archives/65/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>邪惡的 webmail</title>
		<link>http://blog.rafan.org/archives/44</link>
		<comments>http://blog.rafan.org/archives/44#comments</comments>
		<pubDate>Sun, 07 Nov 2004 04:40:58 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[CINC]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[webmail]]></category>

		<guid isPermaLink="false">http://rafan.infor.org/wordpress/?p=44</guid>
		<description><![CDATA[前陣子因為 webmail 被一個很巨大的表拖累，導致速度很慢，那時候多生了幾台機器出來，本來是想分年級來跑，結果弄了老半天，想不到好方法。 前幾天，jason 跟我講他同事弄了個 javascript 可以在 login 的時候決定要跑到哪台， 作法是在 IMP login.inc 的 submit_login 裡面用 regexp + imapuser.value.match() 來判斷是哪些 user，然後去改 imp_login.action。 不過現在因為兩台新的機器還沒弄好 SSL Certification，所以現在玩的是 wmail1 跟 wmail6 隨機選一台跑 XD]]></description>
			<content:encoded><![CDATA[<p>前陣子因為 <a href="http://webmail.ntu.edu.tw">webmail</a> 被一個<a href="archives/000043.html">很巨大的表拖累</a>，導致速度很慢，那時候多生了幾台機器出來，本來是想分年級來跑，結果弄了老半天，想不到好方法。<br />
<span id="more-44"></span><br />
前幾天，jason 跟我講他同事弄了個 javascript 可以在 login 的時候決定要跑到哪台，<br />
作法是在 IMP login.inc 的 submit_login 裡面用 regexp + imapuser.value.match() 來判斷是哪些 user，然後去改 imp_login.action。</p>
<p>不過現在因為兩台新的機器還沒弄好 SSL Certification，所以現在玩的是 wmail1 跟 wmail6 隨機選一台跑 XD</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rafan.org/archives/44/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
