aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/evolution-module-mail.c
Commit message (Collapse)AuthorAgeFilesLines
* evolution-module-mail.c: Remove unused declaration.Matthew Barnes2013-01-211-1/+0
|
* Add a "settings" module.Matthew Barnes2013-01-211-10/+0
| | | | | | Collect all the "config" extensions from the "addressbook", "calendar", and "mail" modules into one place. These extensions typically just bind GObject properties of extensible classes to app-specific GSettings keys.
* Bug 687400 - Composer settings not appliedMatthew Barnes2012-11-031-0/+2
| | | | | | | | | | | EMailConfigWebView is an extension that configures EWebView instances. This used to cover both the email formatter and the email composer, but with the email formatter now using WebKit/GTK+ and the email composer still using GtkHtml, the composer was left unconfigured. Add an EMailConfigWebViewGtkHTML extension that targets EWebViewGtkHTML instances and applies the relevant settings, and remove all the GtkHTML contortions from EMailConfigWebView.
* Remove mail module's g_module_check_init().Matthew Barnes2012-10-161-12/+0
| | | | Not needed anymore since all modules are resident nowadays.
* EMailConfigWebView: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-091-1/+1
| | | | Follow the usual GObject conventions.
* EMailConfigReader: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-091-1/+1
| | | | Follow the usual GObject conventions.
* EMailConfigFormatHTML: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-091-1/+1
| | | | Follow the usual GObject conventions.
* Reduce diff noise with account-mgmt branch.Matthew Barnes2011-12-201-0/+4
|
* Miscellaneous EShellView-related cleanups.Matthew Barnes2011-12-081-3/+3
|
* Convert junk filtering EPlugins to EExtensions.Matthew Barnes2011-07-141-2/+0
| | | | | | | | | | | | | | | | | We now have a proper junk mail filtering API. All junk filtering extensions must subclass EMailJunkFilter for user preferences and availability testing, and implement the CamelJunkFilter interface for the actual junk filtering and learning operations. The bogofilter module should be feature-equivalent to its former EPlugin. The spamassassin module is far more complex. It's nearly feature-equivalent to its former EPlugin, but I ditched the spamd respawning code since it seemed unnecessary for a mail client to have to deal with. If there's a huge outcry from users about it I'll reluctantly put it back, but I don't expect one. This gets us a step closer to killing off EConfig, and eventually the EPlugin framework itself.
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-271-0/+4
|
* Reduce GConf usage in em-composer-utils.c.Matthew Barnes2010-10-201-0/+2
| | | | | | | | | | | | | | | | | | To reduce GConf usage in em-composer-utils.c: - Relevant functions in em-composer-utils.c now take arguments for reply and forward styles. - Redundant forwarding functions were removed: em_utils_forward_attached() em_utils_forward_inline() em_utils_forward_quoted() - EMailReader now has "forward-style" and "reply-style" properties, which get bound to the appropriate EShellSettings properties in modules/mail/e-mail-config-reader.c. These same EShellSettings properties are bound to the combo boxes in Composer Preferences.
* More code cleanup.Matthew Barnes2010-07-271-5/+0
|
* Coding style and whitespace cleanup.Matthew Barnes2010-07-261-1/+1
|
* Add EMailReader i/f recurrsive from tne Content.Srinivasa Ragavan2010-07-261-0/+2
|
* Rewrite the content piece of evolution.Srinivasa Ragavan2010-07-261-0/+3
|
* Add an extension to configure EWebView.Matthew Barnes2010-03-231-0/+2
| | | | | Make EWebView extensible and register an extension to automatically bind every EWebView instance to the appropriate EShellSettings.
* Add an extension to configure EMFormatHTML.Matthew Barnes2010-03-201-0/+4
| | | | | Make EMFormatHTML extensible and register an extension to automatically bind every EMFormatHTML instance to the appropriate EShellSettings.
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-301-0/+12
| | | | | | | | | | | | | - Require all EPlugin and EPluginHook subtypes be registered before loading plugins. This drastically simplifies the EPlugin/EPluginHook negotiation. - Turn most EPluginHook subtypes into GTypeModules and register their types from an e_module_load() function (does not include shell hooks). - Convert EPluginLib and the Mono and Python bindings to GTypeModules and register their types from an e_module_load() function, and kill EPluginTypeHook.
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+59
- Collect all shell modules into a new top-level 'modules' directory: $(top_srcdir)/modules/addressbook $(top_srcdir)/modules/calendar $(top_srcdir)/modules/mail Nothing is allowed to link to these, not plugins nor other modules. THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X. - Mimic the libevolution-mail-shared library from master (except drop the "shared" suffix) and have libevolution-mail-importers and all mail-related plugins link to it. - Discard the a11y subdirectories and have the files live alongside their counterpart widgets.