aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-folder-utils.h
Commit message (Collapse)AuthorAgeFilesLines
* Add some handy folder URI utility functions.Matthew Barnes2011-05-031-0/+10
| | | | | | | | | | | | | | | | | e_mail_folder_uri_parse() Parses a folder URI and returns a corresponding CamelStore instance and folder name string, or else sets a GError. e_mail_folder_uri_equal() Compares two folder URIs for equality. Replaces camel_store_folder_uri_equal(). e_mail_folder_uri_from_folder() This will eventually replace camel_folder_get_uri(), but for now it just calls camel_folder_get_uri() and duplicates the URI string.
* Kill mail_append_mail().Matthew Barnes2010-10-311-0/+7
| | | | Use e_mail_folder_append_message() instead.
* Composer: Show cancellable operations and errors inline.Matthew Barnes2010-10-131-0/+43
'Send' and 'Save Draft' are now asynchronous and run outside of Evolution's MailMsg infrastructure. Add an EActivityBar to the composer window so these asynchronous operations can be tracked and cancelled even in the absense of a main window. Also add an EAlertBar to the composer window so error messages can be shown directly in the window. Instead of calling e_alert_dialog_run_for_args(), call e_alert_submit() and pass the EMsgComposer as the widget argument. The EMsgComposer will decide whether to show an EAlertDialog or use the EAlertBar, depending on the GtkMessageType of the alert.