From 20345baf7dc7404dcee20d4d7f573d0dbc3b6c0f Mon Sep 17 00:00:00 2001 From: SJ Date: Sat, 3 Aug 2013 12:57:35 +0200 Subject: [PATCH] minor fixes --- configure | 2 +- configure.in | 2 +- src/test.c | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/configure b/configure index b99b2479..6114d3a8 100755 --- a/configure +++ b/configure @@ -1330,7 +1330,7 @@ Optional Features: Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --with-database[=mysql|psql] use either mysql or psql database for storing data (default: none) + --with-database[=mysql] select the used database, currently mysql only (default: none) --with-piler-user=username what user the piler daemon shall be run as Some influential environment variables: diff --git a/configure.in b/configure.in index 75166e59..6d5af54f 100644 --- a/configure.in +++ b/configure.in @@ -184,7 +184,7 @@ fi AC_ARG_WITH(database, -[ --with-database[[=mysql|psql]] use either mysql or psql database for storing data (default: none)],[ +[ --with-database[[=mysql]] select the used database, currently mysql only (default: none)],[ if test "$withval" != "no" -a "$withval" != "yes"; then DATABASE=$withval fi diff --git a/src/test.c b/src/test.c index bd88431d..49b60c6a 100644 --- a/src/test.c +++ b/src/test.c @@ -114,6 +114,8 @@ int main(int argc, char **argv){ printf("spam: %d\n", sdata.spam_message); + if(sdata.internal_sender == 0 && sdata.internal_recipient == 0) printf("NOT IN mydomains\n"); + printf("\n\n"); close_database(&sdata);