git-svn-id: file:///var/lib/svn/clamav-devel/trunk/clamav-devel@1015 77e5149b-7576-45b1-b177-96237e5ba77b
| ... | ... |
@@ -17,6 +17,9 @@ |
| 17 | 17 |
* |
| 18 | 18 |
* Change History: |
| 19 | 19 |
* $Log: mbox.c,v $ |
| 20 |
+ * Revision 1.158 2004/10/17 09:29:21 nigelhorne |
|
| 21 |
+ * Advise to report broken emails |
|
| 22 |
+ * |
|
| 20 | 23 |
* Revision 1.157 2004/10/16 20:53:28 nigelhorne |
| 21 | 24 |
* Tidy up |
| 22 | 25 |
* |
| ... | ... |
@@ -459,7 +462,7 @@ |
| 459 | 459 |
* Compilable under SCO; removed duplicate code with message.c |
| 460 | 460 |
* |
| 461 | 461 |
*/ |
| 462 |
-static char const rcsid[] = "$Id: mbox.c,v 1.157 2004/10/16 20:53:28 nigelhorne Exp $"; |
|
| 462 |
+static char const rcsid[] = "$Id: mbox.c,v 1.158 2004/10/17 09:29:21 nigelhorne Exp $"; |
|
| 463 | 463 |
|
| 464 | 464 |
#if HAVE_CONFIG_H |
| 465 | 465 |
#include "clamav-config.h" |
| ... | ... |
@@ -1859,7 +1862,7 @@ parseEmailBody(message *messageIn, text *textIn, const char *dir, const table_t |
| 1859 | 1859 |
* multipart/mixed. I don't do this yet so |
| 1860 | 1860 |
* that I can see what comes along... |
| 1861 | 1861 |
*/ |
| 1862 |
- cli_warnmsg("Unsupported multipart format `%s'\n", mimeSubtype);
|
|
| 1862 |
+ cli_warnmsg("Unsupported multipart format `%s' - report to bugs@clamav.net\n", mimeSubtype);
|
|
| 1863 | 1863 |
rc = 0; |
| 1864 | 1864 |
} |
| 1865 | 1865 |
|
| ... | ... |
@@ -17,6 +17,9 @@ |
| 17 | 17 |
* |
| 18 | 18 |
* Change History: |
| 19 | 19 |
* $Log: message.c,v $ |
| 20 |
+ * Revision 1.103 2004/10/17 09:29:21 nigelhorne |
|
| 21 |
+ * Advise to report broken emails |
|
| 22 |
+ * |
|
| 20 | 23 |
* Revision 1.102 2004/10/16 20:53:28 nigelhorne |
| 21 | 24 |
* Tidy up |
| 22 | 25 |
* |
| ... | ... |
@@ -303,7 +306,7 @@ |
| 303 | 303 |
* uuencodebegin() no longer static |
| 304 | 304 |
* |
| 305 | 305 |
*/ |
| 306 |
-static char const rcsid[] = "$Id: message.c,v 1.102 2004/10/16 20:53:28 nigelhorne Exp $"; |
|
| 306 |
+static char const rcsid[] = "$Id: message.c,v 1.103 2004/10/17 09:29:21 nigelhorne Exp $"; |
|
| 307 | 307 |
|
| 308 | 308 |
#if HAVE_CONFIG_H |
| 309 | 309 |
#include "clamav-config.h" |
| ... | ... |
@@ -979,7 +982,7 @@ messageSetEncoding(message *m, const char *enctype) |
| 979 | 979 |
} |
| 980 | 980 |
|
| 981 | 981 |
if(e->string == NULL) {
|
| 982 |
- cli_warnmsg("Unknown encoding type \"%s\"\n", type);
|
|
| 982 |
+ cli_warnmsg("Unknown encoding type \"%s\" - report to bugs@clamav.net\n", type);
|
|
| 983 | 983 |
free(type); |
| 984 | 984 |
/* |
| 985 | 985 |
* Err on the side of safety, enable all decoding |