aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-account-manager.c
Commit message (Collapse)AuthorAgeFilesLines
* EMailAccountManager: Add Online Account blurbs.Matthew Barnes2013-04-011-3/+241
| | | | | | For accounts linked to an Online Accounts service (GNOME or Ubuntu), display an informational message with an "Open Online Accounts" button that launches gnome-control-center with an appropriate panel name.
* EMailAccountManager: Inherit from GtkGrid.Matthew Barnes2013-04-011-13/+7
|
* Bump GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_2.Matthew Barnes2013-01-201-1/+1
| | | | | Clean up resulting deprecation warnings, which were all related to GtkOrientable consolidation (e.g. gtk_hbox_new() -> gtk_box_new()).
* Bug 682811 - Can edit properties of local/vfolder storesMatthew Barnes2012-08-281-2/+16
|
* Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-041-2/+0
|
* Adapt mail to the new ESource API.Matthew Barnes2012-06-031-9/+52
|
* Revert "Bug #668481 - Account order is not remembered"Matthew Barnes2012-06-031-1/+1
| | | | This reverts commit 61a15e4d9dd303c23b6e44af9d084e3f3c609192.
* Bug #668481 - Account order is not rememberedMilan Crha2012-04-201-1/+1
|
* Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-191-1/+1
| | | | | | | 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.
* Reduce diff noise with account-mgmt branch.Matthew Barnes2011-12-201-0/+1
|
* Reorder accounts by drag-and-drop.Matthew Barnes2011-12-111-0/+565
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.