From: Paul L. <pdo...@us...> - 2005-12-01 05:37:39
|
Update of /cvsroot/serverfilters/serversidefilter In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14388 Modified Files: config.php.sample Log Message: Fixes for when maildir does not exist; as when it has been removed w/out updating filters Index: config.php.sample =================================================================== RCS file: /cvsroot/serverfilters/serversidefilter/config.php.sample,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** config.php.sample 21 Jul 2005 09:52:20 -0000 1.6 --- config.php.sample 1 Dec 2005 05:37:31 -0000 1.7 *************** *** 29,33 **** $USE_MAILDIRS, $SEPERATOR, $USE_MYSQL, $USE_SPECIAL_SPAM_FILTER_RULE, $FTP_SERVER, $FTP_PASSIVE, $USE_SSL_FTP, $LDAP_LOOKUP_FTP_SERVER, ! $LDAP_BASE, $LDAP_SERVER, $LDAP_ATTRIBUTE; --- 29,33 ---- $USE_MAILDIRS, $SEPERATOR, $USE_MYSQL, $USE_SPECIAL_SPAM_FILTER_RULE, $FTP_SERVER, $FTP_PASSIVE, $USE_SSL_FTP, $LDAP_LOOKUP_FTP_SERVER, ! $LDAP_BASE, $LDAP_SERVER, $LDAP_ATTRIBUTE, $IS_MAILDIR; *************** *** 52,55 **** --- 52,62 ---- + // If you are using maildir storage, set this to 1; + // otherwise (mailbox storage), set this to zero. + // + $IS_MAILDIR = 1; + + + // If you would like to include a default delivery method in your // filter files, include that here. If you do not want a default |