You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2005/11/17 08:36:57 UTC

svn commit: r345204 - /spamassassin/trunk/build/automc/automc-by-mail

Author: jm
Date: Wed Nov 16 23:36:54 2005
New Revision: 345204

URL: http://svn.apache.org/viewcvs?rev=345204&view=rev
Log:
add a couple more email addrs to the allow list; guys, please give it a try...

Modified:
    spamassassin/trunk/build/automc/automc-by-mail

Modified: spamassassin/trunk/build/automc/automc-by-mail
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/build/automc/automc-by-mail?rev=345204&r1=345203&r2=345204&view=diff
==============================================================================
--- spamassassin/trunk/build/automc/automc-by-mail (original)
+++ spamassassin/trunk/build/automc/automc-by-mail Wed Nov 16 23:36:54 2005
@@ -3,6 +3,18 @@
 use LWP::Simple;
 use MIME::Parser;
 
+# feel free to add your name here -- or that of anyone you want
+# to allow to use this system
+my $ALLOWED_MAIL_PEOPLE = qr/^(?:
+
+		jm\@jmason\.org|
+		quinlan\@pathname\.com|
+                maddoc\@maddoc\.net|
+                lwilton\@earthlink\.net|
+		duncf\@debian\.org
+
+	)/isx;
+
 # where the files are saved
 my $OUT_DIR = "/home/bbmass/bymail";
 
@@ -18,16 +30,6 @@
 	  	mc-fast mc-med mc-slow mc-slower
 
 	);
-
-# feel free to add your name here -- or that of anyone you want
-# to allow to use this system
-my $ALLOWED_MAIL_PEOPLE = qr/^(?:
-
-		jm\@jmason\.org|
-		quinlan\@pathname\.com|
-		duncf\@debian\.org
-
-	)/isx;
 
 my $EXTRACT_LOG = "$OUT_DIR/extract.log";
 my $LATEST_CF =   "$OUT_DIR/latest.cf";