From cse.psu.edu!9fans-outgoing-owner Fri Oct 27 23:27:24 EDT 1995 Received: by colossus.cse.psu.edu id <78419>; Fri, 27 Oct 1995 23:06:23 -0400 Received: from plan9.ecf.toronto.edu ([128.100.8.9]) by colossus.cse.psu.edu with SMTP id <78418>; Fri, 27 Oct 1995 23:06:02 -0400 From: steve@plan9.ecf.toronto.edu To: 9fans@cse.psu.edu Date: Fri, 27 Oct 1995 23:01:55 -0400 Subject: sendmail versus u9fs Message-Id: <95Oct27.230602edt.78418@colossus.cse.psu.edu> Sender: owner-9fans@cse.psu.edu Precedence: bulk Reply-To: 9fans@cse.psu.edu Status: RO I'm using u9fs as my main file server. According to mail(1), mailbox files must be append-only, but that's not possible with u9fs. This resulted in all new messages being written to the beginning of my mbox, instead of getting appended. The following patch works around the problem: cpu% cd /sys/src/cmd/upas/send cpu% diff /p/cd/sys/src/cmd/upas/send main.c 363a364 > Bseek(fp, 0, 2); 367a369 > Bseek(fp, 0, 2);