From: Paul L. <pdo...@us...> - 2005-06-17 07:29:55
|
Update of /cvsroot/serverfilters/serversidefilter In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12559 Modified Files: CHANGELOG config.php.sample Log Message: Adding delrc command to filtercmd script Index: config.php.sample =================================================================== RCS file: /cvsroot/serverfilters/serversidefilter/config.php.sample,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** config.php.sample 17 Jun 2005 04:43:52 -0000 1.2 --- config.php.sample 17 Jun 2005 07:29:46 -0000 1.3 *************** *** 21,25 **** ! global $ALWAYS_CREATE, $FILTER_FILE_PATH, $FILTER_APP_PATH, $DEFAULT_DELIVERY, $ALLOW_UNSUBSCRIBED, $SPAMFILTER, $SPAMHEADER, $SPAMFILTERMAXKB, $SPAMVALUE, $UNSUREVALUE, $VIRTUAL_DOMAINS, $LOCAL_MAILDIR, $USE_LDAP, --- 21,25 ---- ! global $ALWAYS_CREATE, $FILTER_APP_PATH, $DEFAULT_DELIVERY, $ALLOW_UNSUBSCRIBED, $SPAMFILTER, $SPAMHEADER, $SPAMFILTERMAXKB, $SPAMVALUE, $UNSUREVALUE, $VIRTUAL_DOMAINS, $LOCAL_MAILDIR, $USE_LDAP, *************** *** 37,44 **** ! // This is the full path to the filter files. Note that this ! // is ignored when using database lookups (see below). // //$FILTER_FILE_PATH = '/home/email/[DOMUSER]/users/[USERNAME]/.procmailrc'; $FILTER_FILE_PATH = '/home/email/[DOMUSER]/users/[USERNAME]/.mailfilter'; --- 37,46 ---- ! // This is the full path to the filter files. Note that this ! // must be set to the same value as $FILTER_FILE_NAME when ! // using database lookups (see below). // //$FILTER_FILE_PATH = '/home/email/[DOMUSER]/users/[USERNAME]/.procmailrc'; + //$FILTER_FILE_PATH = '.mailfilter'; $FILTER_FILE_PATH = '/home/email/[DOMUSER]/users/[USERNAME]/.mailfilter'; *************** *** 156,159 **** --- 158,163 ---- // Comment these lines out if you do not wish to have forward // files created + // Note that the path name should be identical to the file name + // when using database lookups (see below) // $FORWARD_FILE_TYPE = "qmail"; *************** *** 196,205 **** // VACATION FILE SETTINGS // // These are used to manage vacation type RC Files // ! $VAC_MSG_FILE_PATH = "xxx_vacation.txt"; ! $VAC_SUBJ_FILE_PATH = "xxx_vacation_subject.txt"; ! $VAC_CC_FILE_PATH = "xxx_vacation_cc_addresses.txt"; ! $VAC_KEEP_FILE_PATH = "xxx_vacation_keep_messages.txt"; --- 200,214 ---- // VACATION FILE SETTINGS // + + // These are used to manage vacation type RC Files // ! // Note that no path should be given here (just the ! // file name) when using database lookups (see above) ! // ! $VAC_MSG_FILE_PATH = "vacation.txt"; ! $VAC_SUBJ_FILE_PATH = "vacation_subject.txt"; ! $VAC_CC_FILE_PATH = "vacation_cc_addresses.txt"; ! $VAC_KEEP_FILE_PATH = "vacation_keep_messages.txt"; Index: CHANGELOG =================================================================== RCS file: /cvsroot/serverfilters/serversidefilter/CHANGELOG,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CHANGELOG 21 May 2005 19:46:19 -0000 1.2 --- CHANGELOG 17 Jun 2005 07:29:46 -0000 1.3 *************** *** 28,31 **** --- 28,33 ---- - Added new checkcreds_imap alternative to the UW c-client library (thanks to David Phillips <david at geektech.com>). + - Added vacation rctypes to filtercmd script as well + as delrc command to remove files. Version 1.41 |