git-svn: trunk@1123

Nigel Horne authored on 2004/11/27 01:58:52
Showing 1 changed files
... ...
@@ -17,6 +17,9 @@
17 17
  *
18 18
  * Change History:
19 19
  * $Log: message.c,v $
20
+ * Revision 1.121  2004/11/26 16:58:52  nigelhorne
21
+ * Tidy
22
+ *
20 23
  * Revision 1.120  2004/11/26 12:04:22  nigelhorne
21 24
  * Fix small typo
22 25
  *
... ...
@@ -357,7 +360,7 @@
357 357
  * uuencodebegin() no longer static
358 358
  *
359 359
  */
360
-static	char	const	rcsid[] = "$Id: message.c,v 1.120 2004/11/26 12:04:22 nigelhorne Exp $";
360
+static	char	const	rcsid[] = "$Id: message.c,v 1.121 2004/11/26 16:58:52 nigelhorne Exp $";
361 361
 
362 362
 #if HAVE_CONFIG_H
363 363
 #include "clamav-config.h"
... ...
@@ -1233,12 +1236,6 @@ messageIsEncoding(message *m)
1233 1233
 	   (strstr(line, "7bit") == NULL))
1234 1234
 		m->encoding = m->body_last;
1235 1235
 	else if((m->bounce == NULL) &&
1236
-			/*
1237
-			 * Don't match received since emails have a lot of
1238
-			 * these headersa and one could get a match for each
1239
-			 * header which would generate umpteen false bounce
1240
-			 * matches
1241
-			 */
1242 1236
 		(strncasecmp(line, "Received: ", 10) == 0) &&
1243 1237
 		(cli_filetype(line, strlen(line)) == CL_TYPE_MAIL))
1244 1238
 			m->bounce = m->body_last;