aboutsummaryrefslogtreecommitdiff
path: root/contrib/sendmail/editmap/editmap.8
blob: 384cd1f0f74e18d4ccd1aabc6ebcb632d29956e2 (plain) (blame)
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
.\" Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
.\"	 All rights reserved.
.\"
.\" By using this file, you agree to the terms and conditions set
.\" forth in the LICENSE file which can be found at the top level of
.\" the sendmail distribution.
.\"
.\"
.\"     $Id: editmap.8,v 1.1.1.1 2002/02/17 21:56:45 gshapiro Exp $
.\"
.TH EDITMAP 8 "$Date: 2002/02/17 21:56:45 $"
.SH NAME
.B editmap
\- query and edit single records in database maps for sendmail
.SH SYNOPSIS
.B editmap
.RB [ \-C
.IR file ]
.RB [ \-N ]
.RB [ \-f ]
.RB [ \-q|\-u|\-x ]
maptype mapname
key [ "value ..." ]
.SH DESCRIPTION
.B Editmap
queries or edits one record in a database maps used by the keyed map lookups in
sendmail(8).
Arguments are passed on the command line and output (for queries) is
directed to standard output.
.PP
Depending on how it is compiled,
.B editmap
handles up to three different database formats,
selected using the
.I maptype
parameter.
They may be
.TP
dbm
DBM format maps.
This requires the
ndbm(3)
library.
.TP
btree
B-Tree format maps.
This requires the new Berkeley DB
library.
.TP
hash
Hash format maps.
This also requires the Berkeley DB
library.
.PP
If the
.I TrustedUser
option is set in the sendmail configuration file and
.B editmap
is invoked as root, the generated files will be owned by
the specified
.IR TrustedUser.
.SS Flags
.TP
.B \-C
Use the specified
.B sendmail
configuration file for looking up the TrustedUser option.
.TP
.B \-N
Include the null byte that terminates strings
in the map (for alias maps).
.TP
.B \-f
Normally all upper case letters in the key
are folded to lower case.
This flag disables that behaviour.
This is intended to mesh with the
\-f flag in the
.B K
line in sendmail.cf.
The value is never case folded.
.TP
.B \-q
Query the map for the specified key.  If found, print value to standard
output and exit with 0.  If not found then print an error
message to stdout and exit with EX_UNAVAILABLE.
.TP
.B \-u
Update the record for
.I key
with
.I value
or inserts a new record if one doesn't exist.  Exits with 0 on success
or EX_IOERR on failure.
.TP
.B \-x
Deletes the specific key from the map.  Exits with 0 on success or
EX_IOERR on failure.
.TP
.SH SEE ALSO
sendmail(8),
makemap(8)
.SH HISTORY
The
.B editmap
command has no history.