<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Blogging via mail, securely</title>
	<atom:link href="http://slackerbit.ch/2003/02/01/blogging-via-mail-securely/feed/" rel="self" type="application/rss+xml" />
	<link>http://slackerbit.ch/2003/02/01/blogging-via-mail-securely/</link>
	<description>Did I say that?</description>
	<lastBuildDate>Mon, 21 Jun 2004 22:00:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Jacob Taylor</title>
		<link>http://slackerbit.ch/2003/02/01/blogging-via-mail-securely/comment-page-1/#comment-35</link>
		<dc:creator>Jacob Taylor</dc:creator>
		<pubDate>Mon, 19 Apr 2004 10:26:41 +0000</pubDate>
		<guid isPermaLink="false">http://slackerbit.ch/wordpress/?p=75#comment-35</guid>
		<description>Great site and great information.

&lt;a href=&quot;http://www.jacobtaylor.0catch.com&quot; rel=&quot;nofollow&quot;&gt;Jacob Taylor&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Great site and great information.</p>
<p><a href="http://www.jacobtaylor.0catch.com" rel="nofollow">Jacob Taylor</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anders</title>
		<link>http://slackerbit.ch/2003/02/01/blogging-via-mail-securely/comment-page-1/#comment-33</link>
		<dc:creator>Anders</dc:creator>
		<pubDate>Wed, 14 Jan 2004 12:32:51 +0000</pubDate>
		<guid isPermaLink="false">http://slackerbit.ch/wordpress/?p=75#comment-33</guid>
		<description>The above comment is a spam from a &quot;Penis enlargement&quot; netfirms .com company. I recommend the installation of MT blacklist with a proper primer blacklist to avoid your comments sections being abused for this purpose

Links here:

&lt;a href=&quot;http://www.jacobsen.no/anders/blog/archives/2004/01/02/blacklisting_spammers.html&quot; rel=&quot;nofollow&quot;&gt;http://www.jacobsen.no/anders/blog/archives/2004/01/02/blacklisting_spammers.html&lt;/a&gt;
&lt;a href=&quot;http://www.jayallen.org/projects/mt-blacklist/&quot; rel=&quot;nofollow&quot;&gt;http://www.jayallen.org/projects/mt-blacklist/&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>The above comment is a spam from a &#8220;Penis enlargement&#8221; netfirms .com company. I recommend the installation of MT blacklist with a proper primer blacklist to avoid your comments sections being abused for this purpose</p>
<p>Links here:</p>
<p><a href="http://www.jacobsen.no/anders/blog/archives/2004/01/02/blacklisting_spammers.html" rel="nofollow">http://www.jacobsen.no/anders/blog/archives/2004/01/02/blacklisting_spammers.html</a><br />
<a href="http://www.jayallen.org/projects/mt-blacklist/" rel="nofollow">http://www.jayallen.org/projects/mt-blacklist/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LinkLog - Stuff to read</title>
		<link>http://slackerbit.ch/2003/02/01/blogging-via-mail-securely/comment-page-1/#comment-56</link>
		<dc:creator>LinkLog - Stuff to read</dc:creator>
		<pubDate>Wed, 25 Jun 2003 14:45:02 +0000</pubDate>
		<guid isPermaLink="false">http://slackerbit.ch/wordpress/?p=75#comment-56</guid>
		<description>&lt;strong&gt;Secure blogging via email&lt;/strong&gt;

I have been thinking for a while about how to make email-publishing more secure. Obvious solution is to add a personal signature, based on something like PGP......</description>
		<content:encoded><![CDATA[<p><strong>Secure blogging via email</strong></p>
<p>I have been thinking for a while about how to make email-publishing more secure. Obvious solution is to add a personal signature, based on something like PGP&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reverend Jim</title>
		<link>http://slackerbit.ch/2003/02/01/blogging-via-mail-securely/comment-page-1/#comment-31</link>
		<dc:creator>Reverend Jim</dc:creator>
		<pubDate>Mon, 21 Apr 2003 17:03:54 +0000</pubDate>
		<guid isPermaLink="false">http://slackerbit.ch/wordpress/?p=75#comment-31</guid>
		<description>There is a small bug. RFC3156 states that:

---
Upon receipt of a signed message, an application MUST:

(1)   Convert line endings to the canonical [CR][LF] sequence before the signature can be verified.  This is necessary since the local MTA may have converted to a local end of line convention.
---

Since your script doesn&#039;t do this, it breaks when used with MTAs that do convert line endings. In particular, when using Evolution through Exim. 

The fix is simple.

After you gather the body of the message (the text/plain) part, instead of spitting it out directly to the file, do this...

my $tmp = $part-&gt;stringify;
$tmp =~ s/\n/\r\n/g;
print $bodyfh $tmp;




Thanks for providing a great tool. It works wonderfully.</description>
		<content:encoded><![CDATA[<p>There is a small bug. RFC3156 states that:</p>
<p>&#8212;<br />
Upon receipt of a signed message, an application MUST:</p>
<p>(1)   Convert line endings to the canonical [CR][LF] sequence before the signature can be verified.  This is necessary since the local MTA may have converted to a local end of line convention.<br />
&#8212;</p>
<p>Since your script doesn&#8217;t do this, it breaks when used with MTAs that do convert line endings. In particular, when using Evolution through Exim. </p>
<p>The fix is simple.</p>
<p>After you gather the body of the message (the text/plain) part, instead of spitting it out directly to the file, do this&#8230;</p>
<p>my $tmp = $part-&gt;stringify;<br />
$tmp =~ s/\n/\r\n/g;<br />
print $bodyfh $tmp;</p>
<p>Thanks for providing a great tool. It works wonderfully.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nos Devolvemos</title>
		<link>http://slackerbit.ch/2003/02/01/blogging-via-mail-securely/comment-page-1/#comment-55</link>
		<dc:creator>Nos Devolvemos</dc:creator>
		<pubDate>Tue, 01 Apr 2003 20:05:17 +0000</pubDate>
		<guid isPermaLink="false">http://slackerbit.ch/wordpress/?p=75#comment-55</guid>
		<description></description>
		<content:encoded><![CDATA[<p><strong>Puliendo el sistema</strong></p>
<p>Tema plantillas del MhonArc: he encontrado las variables que definen el TAG &lt;LITEMPLATE&gt;, que es el encargado de la configuración&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clay Johnson</title>
		<link>http://slackerbit.ch/2003/02/01/blogging-via-mail-securely/comment-page-1/#comment-30</link>
		<dc:creator>Clay Johnson</dc:creator>
		<pubDate>Fri, 28 Mar 2003 18:19:12 +0000</pubDate>
		<guid isPermaLink="false">http://slackerbit.ch/wordpress/?p=75#comment-30</guid>
		<description>Thatnks for the inspiration. While I didn&#039;t use your script for a base (I&#039;m a php head, not a perl one), I made a multi-user mail 2 blog (which is very insecure) here:

http://www.clayjohnson.org/xmlrpc/mt_register.html

Check it out!</description>
		<content:encoded><![CDATA[<p>Thatnks for the inspiration. While I didn&#8217;t use your script for a base (I&#8217;m a php head, not a perl one), I made a multi-user mail 2 blog (which is very insecure) here:</p>
<p><a href="http://www.clayjohnson.org/xmlrpc/mt_register.html" rel="nofollow">http://www.clayjohnson.org/xmlrpc/mt_register.html</a></p>
<p>Check it out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Snappy the Clam</title>
		<link>http://slackerbit.ch/2003/02/01/blogging-via-mail-securely/comment-page-1/#comment-54</link>
		<dc:creator>Snappy the Clam</dc:creator>
		<pubDate>Wed, 19 Mar 2003 20:59:22 +0000</pubDate>
		<guid isPermaLink="false">http://slackerbit.ch/wordpress/?p=75#comment-54</guid>
		<description>&lt;strong&gt;Last test for now&lt;/strong&gt;

OK, this should about do it. I grabbed a mail to MT script from slackerbit.ch, and with a bit of...</description>
		<content:encoded><![CDATA[<p><strong>Last test for now</strong></p>
<p>OK, this should about do it. I grabbed a mail to MT script from slackerbit.ch, and with a bit of&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Snappy the Clam</title>
		<link>http://slackerbit.ch/2003/02/01/blogging-via-mail-securely/comment-page-1/#comment-53</link>
		<dc:creator>Snappy the Clam</dc:creator>
		<pubDate>Wed, 19 Mar 2003 20:56:31 +0000</pubDate>
		<guid isPermaLink="false">http://slackerbit.ch/wordpress/?p=75#comment-53</guid>
		<description>&lt;strong&gt;Last test for now&lt;/strong&gt;

OK, this should about do it. I grabbed a mail to MT script from href=&quot;http://slackerbit.ch/archives/2003/02/01/blogging_via_mail_securely.html&quot;&gt;slackerbit.ch, and with a bit of...</description>
		<content:encoded><![CDATA[<p><strong>Last test for now</strong></p>
<p>OK, this should about do it. I grabbed a mail to MT script from href=&#8221;http://slackerbit.ch/archives/2003/02/01/blogging_via_mail_securely.html&#8221;&gt;slackerbit.ch, and with a bit of&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nos Devolvemos</title>
		<link>http://slackerbit.ch/2003/02/01/blogging-via-mail-securely/comment-page-1/#comment-52</link>
		<dc:creator>Nos Devolvemos</dc:creator>
		<pubDate>Wed, 19 Mar 2003 02:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://slackerbit.ch/wordpress/?p=75#comment-52</guid>
		<description></description>
		<content:encoded><![CDATA[<p><strong>Una semana de correo público</strong></p>
<p>Lee mi correo Pues debe ser la semana en que menos flujo de correo he tenido. En cambio casi que</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nos Devolvemos</title>
		<link>http://slackerbit.ch/2003/02/01/blogging-via-mail-securely/comment-page-1/#comment-51</link>
		<dc:creator>Nos Devolvemos</dc:creator>
		<pubDate>Thu, 06 Mar 2003 03:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://slackerbit.ch/wordpress/?p=75#comment-51</guid>
		<description></description>
		<content:encoded><![CDATA[<p><strong>Novedades técnicas sobre publicar correo automáticamente (II)</strong></p>
<p>El MhonArc está instalado en un servidor de la universidad que funciona con Linux, podéis ver cómo va quedando, pero</p>
]]></content:encoded>
	</item>
</channel>
</rss>
