> Subject: [bug-mailutils] gdbm over NFS safety
> 
> Hello.
> I can see that the vacation action in sieve uses gdbm files. In our
> setup we have NFS mounted mailboxes. Is it safe to use gdbm over NFS?
> 

GDBM is multiple readers and 1 writer.  So it uses a lock to restrict write
access on the database.  IIRC, POSIX fcntl(2) locking is NFS safe but not
BSD flock(2), so you will need to make sure that your version of GDB is
compiled with flock(2) enable and to disable flock(2).
#undef HAVE_FLOCK




_______________________________________________
Bug-mailutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-mailutils

Reply via email to