<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-13969</id>
	<title>Nabble - MHonArc</title>
	<updated>2009-01-01T18:17:48Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/MHonArc-f13969.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/MHonArc-f13969.html" />
	<subtitle type="html">MHonArc is a Perl mail-to-HTML converter. MHonArc provides HTML mail archiving with index, mail thread linking, etc; plus other capabilities including support for MIME and powerful user customization features. MHonArc home is &lt;a href=&quot;http://www.mhonarc.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-21247344</id>
	<title>[bug #25225] dir_create() fails to make temporary directories (PATCH)</title>
	<published>2009-01-01T18:17:48Z</published>
	<updated>2009-01-01T18:17:48Z</updated>
	<author>
		<name>Anatoly Sokolov-3</name>
	</author>
	<content type="html">&lt;br&gt;URL:
&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?25225&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?25225&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary: dir_create() fails to make temporary directories
&lt;br&gt;(PATCH)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: MHonArc
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Submitted by: benmwebb
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Submitted on: Fri 02 Jan 2009 02:17:45 AM GMT
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Category: Mail Parsing
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Severity: 3 - Normal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Item Group: Crash Error
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Status: None
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Privacy: Public
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assigned to: None
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Open/Closed: Open
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Discussion Lock: Any
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Operating System: Linux
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Perl Version: 5.10.0
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Component Version: 2.6.16
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fixed Release: 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Details:
&lt;br&gt;&lt;br&gt;Using MHonArc to produce a web archive of an mbox with a command similar to
&lt;br&gt;&lt;br&gt;mhonarc foo.mbox -rcfile foo.rc -outdir archives/2009/
&lt;br&gt;&lt;br&gt;(where archives/2009 does not yet exist) fails when it reaches the first
&lt;br&gt;email with an attachment, with an error message similar to
&lt;br&gt;&lt;br&gt;ERROR: Unable to rename &amp;quot;archives/2009/dir&amp;lt;random string&amp;gt;&amp;quot; to
&lt;br&gt;&amp;quot;archives/2009/msg00047&amp;quot;:
&lt;br&gt;&lt;br&gt;However, checking the archives/2009 directory reveals that the msg00047
&lt;br&gt;directory *does* exist, and in fact if the same mhonarc command is rerun it
&lt;br&gt;passes that message successfully - but then fails on the next message with an
&lt;br&gt;attachment (and so on). Also, the directory is created with the wrong
&lt;br&gt;permissions (it is not world-readable, so Apache can't read the attachments).
&lt;br&gt;&lt;br&gt;I tracked down the problem to the dir_create() function in mhfile.pl (see
&lt;br&gt;attached patch). If the rename of $tmpdir to $path *succeeds*, the loop
&lt;br&gt;continues until TEMP_MAX_TRIES is exceeded. The attached patch exits the loop
&lt;br&gt;after the first successful rename().
&lt;br&gt;&lt;br&gt;BTW, since chmod() is run on the new directory at the end of that function,
&lt;br&gt;perhaps the last 'return' statement should be removed? (And maybe the
&lt;br&gt;second-to-last should become a 'last', but that one I'm not so sure about.)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;File Attachments:
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------
&lt;br&gt;Date: Fri 02 Jan 2009 02:17:46 AM GMT &amp;nbsp;Name: dir_create.patch &amp;nbsp;Size: 405B &amp;nbsp;
&lt;br&gt;By: benmwebb
&lt;br&gt;dir_create.patch
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/download.php?file_id=17185&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/download.php?file_id=17185&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?25225&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?25225&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.nongnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=21247344&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-bug--25225--dir_create%28%29-fails-to-make-temporary-directories-%28PATCH%29-tp21247344p21247344.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-21129810</id>
	<title>[bug #14704] HTML mail does not get its charset converted (patch included)</title>
	<published>2008-12-22T07:37:08Z</published>
	<updated>2008-12-22T07:37:08Z</updated>
	<author>
		<name>Anatoly Sokolov-3</name>
	</author>
	<content type="html">&lt;br&gt;Update of bug #14704 (project mhonarc):
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Discussion Lock: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Any =&amp;gt; Locked &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?14704&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?14704&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message posté via/par Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.nongnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=21129810&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-bug--14704--HTML-mail-does-not-get-its-charset-converted-%28patch-included%29-tp4804425p21129810.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-21092732</id>
	<title>Sorry for spam posts to MHonArc project</title>
	<published>2008-12-19T07:01:32Z</published>
	<updated>2008-12-19T07:01:32Z</updated>
	<author>
		<name>Earl Hood</name>
	</author>
	<content type="html">&lt;br&gt;I apologize for the spam posts being done to one of the (old) bug
&lt;br&gt;items for the mhonarc project hosted on savannah (which causes mails
&lt;br&gt;to be sent to this list).
&lt;br&gt;&lt;br&gt;I've sent an email to Savannah support requesting that they block
&lt;br&gt;further posts to the bug item and to remove the offending comments
&lt;br&gt;posted.
&lt;br&gt;&lt;br&gt;--ewh
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=21092732&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Sorry-for-spam-posts-to-MHonArc-project-tp21092732p21092732.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-21092310</id>
	<title>[bug #14704] HTML mail does not get its charset converted (patch included)</title>
	<published>2008-12-19T06:33:12Z</published>
	<updated>2008-12-19T06:33:12Z</updated>
	<author>
		<name>Anatoly Sokolov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #7, bug #14704 (project mhonarc):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://nudesexycollegegirls.pornlivenews.com/articles/657322/teen-pussy-in-panties&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nudesexycollegegirls.pornlivenews.com/articles/657322/teen-pussy-in-panties&lt;/a&gt;&lt;br&gt;Teen pussy in panties
&lt;br&gt;&lt;a href=&quot;http://youngteenlesbians.pornlivenews.com/articles/657331/teen-lesbians-licking-pussy&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://youngteenlesbians.pornlivenews.com/articles/657331/teen-lesbians-licking-pussy&lt;/a&gt;&lt;br&gt;Teen lesbians licking pussy
&lt;br&gt;&lt;a href=&quot;http://teencumshotvideo.pornlivenews.com/articles/657370/home-made-cumshots-video&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://teencumshotvideo.pornlivenews.com/articles/657370/home-made-cumshots-video&lt;/a&gt;&lt;br&gt;Home made cumshots video
&lt;br&gt;&lt;a href=&quot;http://nudesexycollegegirls.pornlivenews.com/articles/657324/wet-and-dirty-college-girl-making-out&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nudesexycollegegirls.pornlivenews.com/articles/657324/wet-and-dirty-college-girl-making-out&lt;/a&gt;&lt;br&gt;Wet and dirty college girl making out
&lt;br&gt;&lt;a href=&quot;http://nudesexycollegegirls.pornlivenews.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nudesexycollegegirls.pornlivenews.com/&lt;/a&gt;&amp;nbsp;Nude sexy college girls
&lt;br&gt;&lt;a href=&quot;http://youngteenlesbians.pornlivenews.com/articles/657336/lesbian-school-girls-photo-and-video&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://youngteenlesbians.pornlivenews.com/articles/657336/lesbian-school-girls-photo-and-video&lt;/a&gt;&lt;br&gt;Lesbian school girls photo and video
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?14704&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?14704&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.nongnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=21092310&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-bug--14704--HTML-mail-does-not-get-its-charset-converted-%28patch-included%29-tp4804425p21092310.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-21071150</id>
	<title>[bug #14704] HTML mail does not get its charset converted (patch included)</title>
	<published>2008-12-18T03:39:46Z</published>
	<updated>2008-12-18T03:39:46Z</updated>
	<author>
		<name>Anatoly Sokolov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #6, bug #14704 (project mhonarc):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://interracialsexvideo.blogtur.com/1532784/Free-interracial-sex-videos.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://interracialsexvideo.blogtur.com/1532784/Free-interracial-sex-videos.html&lt;/a&gt;&lt;br&gt;Free interracial sex videos
&lt;br&gt;&lt;a href=&quot;http://freecumshotmovies.blogtur.com/1532623/Cum-on-my-tits.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://freecumshotmovies.blogtur.com/1532623/Cum-on-my-tits.html&lt;/a&gt;&amp;nbsp;Cum on my
&lt;br&gt;tits
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?14704&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?14704&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.nongnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=21071150&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-bug--14704--HTML-mail-does-not-get-its-charset-converted-%28patch-included%29-tp4804425p21071150.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20913929</id>
	<title>[bug #14704] HTML mail does not get its charset converted (patch included)</title>
	<published>2008-12-09T04:37:25Z</published>
	<updated>2008-12-09T04:37:25Z</updated>
	<author>
		<name>Anatoly Sokolov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #5, bug #14704 (project mhonarc):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://hotsecretarysex.pornlivenews.com/articles/636680/secretaries-in-short-skirts-stockings&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hotsecretarysex.pornlivenews.com/articles/636680/secretaries-in-short-skirts-stockings&lt;/a&gt;&lt;br&gt;Secretaries in short skirts stockings
&lt;br&gt;&lt;a href=&quot;http://hotsecretarysex.pornlivenews.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hotsecretarysex.pornlivenews.com/&lt;/a&gt;&amp;nbsp;Secretary sex. Secretaries in short
&lt;br&gt;skirts. Secretary fuck, secretary in stocking
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?14704&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?14704&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.nongnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20913929&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-bug--14704--HTML-mail-does-not-get-its-charset-converted-%28patch-included%29-tp4804425p20913929.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20852654</id>
	<title>[bug #14704] HTML mail does not get its charset converted (patch included)</title>
	<published>2008-12-05T04:07:25Z</published>
	<updated>2008-12-05T04:07:25Z</updated>
	<author>
		<name>Anatoly Sokolov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #4, bug #14704 (project mhonarc):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://freelesbianporn.pornlivenews.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://freelesbianporn.pornlivenews.com/&lt;/a&gt;&amp;nbsp;free lesbian porn video
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?14704&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?14704&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.nongnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20852654&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-bug--14704--HTML-mail-does-not-get-its-charset-converted-%28patch-included%29-tp4804425p20852654.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20847175</id>
	<title>Re: Showing only one and last email of a mbox in the archive</title>
	<published>2008-12-04T19:24:23Z</published>
	<updated>2008-12-04T19:24:23Z</updated>
	<author>
		<name>Gunnar Hjalmarsson</name>
	</author>
	<content type="html">Ganoksin wrote:
&lt;br&gt;&amp;gt; I need to create an archive where only one email is shown. the last one 
&lt;br&gt;&amp;gt; received. any suggestion on how to get around it? thanks!
&lt;br&gt;&lt;br&gt;Check out the &amp;lt;MAXSIZE&amp;gt; resource.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Gunnar Hjalmarsson
&lt;br&gt;Email: &lt;a href=&quot;http://www.gunnar.cc/cgi-bin/contact.pl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gunnar.cc/cgi-bin/contact.pl&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Showing-only-one-and-last-email-of-a-mbox-in-the-archive-tp20847093p20847175.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20847093</id>
	<title>Showing only one and last email of a mbox in the archive</title>
	<published>2008-12-04T19:12:34Z</published>
	<updated>2008-12-04T19:12:34Z</updated>
	<author>
		<name>Ganoksin</name>
	</author>
	<content type="html">I need to create an archive where only one email is shown. the last one received. any suggestion on how to get around it? thanks!&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Showing-only-one-and-last-email-of-a-mbox-in-the-archive-tp20847093p20847093.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20514539</id>
	<title>Re: inverted quoting</title>
	<published>2008-11-15T03:26:41Z</published>
	<updated>2008-11-15T03:26:41Z</updated>
	<author>
		<name>martin f krafft-2</name>
	</author>
	<content type="html">In the context of this discussion, it might be possible to just
&lt;br&gt;assemble threads in a single place, using the context of new content
&lt;br&gt;based on the quotations. I think
&lt;br&gt;&lt;a href=&quot;http://harnly.net/publications/Yeh-2006-Email%20Thread%20Reassembly%20Using%20Similarity%20Matching.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://harnly.net/publications/Yeh-2006-Email%20Thread%20Reassembly%20Using%20Similarity%20Matching.pdf&lt;/a&gt;&lt;br&gt;may be of interest.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;martin | &lt;a href=&quot;http://madduck.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://madduck.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://two.sentenc.es/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://two.sentenc.es/&lt;/a&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;i might disagree with what you have to say,
&lt;br&gt;&amp;nbsp;but I'll defend to the death your right to say it.&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;-- voltaire
&lt;br&gt;&amp;nbsp;
&lt;br&gt;spamtraps: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20514539&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;madduck.bogus@...&lt;/a&gt;
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://www.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;digital_signature_gpg.asc&lt;/strong&gt; (204 bytes) &lt;a href=&quot;http://www.nabble.com/attachment/20514539/0/digital_signature_gpg.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/inverted-quoting-tp20419693p20514539.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20419693</id>
	<title>inverted quoting</title>
	<published>2008-11-10T05:14:16Z</published>
	<updated>2008-11-10T05:14:16Z</updated>
	<author>
		<name>martin f krafft-2</name>
	</author>
	<content type="html">Dear list,
&lt;br&gt;&lt;br&gt;It seems to me that quoted replies in emails are somewhat backwards.
&lt;br&gt;The following as an example:
&lt;br&gt;&lt;br&gt;| &amp;gt; &amp;gt; Instead of having higher levels of indentation for text that
&lt;br&gt;| &amp;gt; &amp;gt; came first
&lt;br&gt;| &amp;gt;
&lt;br&gt;| &amp;gt; it would make a lot more sense to reverse the indentation,
&lt;br&gt;|
&lt;br&gt;| especially when archiving mails that aren't going to be used by
&lt;br&gt;| a MUA to correspond.
&lt;br&gt;&lt;br&gt;I'd say for a web archive, the following would make a lot more
&lt;br&gt;sense:
&lt;br&gt;&lt;br&gt;| Text tha came first does not get indented, but instead serves to
&lt;br&gt;| as the main text and anchor
&lt;br&gt;|
&lt;br&gt;| &amp;nbsp; for text which is in reply to the email, which is quotes
&lt;br&gt;|
&lt;br&gt;| &amp;nbsp; &amp;nbsp; which makes it a lot more obvious to the eye.
&lt;br&gt;&lt;br&gt;This allows a reader to easily skip interjections simply by not
&lt;br&gt;following indentation levels, and with the proper bit of
&lt;br&gt;XHTML/JavaScript/CSS, replies could even become foldable.
&lt;br&gt;&lt;br&gt;I had a brief look at mhonarc and found the plugin architecture that
&lt;br&gt;makes mhonarc a really cool tool.
&lt;br&gt;&lt;br&gt;Unfortunately, my Perl-skills are non-existent. Fortunately, my
&lt;br&gt;girlfriend knows the language a bit better, and so she threw
&lt;br&gt;together the attached script yesterday, which takes a message and
&lt;br&gt;outputs HTML which does the inversion. It is proof-of-concept and
&lt;br&gt;several rough edges need to be smoothed out.
&lt;br&gt;&lt;br&gt;Do you think it is possible to write a mhonarc plugin on the basis
&lt;br&gt;of this logic? Would anyone like to give it a shot?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;martin; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(greetings from the heart of the sun.)
&lt;br&gt;&amp;nbsp; \____ echo mailto: !#^.&amp;quot;&amp;lt;*&amp;gt;&amp;quot;|tr &amp;quot;&amp;lt;*&amp;gt; mailto:&amp;quot; net@madduck
&lt;br&gt;&amp;nbsp;
&lt;br&gt;obviously i was either onto something, or on something.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;-- larry wall on the creation of perl
&lt;br&gt;&amp;nbsp;
&lt;br&gt;spamtraps: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20419693&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;madduck.bogus@...&lt;/a&gt;
&lt;br&gt;&lt;br /&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;tt&gt;#!/usr/bin/perl -w
&lt;br&gt;#
&lt;br&gt;# mail2html-invert - converts a mail to HTML and inverts the quoting
&lt;br&gt;#
&lt;br&gt;# Copyright © 2008 Penny Leach &amp;lt;penny at mjollnir.org&amp;gt;
&lt;br&gt;# Released under the GPLv2
&lt;br&gt;#
&lt;br&gt;&lt;br&gt;use strict;
&lt;br&gt;use warnings;
&lt;br&gt;use Text::Quoted;
&lt;br&gt;use HTML::Entities;
&lt;br&gt;&lt;br&gt;# configurable bits
&lt;br&gt;my $printblockquotes = 1; # change this to 0 if you want &amp;lt;p class=&amp;quot;leveln&amp;quot;&amp;gt; instead of &amp;lt;blockquote&amp;gt;&amp;lt;blockquote&amp;gt; etc
&lt;br&gt;my $title = 'email'; &amp;nbsp; &amp;nbsp; &amp;nbsp;# this could helpfully extract the names in the email or such
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;my $raw; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; # raw body of message
&lt;br&gt;my $bodystarted; &amp;nbsp; # flag for end of headers
&lt;br&gt;my @newstructure; &amp;nbsp;# post-processed structure
&lt;br&gt;my $maxlevel = 0; &amp;nbsp;# for inverting indenting
&lt;br&gt;&lt;br&gt;print &amp;lt;&amp;lt;EOH;
&lt;br&gt;&amp;lt;!DOCTYPE html
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Strict//EN&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;html&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt;$title&amp;lt;/title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;body&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;p class=&amp;quot;headers&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;EOH
&lt;br&gt;&lt;br&gt;while (&amp;lt;STDIN&amp;gt;) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (/^$/ &amp;&amp; !$bodystarted) { # empty line, start processing body after this
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $bodystarted = 1;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; print &amp;quot;&amp;lt;/p&amp;gt;\n&amp;quot;; # end the paragraph containing headers
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; next;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; unless ($bodystarted) { # if we're still processing headers, just print them
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; chomp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; print encode_entities($_) . &amp;quot;&amp;lt;br /&amp;gt;\n&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; next;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; $raw .= $_;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;# convert the raw body to some whack datastructure provide but Text::Quoted
&lt;br&gt;my $structure = extract($raw);
&lt;br&gt;&lt;br&gt;foreach my $item (@$structure) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; # process the weird format we have and turn it into something sensible and flatter
&lt;br&gt;&amp;nbsp; &amp;nbsp; handleitem($item);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;# each 'item' is basically one lump of text with an indent level, which we invert
&lt;br&gt;foreach my $item (@newstructure) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; my $invertedlevel = $maxlevel - $item-&amp;gt;{level};
&lt;br&gt;&amp;nbsp; &amp;nbsp; my $escaped = encode_entities($item-&amp;gt;{text});
&lt;br&gt;&amp;nbsp; &amp;nbsp; unless ($printblockquotes) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; print '&amp;lt;p class=&amp;quot;level' . $invertedlevel . '&amp;quot;&amp;gt;' . $escaped . '&amp;lt;/p&amp;gt;' . &amp;quot;\n&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; next;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; my $pre = '';
&lt;br&gt;&amp;nbsp; &amp;nbsp; my $post = '';
&lt;br&gt;&amp;nbsp; &amp;nbsp; for (1..$invertedlevel) { $pre .= '&amp;lt;blockquote&amp;gt;'; $post .= '&amp;lt;/blockquote&amp;gt;'; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; print $pre . '&amp;lt;p&amp;gt;' . $escaped . '&amp;lt;/p&amp;gt;' . &amp;nbsp;$post . &amp;quot;\n&amp;quot;;
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;&lt;br&gt;print &amp;quot; &amp;nbsp; &amp;nbsp;&amp;lt;/body&amp;gt;\n&amp;lt;/html&amp;gt;\n&amp;quot;;
&lt;br&gt;&lt;br&gt;&lt;br&gt;# --------------------------------------------------
&lt;br&gt;&lt;br&gt;# extract gives us back a weird structure that contains an array of either hashes or arrays
&lt;br&gt;# flatten it and add it into @newstructure with an indent level
&lt;br&gt;sub handleitem {
&lt;br&gt;&amp;nbsp; &amp;nbsp; my $item = shift;
&lt;br&gt;&amp;nbsp; &amp;nbsp; my $level = shift || 0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; $maxlevel = $level if $maxlevel &amp;lt; $level;
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (ref $item eq 'HASH') {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return if $item-&amp;gt;{empty};
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; push @newstructure, { 'text' =&amp;gt; $item-&amp;gt;{text}, 'level' =&amp;gt; $level};
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; elsif (ref $item eq 'ARRAY') {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; foreach my $newitem (@$item) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; handleitem($newitem, $level+1);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;/tt&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://www.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;digital_signature_gpg.asc&lt;/strong&gt; (204 bytes) &lt;a href=&quot;http://www.nabble.com/attachment/20419693/0/digital_signature_gpg.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/inverted-quoting-tp20419693p20419693.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19450980</id>
	<title>[bug #24247] iso2022jp.pl: unneeded ESC ( B remains in message body</title>
	<published>2008-09-12T00:31:48Z</published>
	<updated>2008-09-12T00:31:48Z</updated>
	<author>
		<name>Anatoly Sokolov-3</name>
	</author>
	<content type="html">&lt;br&gt;URL:
&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?24247&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?24247&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary: iso2022jp.pl: unneeded ESC ( B remains in message
&lt;br&gt;body
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: MHonArc
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Submitted by: ppp2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Submitted on: 2008年09月12日 07時31分46秒
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Category: Character Sets
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Severity: 3 - Normal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Item Group: Incorrect Behavior
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Status: None
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Privacy: Public
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assigned to: None
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Open/Closed: Open
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Discussion Lock: Any
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Operating System: All
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Perl Version: 5.8.7
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Component Version: 2.6.16
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fixed Release: 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Details:
&lt;br&gt;&lt;br&gt;iso2022jp.pl adds `ESC ( B's at the beginning of each line
&lt;br&gt;(@lines) which starts ASCII chars to simplify the program
&lt;br&gt;code.
&lt;br&gt;Of course, they should be removed after htmlization, but are
&lt;br&gt;not correctly removed.
&lt;br&gt;The attached patch fixes this problem.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;File Attachments:
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------
&lt;br&gt;Date: 2008年09月12日 07時31分46秒 &amp;nbsp;Name: iso2022jp.pl.diff &amp;nbsp;Size: 2kB &amp;nbsp;
&lt;br&gt;By: ppp2
&lt;br&gt;&lt;br&gt;&amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/download.php?file_id=16468&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/download.php?file_id=16468&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?24247&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?24247&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.nongnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19450980&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-bug--24247--iso2022jp.pl%3A-unneeded-ESC-%28-B-remains-in-message-body-tp19450980p19450980.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18682238</id>
	<title>[bug #23937] layout messes up on nonprintable characters sent by pidgin</title>
	<published>2008-07-27T17:05:18Z</published>
	<updated>2008-07-27T17:05:18Z</updated>
	<author>
		<name>Anatoly Sokolov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #1, bug #23937 (project mhonarc):
&lt;br&gt;&lt;br&gt;weird, savannah sent my bug report to a completely different project.
&lt;br&gt;&lt;br&gt;Sorry, this ticket is for another project. Please close :D
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?23937&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?23937&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.nongnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18682238&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-bug--23937--layout-messes-up-on-nonprintable-characters-sent-by-pidgin-tp18662068p18682238.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18662068</id>
	<title>[bug #23937] layout messes up on nonprintable characters sent by pidgin</title>
	<published>2008-07-25T17:59:48Z</published>
	<updated>2008-07-25T17:59:48Z</updated>
	<author>
		<name>Anatoly Sokolov-3</name>
	</author>
	<content type="html">&lt;br&gt;URL:
&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?23937&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?23937&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary: layout messes up on nonprintable characters sent by
&lt;br&gt;pidgin
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: MHonArc
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Submitted by: bunz
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Submitted on: Friday 07/25/2008 at 20:59
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Category: None
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Severity: 3 - Normal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Item Group: Undesired Behavior
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Status: None
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Privacy: Public
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assigned to: None
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Open/Closed: Open
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Discussion Lock: Any
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Operating System: Linux
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Perl Version: 5.8.8
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Component Version: 0.2.7dev (git)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fixed Release: 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Details:
&lt;br&gt;&lt;br&gt;pidgin's irc sends some weird characters which cause weechat window layout
&lt;br&gt;(the nick align, nick list border) to shift.
&lt;br&gt;&lt;br&gt;I've attached a screenshot of the behavior, and also the output from /debug
&lt;br&gt;buffer, with the weird three byte sequence highlighted.
&lt;br&gt;&lt;br&gt;pidgin doesn't always send these, but one reliable way for me to reproduce it
&lt;br&gt;is to copy and paste a long string from somewhere into the pidgin input widget
&lt;br&gt;(looks fine in gtk) and hitting enter.
&lt;br&gt;&lt;br&gt;may be a bug in pidgin but weechat should nevertheless silently ignore these.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;File Attachments:
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------
&lt;br&gt;Date: Friday 07/25/2008 at 20:59 &amp;nbsp;Name: pidgin_weechat.png &amp;nbsp;Size: 84kB &amp;nbsp; By:
&lt;br&gt;bunz
&lt;br&gt;&lt;br&gt;&amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/download.php?file_id=16185&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/download.php?file_id=16185&lt;/a&gt;&amp;gt;
&lt;br&gt;-------------------------------------------------------
&lt;br&gt;Date: Friday 07/25/2008 at 20:59 &amp;nbsp;Name: pidgin_weirdchars.png &amp;nbsp;Size: 17kB &amp;nbsp;
&lt;br&gt;By: bunz
&lt;br&gt;&lt;br&gt;&amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/download.php?file_id=16186&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/download.php?file_id=16186&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?23937&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?23937&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.nongnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18662068&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-bug--23937--layout-messes-up-on-nonprintable-characters-sent-by-pidgin-tp18662068p18662068.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18320989</id>
	<title>Re: RFC 5064 Archived-At header</title>
	<published>2008-07-07T09:36:37Z</published>
	<updated>2008-07-07T09:36:37Z</updated>
	<author>
		<name>Earl Hood</name>
	</author>
	<content type="html">On July 7, 2008 at 11:43, Barry Warsaw wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Actually RFC 3548 defines a &amp;quot;url safe&amp;quot; base64 alphabet which substitutes -
&lt;br&gt;&amp;gt; and _ for + and /. Python's base64 library supports this and I propose
&lt;br&gt;&amp;gt; using this alternative alphabet if we go with base64.
&lt;br&gt;&lt;br&gt;I did not know there was an RFC for this.
&lt;br&gt;&lt;br&gt;The RFC is marked as &amp;quot;Informational&amp;quot;, so how widely used is
&lt;br&gt;the URL-safe base64 encoding used?
&lt;br&gt;&lt;br&gt;Nothing is currently listed in the IETF assignments for this
&lt;br&gt;type of encoding:
&lt;br&gt;&lt;a href=&quot;http://www.iana.org/assignments/transfer-encodings&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.iana.org/assignments/transfer-encodings&lt;/a&gt;&lt;br&gt;&lt;br&gt;I have no problems going with it, as long as it is documented.
&lt;br&gt;However, from a usability perspective (possibly), the use
&lt;br&gt;of understrike can be a problem.
&lt;br&gt;&lt;br&gt;For example, links are normally rendered with an underline, and
&lt;br&gt;this rendering behavior can &amp;quot;hide&amp;quot; an understrike character, making
&lt;br&gt;the URL appear to have a space in it.
&lt;br&gt;&lt;br&gt;--ewh
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18320989&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-approved--RFC-5064-Archived-At-header-tp18493904p18320989.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18319655</id>
	<title>Re: RFC 5064 Archived-At header</title>
	<published>2008-07-07T08:36:57Z</published>
	<updated>2008-07-07T08:36:57Z</updated>
	<author>
		<name>Earl Hood</name>
	</author>
	<content type="html">On July 3, 2008 at 10:52, Barry Warsaw wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; You may be right that the readability argument is specious. It may be that
&lt;br&gt;&amp;gt; cut-n-paste is the overwhelming use case for archived-at. Does that mean
&lt;br&gt;&amp;gt; you'd argue for the slightly shorter base64 encoding of the hash?
&lt;br&gt;&lt;br&gt;I have no strong feelings on this matter, but base64 does allow
&lt;br&gt;for the '/' character, which can be a problem for usage within
&lt;br&gt;URLs since it is a path separator.
&lt;br&gt;&lt;br&gt;That alone may make base32 the better choice, even though it
&lt;br&gt;will lead to a longer string.
&lt;br&gt;&lt;br&gt;--ewh
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18319655&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-approved--RFC-5064-Archived-At-header-tp18493904p18319655.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18252864</id>
	<title>Re: RFC 5064 Archived-At header</title>
	<published>2008-07-02T23:44:56Z</published>
	<updated>2008-07-02T23:44:56Z</updated>
	<author>
		<name>Jeff Breidenbach</name>
	</author>
	<content type="html">&amp;gt;Will someone provide some real use case scenarios of how the&lt;br&gt;
&amp;gt;archived-at URL gets used by a message receipient. &amp;nbsp;If I have&lt;br&gt;
&amp;gt;the message locally, do I care where it is archived?&lt;br&gt;&lt;br&gt;It&amp;#39;s handy if you are writing a blog. For example, Linux Weekly &lt;br&gt;News reports on the Linux Kernel mailing list. They quote &lt;br&gt;particular messages, and provide an archival link. This lets readers&lt;br&gt;
examine the (possibly active) thread.&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lwn.net/Articles/286910/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lwn.net/Articles/286910/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://lwn.net/Articles/287490/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lwn.net/Articles/287490/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;
&lt;br&gt;&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-approved--RFC-5064-Archived-At-header-tp18493904p18252864.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18252469</id>
	<title>Re: RFC 5064 Archived-At header</title>
	<published>2008-07-02T23:11:23Z</published>
	<updated>2008-07-02T23:11:23Z</updated>
	<author>
		<name>Earl Hood</name>
	</author>
	<content type="html">On July 3, 2008 at 00:57, Barry Warsaw wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I've just updated the current proposal on the Mailman wiki:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://wiki.list.org/x/yQAM&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.list.org/x/yQAM&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; See specifically the Open Issues section. &amp;nbsp;The most straight-forward &amp;nbsp;
&lt;br&gt;&amp;gt; way to implement this leads to long, unusable (in our opinion) urls. &amp;nbsp; 
&lt;br&gt;&amp;gt; Shortening the urls would require quite a bit of additional &amp;nbsp;
&lt;br&gt;&amp;gt; implementation complexity. &amp;nbsp;What to do?
&lt;br&gt;&lt;br&gt;Quick editorial comment: in the &amp;quot;Open issues&amp;quot; section, you write:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;quot;... Mail-Archive.com uses MHonArc which requires the use of the
&lt;br&gt;&amp;nbsp; list name in the url.&amp;quot;
&lt;br&gt;&lt;br&gt;This is misleading wrt mhonarc. &amp;nbsp;Mhonarc imposes no requirement on
&lt;br&gt;how an archive is structured on the file system from a pathname
&lt;br&gt;perspective. &amp;nbsp;The convention is something imposed by the user.
&lt;br&gt;&lt;br&gt;&lt;br&gt;As for &amp;quot;readable URLs&amp;quot;, I still think it may be a bogus concern.
&lt;br&gt;Usability testing would have to be done to verify if this concern
&lt;br&gt;is real.
&lt;br&gt;&lt;br&gt;Wrt this context, it seems most will &amp;quot;click&amp;quot; on the URL in the mail
&lt;br&gt;message, or copy-n-paste it.
&lt;br&gt;&lt;br&gt;And even then, I wonder how much the link will actually get used.
&lt;br&gt;Will someone provide some real use case scenarios of how the
&lt;br&gt;archived-at URL gets used by a message receipient. &amp;nbsp;If I have
&lt;br&gt;the message locally, do I care where it is archived?
&lt;br&gt;&lt;br&gt;One reasonable case I can think of is if a receipient wants
&lt;br&gt;to tell others about the message, and instead of forwarding
&lt;br&gt;the message they got, they just send a URL to it, which would
&lt;br&gt;allows others to following subsequent follow-ups if they are
&lt;br&gt;not subscribed to the list.
&lt;br&gt;&lt;br&gt;Or, they bookmark the link so they can always go back to the
&lt;br&gt;message w/o having to archive in their local MUA.
&lt;br&gt;&lt;br&gt;Either scenario implies the user can either do a couple of clicks
&lt;br&gt;or just copy-n-paste the URL to their bookmark manager.
&lt;br&gt;&lt;br&gt;This implies the archive-at URL is mainly for bookmarking purposes. &amp;nbsp;I.e.
&lt;br&gt;I go to the archive and read some messages (or got their via a search).
&lt;br&gt;I see a message of interest, and want to bookmark it so I can go back
&lt;br&gt;to it directly.
&lt;br&gt;&lt;br&gt;--ewh
&lt;br&gt;&lt;br&gt;P.S. When time permits, I will look into mhonarc to see if it can
&lt;br&gt;be changed so the filenames it uses for messages can be based on
&lt;br&gt;Stable URL since stable filenames has been a problem for mhonarc.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Earl Hood, &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18252469&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;earl@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Web: &amp;lt;&lt;a href=&quot;http://www.earlhood.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.earlhood.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;PGP Public Key: &amp;lt;&lt;a href=&quot;http://www.earlhood.com/gpgpubkey.txt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.earlhood.com/gpgpubkey.txt&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18252469&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-approved--RFC-5064-Archived-At-header-tp18493904p18252469.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18493904</id>
	<title>[approved] RFC 5064 Archived-At header</title>
	<published>2008-07-02T21:57:06Z</published>
	<updated>2008-07-02T21:57:06Z</updated>
	<author>
		<name>Barry Warsaw-3</name>
	</author>
	<content type="html">-----BEGIN PGP SIGNED MESSAGE-----
&lt;br&gt;Hash: SHA1
&lt;br&gt;&lt;br&gt;Hello MHonArc and Mailman developers.
&lt;br&gt;&lt;br&gt;RFC 5064 describes the Archived-At header, which is used to point &amp;nbsp;
&lt;br&gt;directly to the archived version of a mailing list mail message. &amp;nbsp;The &amp;nbsp;
&lt;br&gt;value of this header could also be used in a message body footer, such &amp;nbsp;
&lt;br&gt;as the type that Mailman typically adds to its list copy of the &amp;nbsp;
&lt;br&gt;message. &amp;nbsp;Supporting this would be a big improvement in usability for &amp;nbsp;
&lt;br&gt;mailing lists and is an often requested feature of Mailman.
&lt;br&gt;&lt;br&gt;We have been having some off-list discussions recently between Jeff &amp;nbsp;
&lt;br&gt;Marshall and Jeff Breidenbach of the Mail-Archive.com, Earl Hood of &amp;nbsp;
&lt;br&gt;the MHonArc project and myself on approaches that would provide for &amp;nbsp;
&lt;br&gt;support of RFC 5064 Archived-At headers. &amp;nbsp;The RFC itself is agnostic &amp;nbsp;
&lt;br&gt;on how to calculate the value of this header, but it does provide some &amp;nbsp;
&lt;br&gt;suggestions. &amp;nbsp;On the mailman-developers mailing list a while ago we &amp;nbsp;
&lt;br&gt;discussed several ways of calculating this header, and in our private &amp;nbsp;
&lt;br&gt;discussions, we've refined our thoughts. &amp;nbsp;We're now at something of an &amp;nbsp;
&lt;br&gt;impasse, where the specific approach requires us to make some trade- 
&lt;br&gt;offs between implementation choices and usability. &amp;nbsp;It's now time to &amp;nbsp;
&lt;br&gt;get your feedback.
&lt;br&gt;&lt;br&gt;I've just updated the current proposal on the Mailman wiki:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://wiki.list.org/x/yQAM&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.list.org/x/yQAM&lt;/a&gt;&lt;br&gt;&lt;br&gt;See specifically the Open Issues section. &amp;nbsp;The most straight-forward &amp;nbsp;
&lt;br&gt;way to implement this leads to long, unusable (in our opinion) urls. &amp;nbsp; 
&lt;br&gt;Shortening the urls would require quite a bit of additional &amp;nbsp;
&lt;br&gt;implementation complexity. &amp;nbsp;What to do?
&lt;br&gt;&lt;br&gt;It's time to open this up to your ideas, but let me say that from &amp;nbsp;
&lt;br&gt;Mailman(3)'s perspective, the exact algorithm probably doesn't matter &amp;nbsp;
&lt;br&gt;much. &amp;nbsp;I have a bzr branch that implements the interfaces and &amp;nbsp;
&lt;br&gt;infrastructure for archiver plugins, so if MHonArc, Pipermail, and &amp;nbsp;
&lt;br&gt;Mail-Archive.com all chose different algorithms, we can fairly easily &amp;nbsp;
&lt;br&gt;write a different plugin for each. &amp;nbsp;Still, it would be good to &amp;nbsp;
&lt;br&gt;standardize on a usable, implementable approach.
&lt;br&gt;&lt;br&gt;I invite you to read the wiki page, and comment either there or as a &amp;nbsp;
&lt;br&gt;follow up to this message. &amp;nbsp;I am not on the mhonarc-dev mailing list.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;- -Barry
&lt;br&gt;P.S. mhonarc-devs: I apologize in advance for the replybot on my email &amp;nbsp;
&lt;br&gt;address.
&lt;br&gt;&lt;br&gt;-----BEGIN PGP SIGNATURE-----
&lt;br&gt;Version: GnuPG v1.4.9 (Darwin)
&lt;br&gt;&lt;br&gt;iEYEARECAAYFAkhsXCIACgkQ2YZpQepbvXFvNwCgg6jS/6NgmwYMa1W+9786Qd63
&lt;br&gt;d00AoLJ99UEbKmvoBRUGbVi+B+PHJZEk
&lt;br&gt;=Lzo8
&lt;br&gt;-----END PGP SIGNATURE-----
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18493904&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-approved--RFC-5064-Archived-At-header-tp18493904p18493904.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17762083</id>
	<title>Re: Incorporating Messages Already in mhonarc Format</title>
	<published>2008-06-10T11:39:00Z</published>
	<updated>2008-06-10T11:39:00Z</updated>
	<author>
		<name>Douglas Kline-2</name>
	</author>
	<content type="html">&amp;gt; Douglas Kline wrote:
&lt;br&gt;&amp;gt; &amp;gt; We are running MHonArc v2.4.6 under Linux Fedora Core 6.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I would like to ask how to incorporate messages and associated attachment f
&lt;br&gt;iles
&lt;br&gt;&amp;gt; &amp;gt; which are already in mhonarc format into a mhonarc archive. &amp;nbsp;These messages
&lt;br&gt;&amp;gt; &amp;gt; were built into an archive which is no longer in use. &amp;nbsp;The e-mail spooling
&lt;br&gt;&amp;gt; &amp;gt; files which mhonarc read to process these messages are no longer available.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; One way might be to make use of the mhn2mbox.pl program. See 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.mhonarc.org/MHonArc/contrib/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.mhonarc.org/MHonArc/contrib/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks. &amp;nbsp;That worked. &amp;nbsp;It created a spooling-type file which I then read with
&lt;br&gt;mhonarc to incorporate the messages into the archive where we wanted them.
&lt;br&gt;&lt;br&gt;Douglas Kline
&lt;br&gt;&lt;br&gt;========
&lt;br&gt;Douglas M. Kline
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17762083&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kline@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Incorporating-Messages-Already-in-mhonarc-Format-tp17703460p17762083.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17703600</id>
	<title>Re: Incorporating Messages Already in mhonarc Format</title>
	<published>2008-06-06T17:08:19Z</published>
	<updated>2008-06-06T17:08:19Z</updated>
	<author>
		<name>Gunnar Hjalmarsson</name>
	</author>
	<content type="html">Douglas Kline wrote:
&lt;br&gt;&amp;gt; We are running MHonArc v2.4.6 under Linux Fedora Core 6.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I would like to ask how to incorporate messages and associated attachment files
&lt;br&gt;&amp;gt; which are already in mhonarc format into a mhonarc archive. &amp;nbsp;These messages
&lt;br&gt;&amp;gt; were built into an archive which is no longer in use. &amp;nbsp;The e-mail spooling
&lt;br&gt;&amp;gt; files which mhonarc read to process these messages are no longer available.
&lt;br&gt;&lt;br&gt;One way might be to make use of the mhn2mbox.pl program. See 
&lt;br&gt;&lt;a href=&quot;http://www.mhonarc.org/MHonArc/contrib/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.mhonarc.org/MHonArc/contrib/&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Gunnar Hjalmarsson
&lt;br&gt;Email: &lt;a href=&quot;http://www.gunnar.cc/cgi-bin/contact.pl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gunnar.cc/cgi-bin/contact.pl&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Incorporating-Messages-Already-in-mhonarc-Format-tp17703460p17703600.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17703460</id>
	<title>Incorporating Messages Already in mhonarc Format</title>
	<published>2008-06-06T16:55:06Z</published>
	<updated>2008-06-06T16:55:06Z</updated>
	<author>
		<name>Douglas Kline-2</name>
	</author>
	<content type="html">&lt;br&gt;We are running MHonArc v2.4.6 under Linux Fedora Core 6.
&lt;br&gt;&lt;br&gt;I would like to ask how to incorporate messages and associated attachment files
&lt;br&gt;which are already in mhonarc format into a mhonarc archive. &amp;nbsp;These messages
&lt;br&gt;were built into an archive which is no longer in use. &amp;nbsp;The e-mail spooling
&lt;br&gt;files which mhonarc read to process these messages are no longer available. &amp;nbsp;So
&lt;br&gt;we want to build these messages into an archive which has already been built.
&lt;br&gt;How can we accomplish that?
&lt;br&gt;&lt;br&gt;TIA.
&lt;br&gt;&lt;br&gt;Douglas Kline
&lt;br&gt;&lt;br&gt;&lt;br&gt;========
&lt;br&gt;Douglas M. Kline
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17703460&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kline@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Incorporating-Messages-Already-in-mhonarc-Format-tp17703460p17703460.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17694577</id>
	<title>Automatically creating short URL's?</title>
	<published>2008-06-06T08:05:16Z</published>
	<updated>2008-06-06T08:05:16Z</updated>
	<author>
		<name>David Gibbs-2</name>
	</author>
	<content type="html">Folks:
&lt;br&gt;&lt;br&gt;Has anyone considered the idea of using one of the URL shortening 
&lt;br&gt;services (tinyurl.com, etc) to automatically process URI's in messages 
&lt;br&gt;processed by mhonarc?
&lt;br&gt;&lt;br&gt;When people on my lists post URL's, they are quite often long and 
&lt;br&gt;unwieldy ... it would be nice if I could automatically translate those 
&lt;br&gt;long URI's into shorter versions.
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;david
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Automatically-creating-short-URL%27s--tp17694577p17694577.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17480161</id>
	<title>Re: Removing Mssgs., Inconsistency</title>
	<published>2008-05-26T15:25:02Z</published>
	<updated>2008-05-26T15:25:02Z</updated>
	<author>
		<name>Douglas Kline-2</name>
	</author>
	<content type="html">&amp;gt; On May 5, 2008 at 18:19, Douglas Kline wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I wanted to expunge an accumulation of spam, &amp;nbsp;When other attempts left the
&lt;br&gt;&amp;gt; &amp;gt; links to messages in the index file and in the message files pointing to th
&lt;br&gt;e
&lt;br&gt;&amp;gt; &amp;gt; wrong files, I decided to reconstitute the archive from scratch. &amp;nbsp;I started
&lt;br&gt;&amp;gt; &amp;gt; with an empty directory and ran mhonarc on all of the spooling-type files o
&lt;br&gt;f
&lt;br&gt;&amp;gt; &amp;gt; messages. &amp;nbsp;Then I recompiled the list of spam messages because I couldn't u
&lt;br&gt;se
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;gt; the previous list because the message numbers might be different. &amp;nbsp;Then I
&lt;br&gt;&amp;gt; &amp;gt; converted the spam message file names to message numbers and ran 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; FYI, message number consistency is a known limitation wrt to
&lt;br&gt;&amp;gt; rebuilding archives. &amp;nbsp;I.e. &amp;nbsp;If you rebuild an archive, but the
&lt;br&gt;&amp;gt; set of messages have changed from the original archive set, then
&lt;br&gt;&amp;gt; message numbers will not match.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; mharc works around this problem by utilizing namazu's message-id
&lt;br&gt;&amp;gt; index to allow own to have &amp;quot;permanent&amp;quot; location for a message.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; with the list of message numbers as arguments.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; That removed those files. &amp;nbsp;So far as I can tell, the links in the message f
&lt;/div&gt;il
&lt;br&gt;&amp;gt; &amp;gt; es
&lt;br&gt;&amp;gt; &amp;gt; to other message files are now correct. &amp;nbsp;It also re-wrote the .mhonarc.db f
&lt;br&gt;il
&lt;br&gt;&amp;gt; &amp;gt; e.
&lt;br&gt;&amp;gt; &amp;gt; So that part worked.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; IIRC, you may want to run some tests on the latest version of mhonarc.
&lt;br&gt;&amp;gt; I do not know when, but some of the logic for tagging things to update
&lt;br&gt;&amp;gt; on message removal were improved (check NEWS file).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; The index files (date1.html, date2.html, auth1.html, thrd1.html, etc.) stil
&lt;br&gt;l
&lt;br&gt;&amp;gt; &amp;gt; had references to the deleted spam messages. &amp;nbsp;So next I ran the command we 
&lt;br&gt;ru
&lt;br&gt;&amp;gt; &amp;gt; n
&lt;br&gt;&amp;gt; &amp;gt; routinely to incorporate new messages with a dummy message to re-write the
&lt;br&gt;&amp;gt; &amp;gt; indices. &amp;nbsp;The dummy message was necessary because if it doesn't find any ne
&lt;br&gt;w
&lt;br&gt;&amp;gt; &amp;gt; messages it won't act. &amp;nbsp;That worked too.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Have you tried -editidx? &amp;nbsp;It rewrites ALL archive pages.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Then I ran the scripts which compile the master indices (datedir.html,
&lt;br&gt;&amp;gt; &amp;gt; authdir.html, thrddir.html) and that worked.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; So what's the problem? &amp;nbsp;Some of the links in the message files to indices a
&lt;br&gt;re
&lt;br&gt;&amp;gt; &amp;gt; wrong. &amp;nbsp;They refer to non-existent date[0-9]*.html, auth[0-9]*.html, and
&lt;br&gt;&amp;gt; &amp;gt; thrd[0-9]*.html files. &amp;nbsp;How can I fix that?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; See comments above. &amp;nbsp;Later versions of mhonarc may fix this.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Also, -editidx should provide a brute-force way to correct the files.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; --ewh
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks for the suggestions, ewh. &amp;nbsp;&amp;quot;-editidx&amp;quot; worked. &amp;nbsp;I found that unlike most
&lt;br&gt;mhonarc operations this had to be run from the directory with the .html files
&lt;br&gt;rather than referencing that directory with the &amp;quot;-outdir&amp;quot; option. &amp;nbsp;We will
&lt;br&gt;follow up on your suggestion of looking into a more recent version of mhonarc.
&lt;br&gt;&lt;br&gt;Douglas Kline
&lt;br&gt;&lt;br&gt;========
&lt;br&gt;Douglas M. Kline
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17480161&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kline@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Removing-Mssgs.%2C-Inconsistency-tp17072209p17480161.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17111231</id>
	<title>[bug #23198] Incorrect Setting Installation Directory</title>
	<published>2008-05-07T11:10:18Z</published>
	<updated>2008-05-07T11:10:18Z</updated>
	<author>
		<name>Anatoly Sokolov-3</name>
	</author>
	<content type="html">&lt;br&gt;URL:
&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?23198&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?23198&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary: Incorrect Setting Installation Directory
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: MHonArc
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Submitted by: imacat
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Submitted on: Thursday 05/08/2008 at 02:10
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Category: Installation
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Severity: 3 - Normal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Item Group: Installation
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Status: None
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Privacy: Public
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assigned to: None
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Open/Closed: Open
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Discussion Lock: Any
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Operating System: All
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Perl Version: 5.8.8
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Component Version: 2.6.16
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fixed Release: 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Details:
&lt;br&gt;&lt;br&gt;Dear all,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Hi. &amp;nbsp;This is imacat from Taiwan. &amp;nbsp;I found that the Makefile.PL in
&lt;br&gt;MHonArc-2.6.16 does not handle installation path correctly. &amp;nbsp;It sets &amp;quot;-prefix&amp;quot;
&lt;br&gt;as $opt_binpath, and &amp;quot;-prefix&amp;quot; as $opt_manpath.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; I made a simple patch again MHonArc-2.6.16, in the hope that it helps. 
&lt;br&gt;Please tell me if you need any more information, or if I could be of any help.
&lt;br&gt;&amp;nbsp;Thank you.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;File Attachments:
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------
&lt;br&gt;Date: Thursday 05/08/2008 at 02:10 &amp;nbsp;Name: MHonArc-2.6.16-instdirs.diff &amp;nbsp;Size:
&lt;br&gt;1kB &amp;nbsp; By: imacat
&lt;br&gt;Patch to Fix Installation Directory in Makefile.PL
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/download.php?file_id=15633&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/download.php?file_id=15633&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?23198&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?23198&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.nongnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17111231&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-bug--23198--Incorrect-Setting-Installation-Directory-tp17111231p17111231.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17073665</id>
	<title>Re: Removing Mssgs., Inconsistency</title>
	<published>2008-05-05T17:32:10Z</published>
	<updated>2008-05-05T17:32:10Z</updated>
	<author>
		<name>Earl Hood</name>
	</author>
	<content type="html">On May 5, 2008 at 18:19, Douglas Kline wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I wanted to expunge an accumulation of spam, &amp;nbsp;When other attempts left the
&lt;br&gt;&amp;gt; links to messages in the index file and in the message files pointing to the
&lt;br&gt;&amp;gt; wrong files, I decided to reconstitute the archive from scratch. &amp;nbsp;I started
&lt;br&gt;&amp;gt; with an empty directory and ran mhonarc on all of the spooling-type files of
&lt;br&gt;&amp;gt; messages. &amp;nbsp;Then I recompiled the list of spam messages because I couldn't use
&lt;br&gt;&amp;gt; the previous list because the message numbers might be different. &amp;nbsp;Then I
&lt;br&gt;&amp;gt; converted the spam message file names to message numbers and ran 
&lt;br&gt;&lt;br&gt;FYI, message number consistency is a known limitation wrt to
&lt;br&gt;rebuilding archives. &amp;nbsp;I.e. &amp;nbsp;If you rebuild an archive, but the
&lt;br&gt;set of messages have changed from the original archive set, then
&lt;br&gt;message numbers will not match.
&lt;br&gt;&lt;br&gt;mharc works around this problem by utilizing namazu's message-id
&lt;br&gt;index to allow own to have &amp;quot;permanent&amp;quot; location for a message.
&lt;br&gt;&lt;br&gt;&amp;gt; with the list of message numbers as arguments.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; That removed those files. &amp;nbsp;So far as I can tell, the links in the message fil
&lt;br&gt;&amp;gt; es
&lt;br&gt;&amp;gt; to other message files are now correct. &amp;nbsp;It also re-wrote the .mhonarc.db fil
&lt;br&gt;&amp;gt; e.
&lt;br&gt;&amp;gt; So that part worked.
&lt;br&gt;&lt;br&gt;IIRC, you may want to run some tests on the latest version of mhonarc.
&lt;br&gt;I do not know when, but some of the logic for tagging things to update
&lt;br&gt;on message removal were improved (check NEWS file).
&lt;br&gt;&lt;br&gt;&amp;gt; The index files (date1.html, date2.html, auth1.html, thrd1.html, etc.) still
&lt;br&gt;&amp;gt; had references to the deleted spam messages. &amp;nbsp;So next I ran the command we ru
&lt;br&gt;&amp;gt; n
&lt;br&gt;&amp;gt; routinely to incorporate new messages with a dummy message to re-write the
&lt;br&gt;&amp;gt; indices. &amp;nbsp;The dummy message was necessary because if it doesn't find any new
&lt;br&gt;&amp;gt; messages it won't act. &amp;nbsp;That worked too.
&lt;br&gt;&lt;br&gt;Have you tried -editidx? &amp;nbsp;It rewrites ALL archive pages.
&lt;br&gt;&lt;br&gt;&amp;gt; Then I ran the scripts which compile the master indices (datedir.html,
&lt;br&gt;&amp;gt; authdir.html, thrddir.html) and that worked.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So what's the problem? &amp;nbsp;Some of the links in the message files to indices are
&lt;br&gt;&amp;gt; wrong. &amp;nbsp;They refer to non-existent date[0-9]*.html, auth[0-9]*.html, and
&lt;br&gt;&amp;gt; thrd[0-9]*.html files. &amp;nbsp;How can I fix that?
&lt;br&gt;&lt;br&gt;See comments above. &amp;nbsp;Later versions of mhonarc may fix this.
&lt;br&gt;&lt;br&gt;Also, -editidx should provide a brute-force way to correct the files.
&lt;br&gt;&lt;br&gt;--ewh
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Removing-Mssgs.%2C-Inconsistency-tp17072209p17073665.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17072209</id>
	<title>Removing Mssgs., Inconsistency</title>
	<published>2008-05-05T15:19:53Z</published>
	<updated>2008-05-05T15:19:53Z</updated>
	<author>
		<name>Douglas Kline-2</name>
	</author>
	<content type="html">&lt;br&gt;We are running MHonArc v2.4.6 under Linux Fedora Core 6. 
&lt;br&gt;&lt;br&gt;I wanted to expunge an accumulation of spam, &amp;nbsp;When other attempts left the
&lt;br&gt;links to messages in the index file and in the message files pointing to the
&lt;br&gt;wrong files, I decided to reconstitute the archive from scratch. &amp;nbsp;I started
&lt;br&gt;with an empty directory and ran mhonarc on all of the spooling-type files of
&lt;br&gt;messages. &amp;nbsp;Then I recompiled the list of spam messages because I couldn't use
&lt;br&gt;the previous list because the message numbers might be different. &amp;nbsp;Then I
&lt;br&gt;converted the spam message file names to message numbers and ran 
&lt;br&gt;&lt;br&gt;&lt;br&gt;mhonarc -rmm 
&lt;br&gt;&lt;br&gt;&lt;br&gt;with the list of message numbers as arguments.
&lt;br&gt;&lt;br&gt;That removed those files. &amp;nbsp;So far as I can tell, the links in the message files
&lt;br&gt;to other message files are now correct. &amp;nbsp;It also re-wrote the .mhonarc.db file.
&lt;br&gt;So that part worked.
&lt;br&gt;&lt;br&gt;The index files (date1.html, date2.html, auth1.html, thrd1.html, etc.) still
&lt;br&gt;had references to the deleted spam messages. &amp;nbsp;So next I ran the command we run
&lt;br&gt;routinely to incorporate new messages with a dummy message to re-write the
&lt;br&gt;indices. &amp;nbsp;The dummy message was necessary because if it doesn't find any new
&lt;br&gt;messages it won't act. &amp;nbsp;That worked too.
&lt;br&gt;&lt;br&gt;Then I ran the scripts which compile the master indices (datedir.html,
&lt;br&gt;authdir.html, thrddir.html) and that worked.
&lt;br&gt;&lt;br&gt;So what's the problem? &amp;nbsp;Some of the links in the message files to indices are
&lt;br&gt;wrong. &amp;nbsp;They refer to non-existent date[0-9]*.html, auth[0-9]*.html, and
&lt;br&gt;thrd[0-9]*.html files. &amp;nbsp;How can I fix that?
&lt;br&gt;&lt;br&gt;TIA.
&lt;br&gt;&lt;br&gt;Douglas Kline
&lt;br&gt;&lt;br&gt;&lt;br&gt;========
&lt;br&gt;Douglas M. Kline
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17072209&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kline@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Removing-Mssgs.%2C-Inconsistency-tp17072209p17072209.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16608899</id>
	<title>[bug #5473] directory separator for attachments on W2K</title>
	<published>2008-04-10T04:38:51Z</published>
	<updated>2008-04-10T04:38:51Z</updated>
	<author>
		<name>Anatoly Sokolov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #3, bug #5473 (project mhonarc):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://myfreepaysite.wikidot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://myfreepaysite.wikidot.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.nongnu.org/bugs/?5473&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?5473&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.nongnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To sign-off this list, send email to &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=16608899&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;majordomo@...&lt;/a&gt; with the
&lt;br&gt;message text UNSUBSCRIBE MHONARC-DEV
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Dev-f13971.html&quot; embed=&quot;fixTarget[13971]&quot; target=&quot;_top&quot; &gt;MHonArc - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-bug--5473--directory-separator-for-attachments-on-W2K-tp16608899p16608899.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16401722</id>
	<title>Re: mhutil.pl patch (was Re: references being converted to mailto links)</title>
	<published>2008-03-31T08:10:41Z</published>
	<updated>2008-03-31T08:10:41Z</updated>
	<author>
		<name>Earl Hood</name>
	</author>
	<content type="html">On March 30, 2008 at 15:32, Wolfgang Dautermann wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; What problem?
&lt;br&gt;&lt;br&gt;That addressmodifycode affects message-id and references.
&lt;br&gt;&lt;br&gt;&amp;gt; This is not the solution for my bugreport concerning 
&lt;br&gt;&amp;gt; Fieldorder/Adressmodifycode (&lt;a href=&quot;http://savannah.nongnu.org/bugs/?17904&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?17904&lt;/a&gt;), 
&lt;br&gt;&amp;gt; right? (that the 'references' should be included in %HFieldsAsIsList I 
&lt;br&gt;&amp;gt; wrote there...)
&lt;br&gt;&lt;br&gt;The patch should fix the bug reported also.
&lt;br&gt;&lt;br&gt;--ewh
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/references-being-converted-to-mailto-links-tp16257752p16401722.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16382256</id>
	<title>Re: mhutil.pl patch (was Re: references being converted to mailto links)</title>
	<published>2008-03-30T06:32:19Z</published>
	<updated>2008-03-30T06:32:19Z</updated>
	<author>
		<name>Wolfgang Dautermann-2</name>
	</author>
	<content type="html">Earl Hood schrieb:
&lt;br&gt;&amp;gt; Attached is a patch for MHonArc v2.6.16 for the file mhutil.pl (in
&lt;br&gt;&amp;gt; the lib directory of the distribution) that should fix the problem.
&lt;br&gt;&lt;br&gt;What problem?
&lt;br&gt;&lt;br&gt;This is not the solution for my bugreport concerning 
&lt;br&gt;Fieldorder/Adressmodifycode (&lt;a href=&quot;http://savannah.nongnu.org/bugs/?17904&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.nongnu.org/bugs/?17904&lt;/a&gt;), 
&lt;br&gt;right? (that the 'references' should be included in %HFieldsAsIsList I 
&lt;br&gt;wrote there...)
&lt;br&gt;&lt;br&gt;Best regards, Wolfgang
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/references-being-converted-to-mailto-links-tp16257752p16382256.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16320062</id>
	<title>mhutil.pl patch (was Re: references being converted to mailto links)</title>
	<published>2008-03-26T17:53:06Z</published>
	<updated>2008-03-26T17:53:06Z</updated>
	<author>
		<name>Earl Hood</name>
	</author>
	<content type="html">[Sending to list since this may be of use to others.]
&lt;br&gt;&lt;br&gt;On March 26, 2008 at 18:29, James M Galvin wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I'm sorry to send this back to you directly. &amp;nbsp;I know you'd rather 
&lt;br&gt;&amp;gt; folks not do that.
&lt;br&gt;&lt;br&gt;No problem.
&lt;br&gt;&lt;br&gt;Attached is a patch for MHonArc v2.6.16 for the file mhutil.pl (in
&lt;br&gt;the lib directory of the distribution) that should fix the problem.
&lt;br&gt;&lt;br&gt;NOTE: Only archives that render the References and In-Reply-To
&lt;br&gt;header fields are affected by this problem, and if you have
&lt;br&gt;SPAMMODE and/or ADDRESSMODIFYCODE enabled. &amp;nbsp;Rendering of such
&lt;br&gt;fields are common for those that do little customization to
&lt;br&gt;how message headers are rendered.
&lt;br&gt;&lt;br&gt;Please try out and report back if you have success or if
&lt;br&gt;the problem persists.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;--ewh
&lt;br&gt;&lt;br&gt;&lt;br /&gt;Index: lib/mhutil.pl
&lt;br&gt;===================================================================
&lt;br&gt;RCS file: /home/users/mhonarc.org/ehood/cvs/mhonarc/mhonarc/MHonArc/lib/mhutil.pl,v
&lt;br&gt;retrieving revision 2.32
&lt;br&gt;diff -u -r2.32 mhutil.pl
&lt;br&gt;--- lib/mhutil.pl	8 Jul 2005 05:27:53 -0000	2.32
&lt;br&gt;+++ lib/mhutil.pl	27 Mar 2008 00:26:28 -0000
&lt;br&gt;@@ -46,6 +46,8 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;'content-id' &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;=&amp;gt; 1,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;'content-type' &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;=&amp;gt; 1,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;'message-id' &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;=&amp;gt; 1,
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;'references' &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;=&amp;gt; 1,
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;'in-reply-to' &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; =&amp;gt; 1,
&lt;br&gt;&amp;nbsp;);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;## Header fields that contain addresses
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/references-being-converted-to-mailto-links-tp16257752p16320062.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16317905</id>
	<title>Re: references being converted to mailto links</title>
	<published>2008-03-26T15:18:51Z</published>
	<updated>2008-03-26T15:18:51Z</updated>
	<author>
		<name>James Galvin-4</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;-- On Wednesday, March 26, 2008 9:16 AM -0500 Earl Hood 
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=16317905&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;earl@...&lt;/a&gt;&amp;gt; wrote regarding Re: references being converted 
&lt;br&gt;to mailto links --
&lt;br&gt;&lt;br&gt;&amp;gt; I would need some sample messages, resource files, and
&lt;br&gt;&amp;gt; command-line invocation arguments to do any further analysis.
&lt;br&gt;&lt;br&gt;I still haven't figured out what is going on, so I'm sending these 
&lt;br&gt;under separate cover to you.
&lt;br&gt;&lt;br&gt;I appreciate any pointers you might have.
&lt;br&gt;&lt;br&gt;Jim
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/references-being-converted-to-mailto-links-tp16257752p16317905.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16305784</id>
	<title>Re: references being converted to mailto links</title>
	<published>2008-03-26T07:16:26Z</published>
	<updated>2008-03-26T07:16:26Z</updated>
	<author>
		<name>Earl Hood</name>
	</author>
	<content type="html">On March 24, 2008 at 14:11, James Galvin wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I'm working with a site that recently did an upgrade from version 
&lt;br&gt;&amp;gt; 2.6.10 to version 2.6.16. &amp;nbsp;However, an odd thing happened.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Immediately after the cut-over all messages with a references 
&lt;br&gt;&amp;gt; header had those elements converted to Mailto: links instead of 
&lt;br&gt;&amp;gt; being references to the actually prior messages.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have looked through the documentation and the archive but nothing 
&lt;br&gt;&amp;gt; I found seems applicable in this case.
&lt;br&gt;&lt;br&gt;I would need some sample messages, resource files, and command-line
&lt;br&gt;invocation arguments to do any further analysis.
&lt;br&gt;&lt;br&gt;--ewh
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/references-being-converted-to-mailto-links-tp16257752p16305784.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16257752</id>
	<title>references being converted to mailto links</title>
	<published>2008-03-24T11:11:29Z</published>
	<updated>2008-03-24T11:11:29Z</updated>
	<author>
		<name>James Galvin-4</name>
	</author>
	<content type="html">I'm working with a site that recently did an upgrade from version 
&lt;br&gt;2.6.10 to version 2.6.16. &amp;nbsp;However, an odd thing happened.
&lt;br&gt;&lt;br&gt;Immediately after the cut-over all messages with a references 
&lt;br&gt;header had those elements converted to Mailto: links instead of 
&lt;br&gt;being references to the actually prior messages.
&lt;br&gt;&lt;br&gt;I have looked through the documentation and the archive but nothing 
&lt;br&gt;I found seems applicable in this case.
&lt;br&gt;&lt;br&gt;Have I overlooked something obvious? &amp;nbsp;Has anyone encountered this 
&lt;br&gt;before?
&lt;br&gt;&lt;br&gt;Any pointers would be appreciated.
&lt;br&gt;&lt;br&gt;For completeness, no special actions were taken for the conversion. 
&lt;br&gt;We just installed and started using v2.6.16.
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;Jim
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/references-being-converted-to-mailto-links-tp16257752p16257752.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16189326</id>
	<title>Re: mobile archives?</title>
	<published>2008-03-20T14:38:02Z</published>
	<updated>2008-03-20T14:38:02Z</updated>
	<author>
		<name>Earl Hood</name>
	</author>
	<content type="html">On March 20, 2008 at 10:13, David Gibbs wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Does anyone have a mrc file that generates content specifically designed 
&lt;br&gt;&amp;gt; for a mobile web site (iphone, pda phone, etc)?
&lt;br&gt;&lt;br&gt;I do not know of any off-hand.
&lt;br&gt;&lt;br&gt;If you are unsure what to do, please provide information on how
&lt;br&gt;you would like your pages to look and we may be able to
&lt;br&gt;provide guidance on the resources that need to be defined.
&lt;br&gt;&lt;br&gt;--ewh
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MHonArc---Users-f13970.html&quot; embed=&quot;fixTarget[13970]&quot; target=&quot;_top&quot; &gt;MHonArc - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/mobile-archives--tp16181252p16189326.html" />
</entry>

</feed>
