diff options
author | ache <ache@FreeBSD.org> | 1996-08-28 21:18:46 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-08-28 21:18:46 +0800 |
commit | d3160f74bb533f16bfea0f4ca117665a8e5cf60e (patch) | |
tree | 72b0618708d5669b228792cb1d5f7ac05f9aa112 /mail | |
parent | 73f06dffee86a9e0964fe21339a756a32331e728 (diff) | |
download | freebsd-ports-gnome-d3160f74bb533f16bfea0f4ca117665a8e5cf60e.tar.gz freebsd-ports-gnome-d3160f74bb533f16bfea0f4ca117665a8e5cf60e.tar.zst freebsd-ports-gnome-d3160f74bb533f16bfea0f4ca117665a8e5cf60e.zip |
Use flock locking as other delivery systems does
Move global procmailrc to /usr/local/etc
Diffstat (limited to 'mail')
-rw-r--r-- | mail/procmail/files/patch-ab | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/mail/procmail/files/patch-ab b/mail/procmail/files/patch-ab new file mode 100644 index 000000000000..be45797a7c37 --- /dev/null +++ b/mail/procmail/files/patch-ab @@ -0,0 +1,44 @@ +*** config.h.bak Mon Oct 30 05:09:07 1995 +--- config.h Wed Aug 28 17:10:52 1996 +*************** +*** 45,51 **** + #define TRUSTED_IDS {"root","daemon","uucp","mail","x400","network",\ + "list","slist","lists","news",0} + +! /*#define NO_fcntl_LOCK /* uncomment any of these three if you */ + /*#define NO_lockf_LOCK /* definitely do not want procmail to make */ + /*#define NO_flock_LOCK /* use of those kernel-locking methods */ + +--- 45,51 ---- + #define TRUSTED_IDS {"root","daemon","uucp","mail","x400","network",\ + "list","slist","lists","news",0} + +! #define NO_fcntl_LOCK /* uncomment any of these three if you */ + /*#define NO_lockf_LOCK /* definitely do not want procmail to make */ + /*#define NO_flock_LOCK /* use of those kernel-locking methods */ + +*************** +*** 69,79 **** + is not found, maildelivery will proceed as normal to the default + system mailbox. */ + +! #define ETCRC "/etc/procmailrc" /* optional global procmailrc startup + file (will only be read if procmail + is started with no rcfile on the command line). */ + +! #define ETCRCS "/etc/procmailrcs/" /* optional trusted path prefix for + rcfiles which will be executed with + the uid of the owner of the rcfile (this only happens if procmail is + called with the -m option, without variable assignments on the command +--- 69,79 ---- + is not found, maildelivery will proceed as normal to the default + system mailbox. */ + +! #define ETCRC "/usr/local/etc/procmailrc" /* optional global procmailrc startup + file (will only be read if procmail + is started with no rcfile on the command line). */ + +! #define ETCRCS "/usr/local/etc/procmailrcs/" /* optional trusted path prefix for + rcfiles which will be executed with + the uid of the owner of the rcfile (this only happens if procmail is + called with the -m option, without variable assignments on the command |