diff options
author | steve <steve@FreeBSD.org> | 1999-12-26 02:57:16 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-12-26 02:57:16 +0800 |
commit | a9003dec39ad7a3d43b82ccb2a5c752fe47b642d (patch) | |
tree | 7e7662300e43cfac1649c3ec5607bc148eeea9ac | |
parent | 91fa925f29fc125c64b3e36d674193dfe88e385b (diff) | |
download | freebsd-ports-gnome-a9003dec39ad7a3d43b82ccb2a5c752fe47b642d.tar.gz freebsd-ports-gnome-a9003dec39ad7a3d43b82ccb2a5c752fe47b642d.tar.zst freebsd-ports-gnome-a9003dec39ad7a3d43b82ccb2a5c752fe47b642d.zip |
From maintainer:
I was confused creating the most recent nmh port patch and
reverted the locking to "dot locking" as I'd thought that sendmail
used that. Upon using the new 'inc' command and closer
examination of sendmail, then mail.local, it looks like "flock"
locking is more appropriate (to match mail.local's behavior).
PR: 15674
Submitted by: maintainer
-rw-r--r-- | mail/nmh/files/patch-aa | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/mail/nmh/files/patch-aa b/mail/nmh/files/patch-aa index 399da07546cf..6e3e092cac44 100644 --- a/mail/nmh/files/patch-aa +++ b/mail/nmh/files/patch-aa @@ -1,6 +1,18 @@ -diff -ur ../../nmh-1.0.2-DIST/acconfig.h ./acconfig.h ---- ../../nmh-1.0.2-DIST/acconfig.h Thu Oct 21 11:58:09 1999 -+++ ./acconfig.h Sat Dec 11 11:54:28 1999 +--- ../../../nmh-1.0.2-DIST/acconfig.h Thu Oct 21 11:58:09 1999 ++++ ./acconfig.h Fri Dec 24 13:50:12 1999 +@@ -22,10 +22,10 @@ + * other programs which may modify your maildrops. + * Currently you can only use one type. + */ +-#define DOT_LOCKING 1 ++/* #define DOT_LOCKING 1 */ + /* #define FCNTL_LOCKING 1 */ + /* #define LOCKF_LOCKING 1 */ +-/* #define FLOCK_LOCKING 1 */ ++#define FLOCK_LOCKING 1 + + /* + * If you have defined DOT_LOCKING, then the default is to @@ -104,7 +104,7 @@ * The prefix which is prepended to the name of messages when they * are "removed" by rmm. This should typically be `,' or `#' |