<?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>In Nomine - The Lotus Land &#187; Email</title>
	<atom:link href="http://www.in-nomine.org/category/email/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.in-nomine.org</link>
	<description>The focused mind can pierce through stone...</description>
	<lastBuildDate>Sat, 14 May 2011 20:22:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Character encoding in mailcap for mutt and w3m</title>
		<link>http://www.in-nomine.org/2009/02/16/character-encoding-in-mailcap-for-mutt-and-w3m/</link>
		<comments>http://www.in-nomine.org/2009/02/16/character-encoding-in-mailcap-for-mutt-and-w3m/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 10:15:59 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[japanese]]></category>
		<category><![CDATA[mailcap]]></category>
		<category><![CDATA[mutt]]></category>
		<category><![CDATA[shift_jis]]></category>
		<category><![CDATA[sjis]]></category>
		<category><![CDATA[utf-8]]></category>
		<category><![CDATA[w3m]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=247</guid>
		<description><![CDATA[I use mutt on my FreeBSD system to read my mail. To read HTML mail I simply use a .mailcap file with an entry such as text/html;      w3m -dump %s; nametemplate=%s.html; copiousoutput This in effect dumps the HTML using w3m &#8230; <a href="http://www.in-nomine.org/2009/02/16/character-encoding-in-mailcap-for-mutt-and-w3m/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I use mutt on my FreeBSD system to read my mail. To read HTML mail I simply use a <code>.mailcap</code> file with an entry such as</p>
<p><code>text/html;      w3m -dump %s; nametemplate=%s.html; copiousoutput</code></p>
<p>This in effect dumps the HTML using w3m to a text file in order to safely display it. The problem that I had is that, because some emails that I receive are from a Japanese translators list, they are in Shift_JIS. When dumped w3m doesn&#8217;t properly detect the Shift_JIS encoding and as such the resulting output becomes garbled.</p>
<p>When I looked at the attachments in the mail with mutt&#8217;s &#8216;v&#8217; command I saw that mutt at least knows the encoding of the attachment, so I figured that there should be a way of using this information with my mailcap. Turns out that there is indeed a way to do so, namely the charset variable. It turns out the mailcap format is a full RFC. <a title="RFC 1524: A User Agent Configuration Mechanism For Multimedia Mail Format Information" href="http://tools.ietf.org/html/rfc1524">RFC 1524</a> to be exact. Mutt furthermore uses the <code>Content-Type</code> headers to pull any specific settings into mailcap variables. So a <code>Content-Type: text/html; charset=shift_jis</code> means that <code>%{charset}</code> in the mailcap file will be expanded to <code>shift_jis</code>. We can use this with w3m&#8217;s -I flag to set a proper encoding prior to dumping.</p>
<p><code>text/html;      w3m -I %{charset} -dump %s; nametemplate=%s.html; copiousoutput</code></p>
<p>As such you can be relatively sure that the dumped text will be in the appropriate encoding. Of course it depends on a properly set Content-Type header, but if you cannot depend on that one you need to dig out the recovery tools already.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2009/02/16/character-encoding-in-mailcap-for-mutt-and-w3m/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Email threading and breaking it</title>
		<link>http://www.in-nomine.org/2008/06/01/email-threading-and-breaking-it/</link>
		<comments>http://www.in-nomine.org/2008/06/01/email-threading-and-breaking-it/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 08:02:21 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[outlook express]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=242</guid>
		<description><![CDATA[One thing that has been annoying me over the past years is that on mailinglists people with Outlook or Outlook Express clients tend to start a new thread by replying to an email in another thread. They remove the body, &#8230; <a href="http://www.in-nomine.org/2008/06/01/email-threading-and-breaking-it/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One thing that has been annoying me over the past years is that on mailinglists people with Outlook or Outlook Express clients tend to start a new thread by replying to an email in another thread. They remove the body, perhaps some cc: information, change the subject, write their body and send it off. Since Outlook supports completion for to: and cc: fields, it seems a bit of a timewaster to start a new topic like that.</p>
<p>But leaving all that aside, the worst part is that Outlook doesn&#8217;t show you all headers, in particular it leaves the <code>References</code> header intact, which means it is now a reply to an earlier post in another thread. And so threading is broken. You might think &#8220;why be annoyed over it&#8221;, well, the problem is that online mailinglist indexes use this information for proper navigating through a thread. Typically they provide a &#8216;next by thread&#8217; and &#8216;previous by thread&#8217; hyperlink to navigate, but the logical flow of the thread is now broken.</p>
<p>So whenever I see someone with Outlook do this, I send them a note about this in private and most often they adjust the way they work, since, like I stated earlier, starting a new message is actually even faster.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2008/06/01/email-threading-and-breaking-it/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lightning 0.8 released</title>
		<link>http://www.in-nomine.org/2008/04/09/lightning-08-released/</link>
		<comments>http://www.in-nomine.org/2008/04/09/lightning-08-released/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 11:39:24 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[lightning]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=223</guid>
		<description><![CDATA[For those of you using Thunderbird and want a calendaring option inside of Thunderbird to communicate properly with people using Outlook or Lotus Notes that send you invitations for meetings and the like: Mozilla&#8217;s Lightning is now at version 0.8. &#8230; <a href="http://www.in-nomine.org/2008/04/09/lightning-08-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For those of you using Thunderbird and want a calendaring option inside of Thunderbird to communicate properly with people using Outlook or Lotus Notes that send you invitations for meetings and the like: <a title="Mozilla Lightning" href="http://www.mozilla.org/projects/calendar/lightning/">Mozilla&#8217;s Lightning is now at version 0.8</a>. Lightning is an add-on for Thunderbird based on <a title="Mozilla Sunbird" href="http://www.mozilla.org/projects/calendar/sunbird/">Sunbird</a>.</p>
<p>If you then also use the <a title="Provider for Google Calendar add-on" href="https://addons.mozilla.org/en-US/thunderbird/addon/4631">Provider for Google Calendar</a> you can synchronise your <a title="Google Calendar" href="http://www.google.com/calendar">Google Calendar</a> with your Lightning setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2008/04/09/lightning-08-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

