Browse code

Recognise a new type of bounce message

git-svn-id: file:///var/lib/svn/clamav-devel/trunk/clamav-devel@269 77e5149b-7576-45b1-b177-96237e5ba77b

Nigel Horne authored on 2004/02/11 02:02:52
Showing 2 changed files
... ...
@@ -1,3 +1,7 @@
1
+Tue Feb 10 17:05:31 GMT 2004 (njh)
2
+----------------------------------
3
+  * libclamav:	Recognised new kind of bounce message
4
+
1 5
 Tue Feb 10 14:38:35 GMT 2004 (njh)
2 6
 ----------------------------------
3 7
   * contrib:	Removed mfc30d.dll. It can now be downloaded (if needed)
... ...
@@ -17,6 +17,9 @@
17 17
  *
18 18
  * Change History:
19 19
  * $Log: message.c,v $
20
+ * Revision 1.29  2004/02/10 17:01:30  nigelhorne
21
+ * Recognise a new type of bounce message
22
+ *
20 23
  * Revision 1.28  2004/02/07 23:13:55  nigelhorne
21 24
  * Handle content-type: text/
22 25
  *
... ...
@@ -81,7 +84,7 @@
81 81
  * uuencodebegin() no longer static
82 82
  *
83 83
  */
84
-static	char	const	rcsid[] = "$Id: message.c,v 1.28 2004/02/07 23:13:55 nigelhorne Exp $";
84
+static	char	const	rcsid[] = "$Id: message.c,v 1.29 2004/02/10 17:01:30 nigelhorne Exp $";
85 85
 
86 86
 #if HAVE_CONFIG_H
87 87
 #include "clamav-config.h"
... ...
@@ -1107,6 +1110,7 @@ bounceBegin(const message *m)
1107 1107
 		"------ This is a copy of the message, including all the headers. ------",
1108 1108
 		"=================================================================================",
1109 1109
 		"------- The original message sent:",
1110
+		"   ----- Original message follows -----",
1110 1111
 		NULL
1111 1112
 	};
1112 1113