aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mdn
Commit message (Collapse)AuthorAgeFilesLines
* mdn: Fix a runtime warning.Matthew Barnes2013-06-151-4/+4
|
* Add e_mail_reader_ref_folder().Matthew Barnes2013-06-151-11/+24
| | | | Replaces e_mail_reader_get_folder().
* Rename libeshell to libevolution-shell.Matthew Barnes2013-05-281-1/+1
| | | | | | To make Evolution's shared libraries more consistent. Also rename the documentation module to evolution-shell.
* Rename libeutil to libevolution-util.Matthew Barnes2013-05-281-1/+1
| | | | | | To make Evolution's shared libraries more consistent. Also rename the documentation module to evolution-util.
* Move the contact map widgets to addressbook/gui/widgets.Matthew Barnes2012-12-131-2/+0
| | | | | | | | | | | | Move the supporting widgets for the contact maps feature alongside EABContactDisplay. Removing them from libeutil helps isolate our usage of libchamplain so it's not imposed on the entire application, and even 3rd party software. That libchamplain is an optional dependency only further complicates the matter. Ideally I'd like to somehow isolate this feature in an extension module, but we currently lack sufficient hooks for such an extension. So this arrangement will have to suffice for now.
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-132-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Evolution consists of entirely too many small utility libraries, which increases linking and loading time, places a burden on higher layers of the application (e.g. modules) which has to remember to link to all the small in-tree utility libraries, and makes it difficult to generate API documentation for these utility libraries in one Gtk-Doc module. Merge the following utility libraries under the umbrella of libeutil, and enforce a single-include policy on libeutil so we can reorganize the files as desired without disrupting its pseudo-public API. libemail-utils/libemail-utils.la libevolution-utils/libevolution-utils.la filter/libfilter.la widgets/e-timezone-dialog/libetimezonedialog.la widgets/menus/libmenus.la widgets/misc/libemiscwidgets.la widgets/table/libetable.la widgets/text/libetext.la This also merges libedataserverui from the Evolution-Data-Server module, since Evolution is its only consumer nowadays, and I'd like to make some improvements to those APIs without concern for backward-compatibility. And finally, start a Gtk-Doc module for libeutil. It's going to be a project just getting all the symbols _listed_ much less _documented_. But the skeletal structure is in place and I'm off to a good start.
* Bug #689966 - MDN bar shown in Sent folderMilan Crha2012-12-111-16/+2
| | | | The previous commit broke MDN send, which this one fixes.
* Bug #689966 - MDN bar shown in Sent folderMilan Crha2012-12-111-2/+9
|
* Address couple issues found by a Coverity scanMilan Crha2012-11-301-0/+2
|
* Add e_mail_session_append_to_local_folder().Matthew Barnes2012-08-151-14/+17
| | | | | | Asynchronous + synchronous convenience functions. Uses the EMailLocalFolder enumeration to specify a well-known folder.
* Bug #548778 - Use original location when replying in Search FolderMilan Crha2012-07-111-2/+2
|
* Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-041-5/+1
|
* Adapt modules/mdn to the new ESource API.Matthew Barnes2012-06-031-31/+96
|
* Whitespace cleanups.Matthew Barnes2012-05-131-3/+3
|
* Rename Evolution module libraries.Matthew Barnes2012-05-111-5/+5
| | | | | | | Drop the "libevolution" prefix so it's not so verbose and also consistent with upcoming evolution-data-server module libraries. libevolution-module-foo.so --> module-foo.so
* Bug #668687 - MDN panel left shown when moving to an empty folderMilan Crha2012-04-231-7/+71
|
* Add missing linker flags.Matthew Barnes2012-03-041-0/+1
|
* Move EAlert* and e-xml-utils references from other part of the code to ↵Srinivasa Ragavan2012-03-031-1/+1
| | | | libevolution-utils.
* Add missing linker flags.Matthew Barnes2012-01-191-0/+1
|
* Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-191-2/+4
| | | | | | | 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-6/+4
|
* Avoid passing EMailBackend as much as possible.Matthew Barnes2011-12-161-4/+4
| | | | | | | | | | | | | | | More mail API churn... reversing some previous API decisions. I've made some key API changes to EMailSession on the account-mgmt branch which should allow for this, and will hopefully also benefit the "email-factory" branch. EMailBackend barely needs to exist anymore, except as the owner of EMailSession. For several low-level functions, we replace its EMailBackend parameter with EMailSession and EAlertSink parameters; the latter so it can still pass user alerts up the chain.
* Reorder accounts by drag-and-drop.Matthew Barnes2011-12-111-2/+5
| | | | | | | | | | | | | | | | | | | | | 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.
* Bug 585066 - Add Auto-Submitted header to outgoing MDNsMatthew Barnes2011-11-221-10/+79
| | | | | | | | | | | | Also set the disposition field according to user preferences. If the MDN is sent without user confirmation ("always"), use: Disposition: automatic-action/MDN-sent-automatically;displayed If the MDN is sent in response to user confirmation ("ask"), use: Disposition: manual-action/MDN-sent-manually;displayed
* Split MDN handling into a module.Matthew Barnes2011-11-223-0/+545