Index: qpopper3/popper/pop_dropcopy.c diff -c qpopper3/popper/pop_dropcopy.c:1.1.1.1 qpopper3/popper/pop_dropcopy.c:1.2 *** qpopper3/popper/pop_dropcopy.c:1.1.1.1 Wed Aug 18 16:07:19 1999 --- qpopper3/popper/pop_dropcopy.c Wed Aug 18 16:08:26 1999 *************** *** 992,998 **** * Because p->drop is used for bulletins. Right now it reverts back to * regular mode if drop box open fails. */ ! if ((mfd = open(p->drop_name, O_RDWR)) > 0) { /* Lock the maildrop */ if (flock (mfd,LOCK_EX) == -1) { (void)close(mfd) ; --- 992,998 ---- * Because p->drop is used for bulletins. Right now it reverts back to * regular mode if drop box open fails. */ ! if ((mfd = open(p->drop_name, O_RDWR | O_CREAT, 0600)) > 0) { /* Lock the maildrop */ if (flock (mfd,LOCK_EX) == -1) { (void)close(mfd) ;