1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/chinese/pine4/files/patch-ac
Steve Price 6aeac862c2 Update to version 4.05.
PR:		8025
Submitted by:	maintainer
1998-10-10 04:29:27 +00:00

16 lines
636 B
Plaintext

--- imap/src/osdep/unix/unix.c.orig Thu Sep 3 15:07:07 1998
+++ imap/src/osdep/unix/unix.c Tue Sep 22 13:36:19 1998
@@ -1010,7 +1010,11 @@
case EACCES: /* protection failure */
if (stat (hitch,&sb)) { /* try again if file exists(?) */
/* punt silently if paranoid site */
- if (mail_parameters (NIL,GET_LOCKEACCESERROR,NIL))
+ if (
+#ifdef __FreeBSD__
+ strncmp(lock,"/var/mail/",10) && /* /var/mail/... isn't lockable */
+#endif
+ mail_parameters (NIL,GET_LOCKEACCESERROR,NIL))
mm_log ("Mailbox vulnerable - directory must have 1777 protection",
WARN);
*lock = '\0'; /* give up on lock file */