From 49bad5e10fbf9a6f084d53ff1076df4f10aff049 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 24 Jul 2001 20:12:47 +0000 Subject: Do a case-insensitive comparison. (mail_generate_reply): Only resort to 2001-07-24 Jeffrey Stedfast * mail-callbacks.c (guess_me): Do a case-insensitive comparison. (mail_generate_reply): Only resort to the source account's identity if we can't find out which identity to use based on the recipients of the message first. * mail-config.c (mail_config_get_default_account): Make sure to return the 0th account if we don't have a default. We don't want to return NULL. * mail-callbacks.c (empty_trash): Use mail_tool_get_trash for the remote store trash folders. * mail-tools.c (mail_tool_get_trash): New convenience function. svn path=/trunk/; revision=11353 --- mail/mail-tools.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'mail/mail-tools.c') diff --git a/mail/mail-tools.c b/mail/mail-tools.c index cd31fa067f..47f949ac10 100644 --- a/mail/mail-tools.c +++ b/mail/mail-tools.c @@ -133,6 +133,22 @@ mail_tool_get_inbox (const gchar *url, CamelException *ex) return folder; } +CamelFolder * +mail_tool_get_trash (const gchar *url, CamelException *ex) +{ + CamelStore *store; + CamelFolder *trash; + + store = camel_session_get_store (session, url, ex); + if (!store) + return NULL; + + trash = camel_store_get_trash (store, ex); + camel_object_unref (CAMEL_OBJECT (store)); + + return trash; +} + /* why is this function so stupidly complex when allthe work is done elsehwere? */ char * mail_tool_do_movemail (const gchar *source_url, CamelException *ex) -- cgit