aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2011-08-20 17:43:21 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2011-08-20 17:46:45 +0300
commitdbb042cb96ec855120b11b27c4ea4a72a6920ed8 (patch)
tree8115aca3a885ecfa872cfa8d64b7087760c96762 /src/main.c
parent65d790e09a96dd8319a9a3399ce85b40c7b57e77 (diff)
downloadmailfromd-dbb042cb96ec855120b11b27c4ea4a72a6920ed8.tar.gz
mailfromd-dbb042cb96ec855120b11b27c4ea4a72a6920ed8.tar.bz2
Implement dspam support.
* configure.ac: Check for dspam * mflib/.gitignore: Add dspam.h * mflib/Makefile.am: Build dspam.h Install dspam.mf * mflib/dspam.mf: New file. * src/Makefile.am (mailfromd_LDADD): Add DSPAM_LIBS (INCLUDES): Add DSPAM_CFLAGS * src/builtin/Makefile.am (BI_FILES): Add dspam.bi. (INCLUDES): Add DSPAM_CFLAGS * src/builtin/dspam.bi: New file. * src/main.c (mailfromd_show_defaults): Reflect dspam support.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index cc0852df..637bad4f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1030,10 +1030,13 @@ mailfromd_show_defaults()
#endif
printf("\n");
- printf("Optional features: ");
+ printf("Optional features: ");
#if defined WITH_GEOIP
- printf("GeoIP");
+ printf(" GeoIP");
#endif
+#if defined WITH_DSPAM
+ printf(" DSPAM");
+#endif
printf("\n");
db_format_enumerate(db_format_enumerator, NULL);

Return to:

Send suggestions and report system problems to the System administrator.