mhonarc-users

Re: MHonArc v2.1.1

1998-02-19 02:22:22
Hello,

May I propose a small change of v2.1.1?

I think $fields{'from'} should be referred before $fields{'reply-to'}.
Some lists add a line `Reply-To: <List Address>' automatically,
so it is possibly better to look at From: lines first to identify the author.

Let me show my idea as a patch:
---------------------------------------------------------------------
diff -urN MHonArc2.1.1/mhonarc MHonArc2.1.1patched/mhonarc
--- MHonArc2.1.1/mhonarc        Thu Feb 19 09:29:19 1998
+++ MHonArc2.1.1patched/mhonarc Thu Feb 19 17:01:16 1998
@@ -924,8 +924,8 @@
     ##----------##
     ## Get From ##
     ##----------##
-    $from = $fields{'reply-to'} ||
-           $fields{'from'} ||
+    $from = $fields{'from'} ||
+           $fields{'reply-to'} ||
            $fields{'apparently-from'} ||
            'No Author';

---------------------------------------------------------------------
-- 
Koichi Nakatani
Graphic Arts Center, Konica Corporation

<Prev in Thread] Current Thread [Next in Thread>