From: mmj Date: Tue, 17 Jan 2006 12:07:51 +0000 (+1100) Subject: README and logging of discarded From: emails X-Git-Tag: RELEASE_1_2_12_RC1~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=974059c6ff3fdbeb6a225fa651e106755c976f48;p=thirdparty%2Fmlmmj.git README and logging of discarded From: emails --- diff --git a/README b/README index 97a1c8b2..c68bc5ae 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -README mlmmj-1.2.9 Dec 14th 2005 +README mlmmj-1.2.10 Jan 17th 2005 This is an attempt at implementing a mailing list manager with the same functionality as the brilliant ezmlm, but with a decent license and mail server @@ -29,8 +29,8 @@ To use mlmmj, do the following: $ ./configure && make && make install - 1) Make sure your mailserver accepts '+' as a recipient delimiter. In Postfix - it's done by adding + 1) Configure a recipient delimiter. The default is to use '+', and in + Postfix it's done by adding recipient_delimiter = + @@ -47,6 +47,8 @@ To use mlmmj, do the following: http://faqs.org/faqs/mail/addressing/ + The mmj TUNABLE "delimiter" configures this on a per list basis + 2) Create the mailinglist. There's a script, mlmmj-make-ml.sh, that will make a mailinglist for mlmmj. It is highly recommended to use this script to make the lists! What is does is described here: diff --git a/src/mlmmj-process.c b/src/mlmmj-process.c index f7080316..79292aca 100644 --- a/src/mlmmj-process.c +++ b/src/mlmmj-process.c @@ -590,6 +590,9 @@ int main(int argc, char **argv) "/queue/discarded/", randomstr); log_error(LOG_ARGS, "Discarding %s due to invalid From:", mailfile); + for(i = 0; i < fromemails.emailcount; i++) + log_error(LOG_ARGS, "fromemails.emaillist[%d] = %s\n", + i, fromemails.emaillist[i]); rename(mailfile, discardname); unlink(donemailname); myfree(donemailname);