File: README

package info (click to toggle)
liblockfile 1.06.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 172 kB
  • ctags: 42
  • sloc: ansic: 727; makefile: 151; sh: 51
file content (44 lines) | stat: -rw-r--r-- 1,366 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44

			README for liblockfile


This library implements a number of functions found in -lmail on SysV
systems. These functions are designed to lock the standard mailboxes in
/var/mail (or wherever the system puts them).

In additions, this library adds a number of functions to create,
manage and remove generic lockfiles.

The lockfiles are created by this library in an NFS-safe manner, that
is by using a tempfile and using link(2) to create the lockfile. It
works around several defects in NFS servers to make sure the lockfile
is created atomically.

The locking strategy is compatible with other well-written NFS-safe
programs that create lockfiles - such as procmail, exim and mutt.

If you are trying to lock a mailbox in a directory writable for group
mail, the locking functions will call a helper application which runs
setgid to do the actual locking. The helper application "dotlockfile"
can also be used directly, for example for use in shellscripts.

This means a program such as a MUA doesn't need to be setgid mail anymore
to be able to lock the mailbox.

See the included manualpages for more info:

Function			Manpage
========			=======
maillock,
mailunlock,
touchlock -			maillock.3

lockfile_create,
lockfile_remove,
lockfile_touch,
lockfile_check -		lockfile_create.3



    README  1.00  17-Apr-1999  Miquel van Smoorenburg <miquels@cistron.nl>