diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-07-25 04:12:47 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-07-25 04:12:47 +0800 |
commit | 49bad5e10fbf9a6f084d53ff1076df4f10aff049 (patch) | |
tree | 1b7d7ce712ac52086b96abcaa8d428cc038bd303 /mail/mail-tools.h | |
parent | 1ec137b9d68f02523919059d9bc4c22dea581c07 (diff) | |
download | gsoc2013-evolution-49bad5e10fbf9a6f084d53ff1076df4f10aff049.tar gsoc2013-evolution-49bad5e10fbf9a6f084d53ff1076df4f10aff049.tar.gz gsoc2013-evolution-49bad5e10fbf9a6f084d53ff1076df4f10aff049.tar.bz2 gsoc2013-evolution-49bad5e10fbf9a6f084d53ff1076df4f10aff049.tar.lz gsoc2013-evolution-49bad5e10fbf9a6f084d53ff1076df4f10aff049.tar.xz gsoc2013-evolution-49bad5e10fbf9a6f084d53ff1076df4f10aff049.tar.zst gsoc2013-evolution-49bad5e10fbf9a6f084d53ff1076df4f10aff049.zip |
Do a case-insensitive comparison. (mail_generate_reply): Only resort to
2001-07-24 Jeffrey Stedfast <fejj@ximian.com>
* 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
Diffstat (limited to 'mail/mail-tools.h')
-rw-r--r-- | mail/mail-tools.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/mail-tools.h b/mail/mail-tools.h index 4e29edbefe..57802e0be9 100644 --- a/mail/mail-tools.h +++ b/mail/mail-tools.h @@ -45,6 +45,9 @@ 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); +/* Get the "trash" for a url (uses global session) */ +CamelFolder *mail_tool_get_trash (const gchar *url, CamelException *ex); + /* Does a camel_movemail into the local movemail folder * and returns the path to the new movemail folder that was created. which shoudl be freed later */ char * |