diff --git a/configure b/configure index b99b247..6114d3a 100755 --- a/configure +++ b/configure @@ -1330,7 +1330,7 @@ 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 75166e5..6d5af54 100644 --- a/configure.in +++ b/configure.in @@ -184,7 +184,7 @@ 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 bd88431..49b60c6 100644 --- a/src/test.c +++ b/src/test.c @@ -114,6 +114,8 @@ 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);