Browse code

Added bounce message

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

Nigel Horne authored on 2004/02/17 18:55:12
Showing 2 changed files
... ...
@@ -1,3 +1,7 @@
1
+Tue Feb 17 09:59:03 GMT 2004 (njh)
2
+----------------------------------
3
+  * libclamav: Added a new bounce delimeter
4
+
1 5
 Tue Feb 17 01:06:58 CET 2004 (tk)
2 6
 ---------------------------------
3 7
   * clamd: + integrated new thread manager from Trog
... ...
@@ -17,6 +17,9 @@
17 17
  *
18 18
  * Change History:
19 19
  * $Log: message.c,v $
20
+ * Revision 1.31  2004/02/17 09:53:56  nigelhorne
21
+ * Added bounce message
22
+ *
20 23
  * Revision 1.30  2004/02/13 14:23:56  nigelhorne
21 24
  * Add a new bounce delimeter
22 25
  *
... ...
@@ -87,7 +90,7 @@
87 87
  * uuencodebegin() no longer static
88 88
  *
89 89
  */
90
-static	char	const	rcsid[] = "$Id: message.c,v 1.30 2004/02/13 14:23:56 nigelhorne Exp $";
90
+static	char	const	rcsid[] = "$Id: message.c,v 1.31 2004/02/17 09:53:56 nigelhorne Exp $";
91 91
 
92 92
 #if HAVE_CONFIG_H
93 93
 #include "clamav-config.h"
... ...
@@ -183,6 +186,7 @@ static const char *bounces[] = {
183 183
 	"------- Original mail message ----",
184 184
 	"------ A continuacion adjuntamos copia del mensaje, incluyendo las cabeceras. ------",
185 185
 	",------- Returned Message --------",
186
+	"A copy of the original message below this line:",
186 187
 	NULL
187 188
 };
188 189