aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-account-store.h
Commit message (Collapse)AuthorAgeFilesLines
* EMailAccountStore: Remove "express-mode" property.Matthew Barnes2013-04-011-5/+0
|
* EMailAccountStore: Use an appropriate icon for online accounts.Matthew Barnes2013-02-011-0/+1
| | | | | | Use "goa-panel" for GOA, "credentials-preferences" for UOA. Also move the icon before the account name. Looks better.
* Bug #682425 - Can do network operations on disabled accountsMilan Crha2012-09-051-0/+3
|
* Rework handling of GOA mail.Matthew Barnes2012-07-161-0/+2
| | | | | | | | | | | | | | | | | | | | Disabling the mail part of an online account through the Control Center panel will now remove the CamelService from the EMailSession in addition to disabling the account/identity/transport ESources, causing it to be delisted from the account list in Preferences. Furthermore, hide the Enabled check box for accounts linked to GOA in Preferences. The collection ESource for these accounts can no longer be disabled through Evolution; all such account manipulation must be done through the Control Center panel. Lastly, display an icon next to accounts linked to GOA in Preferences. * Might be nice to show the actual provider icon instead of the generic Online Accounts icon from the Control Center, but need to think about how best to do that. Don't want a GOA dependency in core Evolution. Maybe ESourceCollection should grow a GIcon property for the online- accounts module in the registry service to set?
* Revert "Bug #668481 - Account order is not remembered"Matthew Barnes2012-06-031-10/+1
| | | | This reverts commit 61a15e4d9dd303c23b6e44af9d084e3f3c609192.
* Bug #668481 - Account order is not rememberedMilan Crha2012-04-201-1/+10
|
* mail-send-recv.c: Avoid using EAccount and CamelURL if possible.Matthew Barnes2011-12-161-0/+6
| | | | | | EAccount is deprecated and mail URLs are being phased out. Use EMailAccountStore and CamelService instead.
* Bug 666081 - Duplicate typedefsMatthew Barnes2011-12-151-3/+4
| | | | GCC handles it but not valid in C89 or C99.
* Reorder accounts by drag-and-drop.Matthew Barnes2011-12-111-0/+144
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.