aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-folder.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-04-06 17:38:24 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-04-06 17:38:24 +0800
commit42ee7e99cfcbc523cc99b421646c9797112a2fa4 (patch)
tree8e1da8ac27903cdcd0b783fbe7d7127cd03d4280 /camel/camel-folder.c
parent056b964b59c8150cdb532a29d12179f0ac1b09f8 (diff)
downloadgsoc2013-evolution-42ee7e99cfcbc523cc99b421646c9797112a2fa4.tar
gsoc2013-evolution-42ee7e99cfcbc523cc99b421646c9797112a2fa4.tar.gz
gsoc2013-evolution-42ee7e99cfcbc523cc99b421646c9797112a2fa4.tar.bz2
gsoc2013-evolution-42ee7e99cfcbc523cc99b421646c9797112a2fa4.tar.lz
gsoc2013-evolution-42ee7e99cfcbc523cc99b421646c9797112a2fa4.tar.xz
gsoc2013-evolution-42ee7e99cfcbc523cc99b421646c9797112a2fa4.tar.zst
gsoc2013-evolution-42ee7e99cfcbc523cc99b421646c9797112a2fa4.zip
** See bug #56110.
2004-04-06 Not Zed <NotZed@Ximian.com> ** See bug #56110. * providers/imap/camel-imap-folder.c (get_content): more debug! (get_content): if we have no content-type header set on a sub-part of a multipart/digest, then we need to set it to message/rfc822 as in the multipart/digest rfc (2046 or so?). * camel-folder.c (camel_folder_get_message): output this stuff as folder debug. * providers/imap/camel-imap-folder.c (imap_get_message): add some imap:folder debug. (get_content): get xx.TEXT rather than xx if we're from a message parent part. svn path=/trunk/; revision=25333
Diffstat (limited to 'camel/camel-folder.c')
-rw-r--r--camel/camel-folder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-folder.c b/camel/camel-folder.c
index 83be9dd27d..d467e6bade 100644
--- a/camel/camel-folder.c
+++ b/camel/camel-folder.c
@@ -1057,10 +1057,10 @@ camel_folder_get_message (CamelFolder *folder, const gchar *uid, CamelException
CAMEL_FOLDER_UNLOCK(folder, lock);
- /* FIXME: need a better verbose debug framework */
- if (ret && (camel_verbose_debug & 2)) {
+ if (ret && camel_debug_start(":folder")) {
printf("CamelFolder:get_message('%s', '%s') =\n", folder->full_name, uid);
camel_mime_message_dump(ret, FALSE);
+ camel_debug_end();
}
return ret;