INN commit: trunk/backends (news2mail.in)

INN Commit Russ_Allbery at isc.org
Mon Dec 22 23:12:43 UTC 2008


    Date: Monday, December 22, 2008 @ 15:12:42
  Author: iulius
Revision: 8249

Add a comma to separate addresses.  Otherwise, a broken To:
header was generated by news2mail when multiple addresses
were used.

close #73

Modified:
  trunk/backends/news2mail.in

--------------+
 news2mail.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: news2mail.in
===================================================================
--- news2mail.in	2008-12-21 22:29:10 UTC (rev 8248)
+++ news2mail.in	2008-12-22 23:12:42 UTC (rev 8249)
@@ -132,7 +132,7 @@
 
         # Empty line signals the end of header.
         if (/^$/) {
-            print SM "To: @a\n\n";
+            print SM "To: ".join(",", @a)."\n\n";
             last;
         }
 




More information about the inn-committers mailing list