--- Begin Message ---
Package: newsgate
Version: 1.6-20
Severity: normal
In order to allow group replies to work on messages from mailing lists,
newsgate needs to pass the Cc/To headers through.
This is exactly what the following patch does.
Cheers,
-- System Information
Debian Release: testing/unstable
Kernel Version: Linux gondolin 2.4.25-1-686-smp #1 SMP Tue Feb 24 12:07:16 EST 2004 i686 GNU/Linux
Versions of the packages newsgate depends on:
ii libc6 2.3.2.ds1-12 GNU C Library: Shared libraries and Timezone
ii exim 3.36-9.1 An MTA (Mail Transport Agent)
^^^ (Provides virtual package mail-transport-agent)
ii inewsinn 1.7.2debian-24 NNTP client news injector, from InterNetNews
^^^ (Provides virtual package inews)
--
Index: rfc822.c
===================================================================
RCS file: /home/gondolin/herbert/src/CVS/debian/newsgate/rfc822.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- a/rfc822.c 25 Nov 1999 11:32:52 -0000 1.4
+++ b/rfc822.c 22 May 2004 04:20:59 -0000 1.5
@@ -39,6 +39,8 @@
#define HDR_MIMETYPE 19
#define HDR_EXT 20
#define HDR_INREPLYTO 21
+#define HDR_TO 22
+#define HDR_CC 23
/*
@@ -72,7 +74,9 @@
{ "Summary:", HDR_SUMMARY },
{ "Subject:", HDR_TITLE },
{ "Title:", HDR_TITLE },
- { "X-", HDR_EXT }
+ { "X-", HDR_EXT },
+ { "To:", HDR_TO },
+ { "Cc:", HDR_CC },
};
@@ -651,6 +655,8 @@
case HDR_TITLE:
getfield(buff, hp->title, sizeof hp->title);
break;
+ case HDR_TO:
+ case HDR_CC:
case HDR_EXT: {
struct xlist *node = NEW(struct xlist, 1);
node->header = strdup(buff);
Index: debian/changelog
===================================================================
RCS file: /home/gondolin/herbert/src/CVS/debian/newsgate/debian/changelog,v
retrieving revision 1.24
diff -u -r1.24 changelog
--- a/debian/changelog 19 Nov 2003 08:48:40 -0000 1.24
+++ b/debian/changelog 22 May 2004 04:19:16 -0000
@@ -1,3 +1,5 @@
+ * Preserve To/Cc headers.
+
newsgate (1.6-20) unstable; urgency=low
* Fixed errno declaration in gate.h (closes: #221436).
--- End Message ---
--- Begin Message ---
- To: 254275-done@bugs.debian.org
- Subject: newsgate has been removed from Debian, closing #254275
- From: Marco Rodrigues <gothicx@sapo.pt>
- Date: Sat, 30 Aug 2008 23:43:55 +0100
- Message-id: <200808302243.m7UMhtr2010036@kmos.homeip.net>
Version: 1.6-23+rm
The newsgate package has been removed from Debian testing, unstable and
experimental, so I am now closing the bugs that were still opened
against it.
For more information about this package's removal, read
http://bugs.debian.org/496783 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.
Don't hesitate to reply to this mail if you have any question.
Thank you for your contribution to Debian.
--
Marco Rodrigues
http://Marco.Tondela.org
--- End Message ---