Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / man / man8 / oqmgr.8
blobab27c22f8347590fc9451473d3b6da1af92402cb
1 .\"     $NetBSD$
2 .\"
3 .TH OQMGR 8 
4 .ad
5 .fi
6 .SH NAME
7 oqmgr
8 \-
9 old Postfix queue manager
10 .SH "SYNOPSIS"
11 .na
12 .nf
13 \fBoqmgr\fR [generic Postfix daemon options]
14 .SH DESCRIPTION
15 .ad
16 .fi
17 The \fBoqmgr\fR(8) daemon awaits the arrival of incoming mail
18 and arranges for its delivery via Postfix delivery processes.
19 The actual mail routing strategy is delegated to the
20 \fBtrivial-rewrite\fR(8) daemon.
21 This program expects to be run from the \fBmaster\fR(8) process
22 manager.
24 Mail addressed to the local \fBdouble-bounce\fR address is
25 logged and discarded.  This stops potential loops caused by
26 undeliverable bounce notifications.
27 .SH "MAIL QUEUES"
28 .na
29 .nf
30 .ad
31 .fi
32 The \fBoqmgr\fR(8) daemon maintains the following queues:
33 .IP \fBincoming\fR
34 Inbound mail from the network, or mail picked up by the
35 local \fBpickup\fR(8) agent from the \fBmaildrop\fR directory.
36 .IP \fBactive\fR
37 Messages that the queue manager has opened for delivery. Only
38 a limited number of messages is allowed to enter the \fBactive\fR
39 queue (leaky bucket strategy, for a fixed delivery rate).
40 .IP \fBdeferred\fR
41 Mail that could not be delivered upon the first attempt. The queue
42 manager implements exponential backoff by doubling the time between
43 delivery attempts.
44 .IP \fBcorrupt\fR
45 Unreadable or damaged queue files are moved here for inspection.
46 .IP \fBhold\fR
47 Messages that are kept "on hold" are kept here until someone
48 sets them free.
49 .SH "DELIVERY STATUS REPORTS"
50 .na
51 .nf
52 .ad
53 .fi
54 The \fBoqmgr\fR(8) daemon keeps an eye on per-message delivery status
55 reports in the following directories. Each status report file has
56 the same name as the corresponding message file:
57 .IP \fBbounce\fR
58 Per-recipient status information about why mail is bounced.
59 These files are maintained by the \fBbounce\fR(8) daemon.
60 .IP \fBdefer\fR
61 Per-recipient status information about why mail is delayed.
62 These files are maintained by the \fBdefer\fR(8) daemon.
63 .IP \fBtrace\fR
64 Per-recipient status information as requested with the
65 Postfix "\fBsendmail -v\fR" or "\fBsendmail -bv\fR" command.
66 These files are maintained by the \fBtrace\fR(8) daemon.
67 .PP
68 The \fBoqmgr\fR(8) daemon is responsible for asking the
69 \fBbounce\fR(8), \fBdefer\fR(8) or \fBtrace\fR(8) daemons to
70 send delivery reports.
71 .SH "STRATEGIES"
72 .na
73 .nf
74 .ad
75 .fi
76 The queue manager implements a variety of strategies for
77 either opening queue files (input) or for message delivery (output).
78 .IP "\fBleaky bucket\fR"
79 This strategy limits the number of messages in the \fBactive\fR queue
80 and prevents the queue manager from running out of memory under
81 heavy load.
82 .IP \fBfairness\fR
83 When the \fBactive\fR queue has room, the queue manager takes one
84 message from the \fBincoming\fR queue and one from the \fBdeferred\fR
85 queue. This prevents a large mail backlog from blocking the delivery
86 of new mail.
87 .IP "\fBslow start\fR"
88 This strategy eliminates "thundering herd" problems by slowly
89 adjusting the number of parallel deliveries to the same destination.
90 .IP "\fBround robin\fR
91 The queue manager sorts delivery requests by destination.
92 Round-robin selection prevents one destination from dominating
93 deliveries to other destinations.
94 .IP "\fBexponential backoff\fR"
95 Mail that cannot be delivered upon the first attempt is deferred.
96 The time interval between delivery attempts is doubled after each
97 attempt.
98 .IP "\fBdestination status cache\fR"
99 The queue manager avoids unnecessary delivery attempts by
100 maintaining a short-term, in-memory list of unreachable destinations.
101 .SH "TRIGGERS"
106 On an idle system, the queue manager waits for the arrival of
107 trigger events, or it waits for a timer to go off. A trigger
108 is a one-byte message.
109 Depending on the message received, the queue manager performs
110 one of the following actions (the message is followed by the
111 symbolic constant used internally by the software):
112 .IP "\fBD (QMGR_REQ_SCAN_DEFERRED)\fR"
113 Start a deferred queue scan.  If a deferred queue scan is already
114 in progress, that scan will be restarted as soon as it finishes.
115 .IP "\fBI (QMGR_REQ_SCAN_INCOMING)\fR"
116 Start an incoming queue scan. If an incoming queue scan is already
117 in progress, that scan will be restarted as soon as it finishes.
118 .IP "\fBA (QMGR_REQ_SCAN_ALL)\fR"
119 Ignore deferred queue file time stamps. The request affects
120 the next deferred queue scan.
121 .IP "\fBF (QMGR_REQ_FLUSH_DEAD)\fR"
122 Purge all information about dead transports and destinations.
123 .IP "\fBW (TRIGGER_REQ_WAKEUP)\fR"
124 Wakeup call, This is used by the master server to instantiate
125 servers that should not go away forever. The action is to start
126 an incoming queue scan.
128 The \fBoqmgr\fR(8) daemon reads an entire buffer worth of triggers.
129 Multiple identical trigger requests are collapsed into one, and
130 trigger requests are sorted so that \fBA\fR and \fBF\fR precede
131 \fBD\fR and \fBI\fR. Thus, in order to force a deferred queue run,
132 one would request \fBA F D\fR; in order to notify the queue manager
133 of the arrival of new mail one would request \fBI\fR.
134 .SH "STANDARDS"
137 RFC 3463 (Enhanced status codes)
138 RFC 3464 (Delivery status notifications)
139 .SH "SECURITY"
144 The \fBoqmgr\fR(8) daemon is not security sensitive. It reads
145 single-character messages from untrusted local users, and thus may
146 be susceptible to denial of service attacks. The \fBoqmgr\fR(8) daemon
147 does not talk to the outside world, and it can be run at fixed low
148 privilege in a chrooted environment.
149 .SH DIAGNOSTICS
152 Problems and transactions are logged to the \fBsyslog\fR(8) daemon.
153 Corrupted message files are saved to the \fBcorrupt\fR queue
154 for further inspection.
156 Depending on the setting of the \fBnotify_classes\fR parameter,
157 the postmaster is notified of bounces and of other trouble.
158 .SH BUGS
161 A single queue manager process has to compete for disk access with
162 multiple front-end processes such as \fBcleanup\fR(8). A sudden burst of
163 inbound mail can negatively impact outbound delivery rates.
164 .SH "CONFIGURATION PARAMETERS"
169 Changes to \fBmain.cf\fR are not picked up automatically,
170 as \fBoqmgr\fR(8)
171 is a persistent process. Use the command "\fBpostfix reload\fR" after
172 a configuration change.
174 The text below provides only a parameter summary. See
175 \fBpostconf\fR(5) for more details including examples.
177 In the text below, \fItransport\fR is the first field in a
178 \fBmaster.cf\fR entry.
179 .SH "COMPATIBILITY CONTROLS"
184 Available before Postfix version 2.5:
185 .IP "\fBallow_min_user (no)\fR"
186 Allow a sender or recipient address to have `-' as the first
187 character.
188 .SH "ACTIVE QUEUE CONTROLS"
193 .IP "\fBqmgr_clog_warn_time (300s)\fR"
194 The minimal delay between warnings that a specific destination is
195 clogging up the Postfix active queue.
196 .IP "\fBqmgr_message_active_limit (20000)\fR"
197 The maximal number of messages in the active queue.
198 .IP "\fBqmgr_message_recipient_limit (20000)\fR"
199 The maximal number of recipients held in memory by the Postfix
200 queue manager, and the maximal size of the size of the short-term,
201 in-memory "dead" destination status cache.
202 .SH "DELIVERY CONCURRENCY CONTROLS"
207 .IP "\fBqmgr_fudge_factor (100)\fR"
208 Obsolete feature: the percentage of delivery resources that a busy
209 mail system will use up for delivery of a large mailing  list
210 message.
211 .IP "\fBinitial_destination_concurrency (5)\fR"
212 The initial per-destination concurrency level for parallel delivery
213 to the same destination.
214 .IP "\fBdefault_destination_concurrency_limit (20)\fR"
215 The default maximal number of parallel deliveries to the same
216 destination.
217 .IP "\fItransport\fB_destination_concurrency_limit ($default_destination_concurrency_limit)\fR"
218 Idem, for delivery via the named message \fItransport\fR.
220 Available in Postfix version 2.5 and later:
221 .IP "\fItransport\fB_initial_destination_concurrency ($initial_destination_concurrency)\fR"
222 Initial concurrency for delivery via the named message
223 \fItransport\fR.
224 .IP "\fBdefault_destination_concurrency_failed_cohort_limit (1)\fR"
225 How many pseudo-cohorts must suffer connection or handshake
226 failure before a specific destination is considered unavailable
227 (and further delivery is suspended).
228 .IP "\fItransport\fB_destination_concurrency_failed_cohort_limit ($default_destination_concurrency_failed_cohort_limit)\fR"
229 Idem, for delivery via the named message \fItransport\fR.
230 .IP "\fBdefault_destination_concurrency_negative_feedback (1)\fR"
231 The per-destination amount of delivery concurrency negative
232 feedback, after a delivery completes with a connection or handshake
233 failure.
234 .IP "\fItransport\fB_destination_concurrency_negative_feedback ($default_destination_concurrency_negative_feedback)\fR"
235 Idem, for delivery via the named message \fItransport\fR.
236 .IP "\fBdefault_destination_concurrency_positive_feedback (1)\fR"
237 The per-destination amount of delivery concurrency positive
238 feedback, after a delivery completes without connection or handshake
239 failure.
240 .IP "\fItransport\fB_destination_concurrency_positive_feedback ($default_destination_concurrency_positive_feedback)\fR"
241 Idem, for delivery via the named message \fItransport\fR.
242 .IP "\fBdestination_concurrency_feedback_debug (no)\fR"
243 Make the queue manager's feedback algorithm verbose for performance
244 analysis purposes.
245 .SH "RECIPIENT SCHEDULING CONTROLS"
250 .IP "\fBdefault_destination_recipient_limit (50)\fR"
251 The default maximal number of recipients per message delivery.
252 .IP \fItransport\fB_destination_recipient_limit\fR
253 Idem, for delivery via the named message \fItransport\fR.
254 .SH "OTHER RESOURCE AND RATE CONTROLS"
259 .IP "\fBminimal_backoff_time (300s)\fR"
260 The minimal time between attempts to deliver a deferred message;
261 prior to Postfix 2.4 the default value was 1000s.
262 .IP "\fBmaximal_backoff_time (4000s)\fR"
263 The maximal time between attempts to deliver a deferred message.
264 .IP "\fBmaximal_queue_lifetime (5d)\fR"
265 The maximal time a message is queued before it is sent back as
266 undeliverable.
267 .IP "\fBqueue_run_delay (300s)\fR"
268 The time between deferred queue scans by the queue manager;
269 prior to Postfix 2.4 the default value was 1000s.
270 .IP "\fBtransport_retry_time (60s)\fR"
271 The time between attempts by the Postfix queue manager to contact
272 a malfunctioning message delivery transport.
274 Available in Postfix version 2.1 and later:
275 .IP "\fBbounce_queue_lifetime (5d)\fR"
276 The maximal time a bounce message is queued before it is considered
277 undeliverable.
279 Available in Postfix version 2.5 and later:
280 .IP "\fBdefault_destination_rate_delay (0s)\fR"
281 The default amount of delay that is inserted between individual
282 deliveries to the same destination; with per-destination recipient
283 limit > 1, a destination is a domain, otherwise it is a recipient.
284 .IP "\fItransport\fB_destination_rate_delay $default_destination_rate_delay
285 Idem, for delivery via the named message \fItransport\fR.
286 .SH MISCELLANEOUS CONTROLS
289 .IP "\fBconfig_directory (see 'postconf -d' output)\fR"
290 The default location of the Postfix main.cf and master.cf
291 configuration files.
292 .IP "\fBdefer_transports (empty)\fR"
293 The names of message delivery transports that should not deliver mail
294 unless someone issues "\fBsendmail -q\fR" or equivalent.
295 .IP "\fBdelay_logging_resolution_limit (2)\fR"
296 The maximal number of digits after the decimal point when logging
297 sub-second delay values.
298 .IP "\fBhelpful_warnings (yes)\fR"
299 Log warnings about problematic configuration settings, and provide
300 helpful suggestions.
301 .IP "\fBipc_timeout (3600s)\fR"
302 The time limit for sending or receiving information over an internal
303 communication channel.
304 .IP "\fBprocess_id (read-only)\fR"
305 The process ID of a Postfix command or daemon process.
306 .IP "\fBprocess_name (read-only)\fR"
307 The process name of a Postfix command or daemon process.
308 .IP "\fBqueue_directory (see 'postconf -d' output)\fR"
309 The location of the Postfix top-level queue directory.
310 .IP "\fBsyslog_facility (mail)\fR"
311 The syslog facility of Postfix logging.
312 .IP "\fBsyslog_name (see 'postconf -d' output)\fR"
313 The mail system name that is prepended to the process name in syslog
314 records, so that "smtpd" becomes, for example, "postfix/smtpd".
315 .SH "FILES"
318 /var/spool/postfix/incoming, incoming queue
319 /var/spool/postfix/active, active queue
320 /var/spool/postfix/deferred, deferred queue
321 /var/spool/postfix/bounce, non-delivery status
322 /var/spool/postfix/defer, non-delivery status
323 /var/spool/postfix/trace, delivery status
324 .SH "SEE ALSO"
327 trivial-rewrite(8), address routing
328 bounce(8), delivery status reports
329 postconf(5), configuration parameters
330 master(5), generic daemon options
331 master(8), process manager
332 syslogd(8), system logging
333 .SH "README FILES"
338 Use "\fBpostconf readme_directory\fR" or
339 "\fBpostconf html_directory\fR" to locate this information.
342 QSHAPE_README, Postfix queue analysis
343 .SH "LICENSE"
348 The Secure Mailer license must be distributed with this software.
349 .SH "AUTHOR(S)"
352 Wietse Venema
353 IBM T.J. Watson Research
354 P.O. Box 704
355 Yorktown Heights, NY 10598, USA