]> git.ipfire.org Git - thirdparty/mlmmj.git/commitdiff
README and logging of discarded From: emails
authormmj <none@none>
Tue, 17 Jan 2006 12:07:51 +0000 (23:07 +1100)
committermmj <none@none>
Tue, 17 Jan 2006 12:07:51 +0000 (23:07 +1100)
README
src/mlmmj-process.c

diff --git a/README b/README
index 97a1c8b26554488d5e6a00d4e74b3086c447c189..c68bc5ae4ada770a01f2302a2f3f2b3788b36b95 100644 (file)
--- 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:
index f7080316f5b36cd35455b46a906f0933731547c2..79292aca2f9c65d3896a2f04df93e637f167865c 100644 (file)
@@ -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);