aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused EMailNotebookView.Matthew Barnes2013-06-031-1/+0
| | | | This is just an Express Mode leftover.
* e-mail.h: Remove non-existent header files.Matthew Barnes2013-03-251-2/+0
|
* Adapt mail to the new ESource API.Matthew Barnes2012-06-031-0/+1
|
* e-mail.h: Remove files that moved to libemail-engine.Matthew Barnes2012-02-031-2/+0
|
* Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-191-4/+0
| | | | | | | These libraries are bound for E-D-S so they live at the lowest layer of Evolution for now -- even libeutil can link to them (but please don't). This is the first step toward moving mail handing to a D-Bus service.
* Reorder accounts by drag-and-drop.Matthew Barnes2011-12-111-2/+0
| | | | | | | | | | | | | | | | | | | | | This implements https://bugzilla.gnome.org/show_bug.cgi?id=663527#c3. Account reordering is now done by drag-and-drop instead of up/down buttons. Turned out to be a wee bit more complicated than I initially thought. This scraps EAccountManager and EAccountTreeView and replaces them with new classes centered around EMailAccountStore, which EMailSession owns. EMailAccountStore is the model behind the account list in Preferences. The folder tree model now uses it to sort its own top-level rows using gtk_tree_path_compare(). It also broadcasts account operations through signals so we don't have to rely so heavily on EAccountList signals, since EAccountList is going away soon. Also as part of this work, the e-mail-local.h and e-mail-store.h APIs have been merged into EMailSession and MailFolderCache.
* Fix distcheck errors.EVOLUTION_2_91_2Matthew Barnes2010-11-081-1/+0
|
* Kill mail_store_set_offline().Matthew Barnes2010-10-231-0/+1
| | | | | | | | | | Replace it with new async functions: e_mail_store_go_offline() e_mail_store_go_offline_finish() e_mail_store_go_online() e_mail_store_go_online_finish()
* Collect mail enum types in e-mail-enums.h.Matthew Barnes2010-10-191-0/+50
And generate GTypes for each of them in e-mail-enumtypes.[ch]. Also, the glib-gen.mak script forced me to add a <mail/e-mail.h> top-level header, which really isn't a bad idea anyway. TODO: We should do this for calendar and addressbook too.