aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-tools.h
diff options
context:
space:
mode:
authorPeter Williams <peterw@src.gnome.org>2000-08-11 02:46:39 +0800
committerPeter Williams <peterw@src.gnome.org>2000-08-11 02:46:39 +0800
commit1ecabb0dc4b97d18725d4bbbeb66fb0f4465ece1 (patch)
tree0255e9355495c941ec1c95f4ec234648af0ba079 /mail/mail-tools.h
parent7df68b2c7da61c00327e54db57e38fcf60e9db2c (diff)
downloadgsoc2013-evolution-1ecabb0dc4b97d18725d4bbbeb66fb0f4465ece1.tar
gsoc2013-evolution-1ecabb0dc4b97d18725d4bbbeb66fb0f4465ece1.tar.gz
gsoc2013-evolution-1ecabb0dc4b97d18725d4bbbeb66fb0f4465ece1.tar.bz2
gsoc2013-evolution-1ecabb0dc4b97d18725d4bbbeb66fb0f4465ece1.tar.lz
gsoc2013-evolution-1ecabb0dc4b97d18725d4bbbeb66fb0f4465ece1.tar.xz
gsoc2013-evolution-1ecabb0dc4b97d18725d4bbbeb66fb0f4465ece1.tar.zst
gsoc2013-evolution-1ecabb0dc4b97d18725d4bbbeb66fb0f4465ece1.zip
Fix the infinite movemail
svn path=/trunk/; revision=4696
Diffstat (limited to 'mail/mail-tools.h')
-rw-r--r--mail/mail-tools.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/mail/mail-tools.h b/mail/mail-tools.h
index 6d189c2ea5..03b2af8a9f 100644
--- a/mail/mail-tools.h
+++ b/mail/mail-tools.h
@@ -36,16 +36,16 @@ CamelFolder *
mail_tool_get_folder_from_urlname (const gchar *url, const gchar *name, CamelException *ex);
/* Get the url for the local inbox */
-gchar *
-mail_tool_get_local_inbox_url (void);
+gchar *mail_tool_get_local_inbox_url (void);
+
+/* Get the filename for our movemail folder */
+gchar *mail_tool_get_local_movemail_path (void);
/* Get the CamelFolder for the local inbox */
-CamelFolder *
-mail_tool_get_local_inbox (CamelException *ex);
+CamelFolder *mail_tool_get_local_inbox (CamelException *ex);
/* Get the "inbox" for a url (uses global session) */
-CamelFolder *
-mail_tool_get_inbox (const gchar *url, CamelException *ex);
+CamelFolder *mail_tool_get_inbox (const gchar *url, CamelException *ex);
/* Does a camel_movemail into the local movemail folder
* and returns the movemail folder that was created. */
@@ -81,6 +81,7 @@ mail_tool_fetch_mail_into_searchable (const char *source_url, gboolean keep_on_s
/* Filter source into dest using the default filters. */
void
mail_tool_filter_contents_into (CamelFolder *source, CamelFolder *dest,
+ gboolean delete_source,
gpointer hook_func, gpointer hook_data,
CamelException *ex);