aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-191-1/+2
| | | | | | | 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.
* Simplify library dependency flags.Matthew Barnes2011-10-051-9/+7
| | | | | | | | | We have a confusing array of nearly-identical CFLAGS/LIBS definitions in configure.ac. Time to simplify. Instead let's just have one definition that includes all the libraries provided by Evolution-Data-Server (incl. Camel). That, in combination with GNOME_PLATFORM, gives us most of what we need for compliation and linking, and we can sprinkle definitions for additional library dependencies in Makefile.am's as needed.
* 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.
* 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.
* 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/+2
| | | | | Make EMFormatHTML extensible and register an extension to automatically bind every EMFormatHTML instance to the appropriate EShellSettings.
* Restructure capplet stuffs and load only on express mode.Srinivasa Ragavan2010-03-141-1/+1
|
* Integrate into new account button.Srinivasa Ragavan2010-03-141-0/+1
|
* Compiler and linker flag cleanups.Matthew Barnes2009-12-281-2/+2
|
* Move mail migration code to libevolution-mail.so.Matthew Barnes2009-12-161-2/+0
| | | | So Anjal can reuse it.
* Fixes a build break.Chenthill Palanisamy2009-11-301-0/+1
|
* Bug 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-171-1/+1
|
* Bug 600926 - Fails to build due to missing dependenciesJonathon Jongsma2009-11-101-0/+4
|
* Bug 600926 - Fails to build due to missing dependenciesYan Li2009-11-101-1/+7
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-011-3/+4
|
* Goodbye libgnome and libgnomeui!!Matthew Barnes2009-09-191-1/+3
|
* Bug 594284 - FTBFS: missing linksDiego Escalante Urrelo2009-09-061-0/+1
|
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-301-2/+8
| | | | | | | | | | | | | - 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.
* Fix "make distcheck" errors and other build cleanups.Matthew Barnes2009-07-011-1/+1
|
* Get the "startup-wizard" plugin working again.Matthew Barnes2009-06-301-2/+0
|
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+56
- 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.