Files
evolution/modules/Makefile.am
Matthew Barnes c238fbfd15 Convert junk filtering EPlugins to EExtensions.
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.
2011-09-14 14:08:36 +02:00

45 lines
684 B
Makefile

if ENABLE_MONO
MONO_DIR = plugin-mono
endif
if ENABLE_PYTHON
PYTHON_DIR = plugin-python
endif
if ENABLE_ONLINE_ACCOUNTS
ONLINE_ACCOUNTS_DIR = online-accounts
endif
if ENABLE_NETWORK_MANAGER
NETWORK_MANAGER_DIR = network-manager
endif
if ENABLE_CONNMAN
CONNMAN_DIR = connman
endif
if ENABLE_WINDOWS_SENS
WINDOWS_SENS_DIR = windows-sens
endif
SUBDIRS = \
addressbook \
bogofilter \
calendar \
mail \
composer-autosave \
mailto-handler \
offline-alert \
plugin-lib \
plugin-manager \
spamassassin \
startup-wizard \
$(MONO_DIR) \
$(PYTHON_DIR) \
$(ONLINE_ACCOUNTS_DIR) \
$(NETWORK_MANAGER_DIR) \
$(WINDOWS_SENS_DIR) \
$(CONNMAN_DIR)
-include $(top_srcdir)/git.mk