summaryrefslogtreecommitdiff
path: root/usr/src/man/man3mail/maillock.3mail
blob: f4fd267ee46e1093838c8e2d31b295f7f0ade632 (plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
'\" te
.\"  Copyright 1989 AT&T  Copyright (c) 1999, Sun Microsystems, Inc.  All Rights Reserved
.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
.\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
.TH MAILLOCK 3MAIL "Mar 29, 1999"
.SH NAME
maillock, mailunlock, touchlock \- functions to manage lockfile(s) for user's
mailbox
.SH SYNOPSIS
.LP
.nf
\fBcc\fR [ \fIflag\fR ... ] \fIfile\fR ... \fB-lmail\fR [ \fIlibrary\fR ... ]
#include <maillock.h>



\fBint\fR \fBmaillock\fR(\fBconst char *\fR\fIuser\fR, \fBint\fR \fIretrycnt\fR);
.fi

.LP
.nf
\fBvoid\fR \fBmailunlock\fR(\fBvoid\fR);
.fi

.LP
.nf
\fBvoid\fR \fBtouchlock\fR(\fBvoid\fR);
.fi

.SH DESCRIPTION
.sp
.LP
The \fBmaillock()\fR function attempts to create a lockfile for the user's
mailfile. If a lockfile already exists, and it has not been modified in the
last 5 minutes, \fBmaillock()\fR will remove the lockfile and set its own
lockfile.
.sp
.LP
It is crucial that programs locking mail files refresh their locks  at least
every three minutes to maintain the lock. Refresh the lockfile by calling the
\fBtouchlock()\fR function with no arguments.
.sp
.LP
The algorithm used to determine the age of the lockfile takes into account
clock drift between machines using a network file system. A zero is written
into the lockfile so that the lock will  be respected by systems running the
standard version of System V.
.sp
.LP
If the lockfile has been modified in the last 5 minutes  the process will sleep
until the lock is available. The sleep algorithm is to sleep for 5 seconds
times the attempt number. That is, the first sleep will be for 5 seconds, the
next sleep will be for 10 seconds, etc. until the number of attempts reaches
\fIretrycnt\fR.
.sp
.LP
When the lockfile is no longer needed, it should be removed by calling
\fBmailunlock()\fR.
.sp
.LP
The \fIuser\fR argument is the login name of the user for whose mailbox the
lockfile will be created. \fBmaillock()\fR assumes that user's mailfiles are in
the ``standard'' place as defined in  <\fBmaillock.h\fR>.
.SH RETURN VALUES
.sp
.LP
Upon successful completion, .\fBmaillock()\fR returns \fB0\fR. Otherwise it
returns \fB\(mi1\fR\&.
.SH FILES
.sp
.ne 2
.na
\fB\fB/var/mail/*\fR\fR
.ad
.RS 20n
user mailbox files
.RE

.sp
.ne 2
.na
\fB\fB/var/mail/*.lock\fR\fR
.ad
.RS 20n
user mailbox lockfiles
.RE

.SH ATTRIBUTES
.sp
.LP
See \fBattributes\fR(5) for descriptions of the following attributes:
.sp

.sp
.TS
box;
c | c
l | l .
ATTRIBUTE TYPE	ATTRIBUTE VALUE
_
MT-Level	Unsafe
.TE

.SH SEE ALSO
.sp
.LP
\fBlibmail\fR(3LIB), \fBattributes\fR(5)
.SH NOTES
.sp
.LP
The \fBmailunlock()\fR function will only remove the lockfile created from the
most previous call to \fBmaillock()\fR. Calling \fBmaillock()\fR for different
users without intervening calls to \fBmailunlock()\fR will cause the initially
created lockfile(s) to remain, potentially blocking subsequent message delivery
until the current process finally terminates.