diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-08-21 00:28:17 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-10-01 11:26:23 +0800 |
commit | 0d0654c19f7d966110cebed882b6a6e80f5e4198 (patch) | |
tree | a5aaa8636f4cb85eb0c502ada907eb2e5a05e098 /data | |
parent | b46da7735a5f58c3477f7725d88f4374a9c5dd84 (diff) | |
download | gsoc2013-evolution-0d0654c19f7d966110cebed882b6a6e80f5e4198.tar gsoc2013-evolution-0d0654c19f7d966110cebed882b6a6e80f5e4198.tar.gz gsoc2013-evolution-0d0654c19f7d966110cebed882b6a6e80f5e4198.tar.bz2 gsoc2013-evolution-0d0654c19f7d966110cebed882b6a6e80f5e4198.tar.lz gsoc2013-evolution-0d0654c19f7d966110cebed882b6a6e80f5e4198.tar.xz gsoc2013-evolution-0d0654c19f7d966110cebed882b6a6e80f5e4198.tar.zst gsoc2013-evolution-0d0654c19f7d966110cebed882b6a6e80f5e4198.zip |
Check for SpamAssassin during configure.
If the spamassassin and sa-learn programs cannot be found with
AC_PATH_PROG, configure will abort with an error message.
You can then either:
a) install the SpamAssassin software
b) specify the path with SPAMASSASSIN=/path/to/spamassassin and/or
SA_LEARN=/path/to/sa-learn
c) pass --disable-spamassassin to configure to exclude the module
This also drops the "spamc" and "spamd" GSettings keys.
Diffstat (limited to 'data')
-rw-r--r-- | data/org.gnome.evolution.spamassassin.gschema.xml.in | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/data/org.gnome.evolution.spamassassin.gschema.xml.in b/data/org.gnome.evolution.spamassassin.gschema.xml.in index 85d43d47e7..e0daba1831 100644 --- a/data/org.gnome.evolution.spamassassin.gschema.xml.in +++ b/data/org.gnome.evolution.spamassassin.gschema.xml.in @@ -13,17 +13,7 @@ <key name="use-daemon" type="b"> <default>true</default> <_summary>Use SpamAssassin daemon and client</_summary> - <_description>Use SpamAssassin daemon and client (spamc/spamd).</_description> - </key> - <key name="spamc-binary" type="s"> - <default>'/usr/bin/spamc'</default> - <_summary>SpamAssassin client binary</_summary> - <_description>SpamAssassin client binary</_description> - </key> - <key name="spamd-binary" type="s"> - <default>'/usr/bin/spamd'</default> - <_summary>SpamAssassin daemon binary</_summary> - <_description>SpamAssassin daemon binary</_description> + <_description>Use spamc and spamd programs, if available.</_description> </key> </schema> </schemalist> |