f2496540ac
* Use PCRE (http://www.pcre.org) for mattern matching. + Most visible change is a different syntax for subexpression matching, using (...). MATCH2 becomes MATCH1, MATCH3 becomes MATCH2, etc... + "w" account option dropped. + During a transitional period, setting MAILDROP_OLD_REGEXP reverts to the old pattern matching engine. * Do not autoreply to messages with an Auto-Submitted: header, unless it's contents are "no". Add Auto-Submitted: auto-replied.
31 lines
846 B
Text
31 lines
846 B
Text
$NetBSD: patch-ab,v 1.2 2005/10/20 20:26:37 jlam Exp $
|
|
|
|
--- maildrop/configure.orig 2005-09-23 20:28:40.000000000 -0400
|
|
+++ maildrop/configure
|
|
@@ -22118,7 +22118,7 @@ fi
|
|
test "x$prefix" = xNONE && prefix=$ac_default_prefix
|
|
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
|
|
|
-if test -d $srcdir/../courier
|
|
+if true || test -d $srcdir/../courier
|
|
then
|
|
#
|
|
# This version of maildrop is integrated into Courier mail server
|
|
@@ -22255,7 +22255,7 @@ SPOOLDIR="$DIR"
|
|
|
|
get_spooldir() {
|
|
|
|
-if test -d $srcdir/../courier
|
|
+if true || test -d $srcdir/../courier
|
|
then
|
|
MBOX_RESET_GID=1
|
|
SPOOLDIR="./Maildir"
|
|
@@ -22323,7 +22323,7 @@ if test "${with_default_maildrop+set}" =
|
|
else
|
|
# Courier defaults to ./Maildir
|
|
|
|
- if test -d $srcdir/../courier
|
|
+ if true || test -d $srcdir/../courier
|
|
then
|
|
maildrop_cv_SYS_INSTALL_MBOXDIR=./Maildir
|
|
fi
|