aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-account-store.c
Commit message (Collapse)AuthorAgeFilesLines
* Whitespace cleanups.Matthew Barnes2012-05-131-6/+6
|
* Bug #668481 - Account order is not rememberedMilan Crha2012-04-201-54/+136
|
* Move vfolders to libemail-engine and rest as mail-vfolder-ui. It all works andSrinivasa Ragavan2012-03-031-1/+1
| | | | | the daemon can now start the vfolder storage without bothering much with the UI.
* Move EAlert* and e-xml-utils references from other part of the code to ↵Srinivasa Ragavan2012-03-031-1/+1
| | | | libevolution-utils.
* Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-191-7/+32
| | | | | | | 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.
* Slow start due to instant saving of no change in an EAccountListMilan Crha2012-01-111-7/+16
|
* EMailAccountStore: Avoid a bogus runtime warning.Matthew Barnes2011-12-311-5/+6
| | | | | | If the number of SortOrder items in sortorder.ini disagrees with the number of services in the EMailAccountStore, silently revert to the default ordering rather than emitting a runtime warning.
* Reduce diff noise with account-mgmt branch.Matthew Barnes2011-12-201-15/+18
|
* Bug #666512 - Busy-loop after pressing Send/Receive toolbar buttonMilan Crha2011-12-191-7/+6
|
* mail-send-recv.c: Avoid using EAccount and CamelURL if possible.Matthew Barnes2011-12-161-15/+67
| | | | | | EAccount is deprecated and mail URLs are being phased out. Use EMailAccountStore and CamelService instead.
* Reorder accounts by drag-and-drop.Matthew Barnes2011-12-111-0/+1439
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.