Expand PMF_FN_* macros.
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / man / man8 / qmgr.8
blob91fd572eac5b9ebe8c665d2138a77d4243282aed
1 .\"     $NetBSD$
2 .\"
3 .TH QMGR 8 
4 .ad
5 .fi
6 .SH NAME
7 qmgr
8 \-
9 Postfix queue manager
10 .SH "SYNOPSIS"
11 .na
12 .nf
13 \fBqmgr\fR [generic Postfix daemon options]
14 .SH DESCRIPTION
15 .ad
16 .fi
17 The \fBqmgr\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 \fBqmgr\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) daemon 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 \fBqmgr\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 \fBqmgr\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 .IP "\fBpreemptive message scheduling\fR"
102 The queue manager attempts to minimize the average per-recipient delay
103 while still preserving the correct per-message delays, using
104 a sophisticated preemptive message scheduling.
105 .SH "TRIGGERS"
110 On an idle system, the queue manager waits for the arrival of
111 trigger events, or it waits for a timer to go off. A trigger
112 is a one-byte message.
113 Depending on the message received, the queue manager performs
114 one of the following actions (the message is followed by the
115 symbolic constant used internally by the software):
116 .IP "\fBD (QMGR_REQ_SCAN_DEFERRED)\fR"
117 Start a deferred queue scan.  If a deferred queue scan is already
118 in progress, that scan will be restarted as soon as it finishes.
119 .IP "\fBI (QMGR_REQ_SCAN_INCOMING)\fR"
120 Start an incoming queue scan. If an incoming queue scan is already
121 in progress, that scan will be restarted as soon as it finishes.
122 .IP "\fBA (QMGR_REQ_SCAN_ALL)\fR"
123 Ignore deferred queue file time stamps. The request affects
124 the next deferred queue scan.
125 .IP "\fBF (QMGR_REQ_FLUSH_DEAD)\fR"
126 Purge all information about dead transports and destinations.
127 .IP "\fBW (TRIGGER_REQ_WAKEUP)\fR"
128 Wakeup call, This is used by the master server to instantiate
129 servers that should not go away forever. The action is to start
130 an incoming queue scan.
132 The \fBqmgr\fR(8) daemon reads an entire buffer worth of triggers.
133 Multiple identical trigger requests are collapsed into one, and
134 trigger requests are sorted so that \fBA\fR and \fBF\fR precede
135 \fBD\fR and \fBI\fR. Thus, in order to force a deferred queue run,
136 one would request \fBA F D\fR; in order to notify the queue manager
137 of the arrival of new mail one would request \fBI\fR.
138 .SH "STANDARDS"
141 RFC 3463 (Enhanced status codes)
142 RFC 3464 (Delivery status notifications)
143 .SH "SECURITY"
148 The \fBqmgr\fR(8) daemon is not security sensitive. It reads
149 single-character messages from untrusted local users, and thus may
150 be susceptible to denial of service attacks. The \fBqmgr\fR(8) daemon
151 does not talk to the outside world, and it can be run at fixed low
152 privilege in a chrooted environment.
153 .SH DIAGNOSTICS
156 Problems and transactions are logged to the syslog daemon.
157 Corrupted message files are saved to the \fBcorrupt\fR queue
158 for further inspection.
160 Depending on the setting of the \fBnotify_classes\fR parameter,
161 the postmaster is notified of bounces and of other trouble.
162 .SH BUGS
165 A single queue manager process has to compete for disk access with
166 multiple front-end processes such as \fBcleanup\fR(8). A sudden burst of
167 inbound mail can negatively impact outbound delivery rates.
168 .SH "CONFIGURATION PARAMETERS"
173 Changes to \fBmain.cf\fR are not picked up automatically
174 as \fBqmgr\fR(8)
175 is a persistent process. Use the "\fBpostfix reload\fR" command after
176 a configuration change.
178 The text below provides only a parameter summary. See
179 \fBpostconf\fR(5) for more details including examples.
181 In the text below, \fItransport\fR is the first field in a
182 \fBmaster.cf\fR entry.
183 .SH "COMPATIBILITY CONTROLS"
188 Available before Postfix version 2.5:
189 .IP "\fBallow_min_user (no)\fR"
190 Allow a sender or recipient address to have `-' as the first
191 character.
192 .SH "ACTIVE QUEUE CONTROLS"
197 .IP "\fBqmgr_clog_warn_time (300s)\fR"
198 The minimal delay between warnings that a specific destination is
199 clogging up the Postfix active queue.
200 .IP "\fBqmgr_message_active_limit (20000)\fR"
201 The maximal number of messages in the active queue.
202 .IP "\fBqmgr_message_recipient_limit (20000)\fR"
203 The maximal number of recipients held in memory by the Postfix
204 queue manager, and the maximal size of the size of the short-term,
205 in-memory "dead" destination status cache.
206 .IP "\fBqmgr_message_recipient_minimum (10)\fR"
207 The minimal number of in-memory recipients for any message.
208 .IP "\fBdefault_recipient_limit (20000)\fR"
209 The default per-transport upper limit on the number of in-memory
210 recipients.
211 .IP "\fItransport\fB_recipient_limit ($default_recipient_limit)\fR"
212 Idem, for delivery via the named message \fItransport\fR.
213 .IP "\fBdefault_extra_recipient_limit (1000)\fR"
214 The default value for the extra per-transport limit imposed on the
215 number of in-memory recipients.
216 .IP "\fItransport\fB_extra_recipient_limit ($default_extra_recipient_limit)\fR"
217 Idem, for delivery via the named message \fItransport\fR.
219 Available in Postfix version 2.4 and later:
220 .IP "\fBdefault_recipient_refill_limit (100)\fR"
221 The default per-transport limit on the number of recipients refilled at
222 once.
223 .IP "\fItransport\fB_recipient_refill_limit ($default_recipient_refill_limit)\fR"
224 Idem, for delivery via the named message \fItransport\fR.
225 .IP "\fBdefault_recipient_refill_delay (5s)\fR"
226 The default per-transport maximum delay between recipients refills.
227 .IP "\fItransport\fB_recipient_refill_delay ($default_recipient_refill_delay)\fR"
228 Idem, for delivery via the named message \fItransport\fR.
229 .SH "DELIVERY CONCURRENCY CONTROLS"
234 .IP "\fBinitial_destination_concurrency (5)\fR"
235 The initial per-destination concurrency level for parallel delivery
236 to the same destination.
237 .IP "\fBdefault_destination_concurrency_limit (20)\fR"
238 The default maximal number of parallel deliveries to the same
239 destination.
240 .IP "\fItransport\fB_destination_concurrency_limit ($default_destination_concurrency_limit)\fR"
241 Idem, for delivery via the named message \fItransport\fR.
243 Available in Postfix version 2.5 and later:
244 .IP "\fItransport\fB_initial_destination_concurrency ($initial_destination_concurrency)\fR"
245 Initial concurrency for delivery via the named message
246 \fItransport\fR.
247 .IP "\fBdefault_destination_concurrency_failed_cohort_limit (1)\fR"
248 How many pseudo-cohorts must suffer connection or handshake
249 failure before a specific destination is considered unavailable
250 (and further delivery is suspended).
251 .IP "\fItransport\fB_destination_concurrency_failed_cohort_limit ($default_destination_concurrency_failed_cohort_limit)\fR"
252 Idem, for delivery via the named message \fItransport\fR.
253 .IP "\fBdefault_destination_concurrency_negative_feedback (1)\fR"
254 The per-destination amount of delivery concurrency negative
255 feedback, after a delivery completes with a connection or handshake
256 failure.
257 .IP "\fItransport\fB_destination_concurrency_negative_feedback ($default_destination_concurrency_negative_feedback)\fR"
258 Idem, for delivery via the named message \fItransport\fR.
259 .IP "\fBdefault_destination_concurrency_positive_feedback (1)\fR"
260 The per-destination amount of delivery concurrency positive
261 feedback, after a delivery completes without connection or handshake
262 failure.
263 .IP "\fItransport\fB_destination_concurrency_positive_feedback ($default_destination_concurrency_positive_feedback)\fR"
264 Idem, for delivery via the named message \fItransport\fR.
265 .IP "\fBdestination_concurrency_feedback_debug (no)\fR"
266 Make the queue manager's feedback algorithm verbose for performance
267 analysis purposes.
268 .SH "RECIPIENT SCHEDULING CONTROLS"
273 .IP "\fBdefault_destination_recipient_limit (50)\fR"
274 The default maximal number of recipients per message delivery.
275 .IP "\fItransport\fB_destination_recipient_limit ($default_destination_recipient_limit)\fR"
276 Idem, for delivery via the named message \fItransport\fR.
277 .SH "MESSAGE SCHEDULING CONTROLS"
282 .IP "\fBdefault_delivery_slot_cost (5)\fR"
283 How often the Postfix queue manager's scheduler is allowed to
284 preempt delivery of one message with another.
285 .IP "\fItransport\fB_delivery_slot_cost ($default_delivery_slot_cost)\fR"
286 Idem, for delivery via the named message \fItransport\fR.
287 .IP "\fBdefault_minimum_delivery_slots (3)\fR"
288 How many recipients a message must have in order to invoke the
289 Postfix queue manager's scheduling algorithm at all.
290 .IP "\fItransport\fB_minimum_delivery_slots ($default_minimum_delivery_slots)\fR"
291 Idem, for delivery via the named message \fItransport\fR.
292 .IP "\fBdefault_delivery_slot_discount (50)\fR"
293 The default value for transport-specific _delivery_slot_discount
294 settings.
295 .IP "\fItransport\fB_delivery_slot_discount ($default_delivery_slot_discount)\fR"
296 Idem, for delivery via the named message \fItransport\fR.
297 .IP "\fBdefault_delivery_slot_loan (3)\fR"
298 The default value for transport-specific _delivery_slot_loan
299 settings.
300 .IP "\fItransport\fB_delivery_slot_loan ($default_delivery_slot_loan)\fR"
301 Idem, for delivery via the named message \fItransport\fR.
302 .SH "OTHER RESOURCE AND RATE CONTROLS"
307 .IP "\fBminimal_backoff_time (300s)\fR"
308 The minimal time between attempts to deliver a deferred message;
309 prior to Postfix 2.4 the default value was 1000s.
310 .IP "\fBmaximal_backoff_time (4000s)\fR"
311 The maximal time between attempts to deliver a deferred message.
312 .IP "\fBmaximal_queue_lifetime (5d)\fR"
313 The maximal time a message is queued before it is sent back as
314 undeliverable.
315 .IP "\fBqueue_run_delay (300s)\fR"
316 The time between deferred queue scans by the queue manager;
317 prior to Postfix 2.4 the default value was 1000s.
318 .IP "\fBtransport_retry_time (60s)\fR"
319 The time between attempts by the Postfix queue manager to contact
320 a malfunctioning message delivery transport.
322 Available in Postfix version 2.1 and later:
323 .IP "\fBbounce_queue_lifetime (5d)\fR"
324 The maximal time a bounce message is queued before it is considered
325 undeliverable.
327 Available in Postfix version 2.5 and later:
328 .IP "\fBdefault_destination_rate_delay (0s)\fR"
329 The default amount of delay that is inserted between individual
330 deliveries to the same destination; with per-destination recipient
331 limit > 1, a destination is a domain, otherwise it is a recipient.
332 .IP "\fItransport\fB_destination_rate_delay $default_destination_rate_delay
333 Idem, for delivery via the named message \fItransport\fR.
334 .SH "MISCELLANEOUS CONTROLS"
339 .IP "\fBconfig_directory (see 'postconf -d' output)\fR"
340 The default location of the Postfix main.cf and master.cf
341 configuration files.
342 .IP "\fBdefer_transports (empty)\fR"
343 The names of message delivery transports that should not deliver mail
344 unless someone issues "\fBsendmail -q\fR" or equivalent.
345 .IP "\fBdelay_logging_resolution_limit (2)\fR"
346 The maximal number of digits after the decimal point when logging
347 sub-second delay values.
348 .IP "\fBhelpful_warnings (yes)\fR"
349 Log warnings about problematic configuration settings, and provide
350 helpful suggestions.
351 .IP "\fBipc_timeout (3600s)\fR"
352 The time limit for sending or receiving information over an internal
353 communication channel.
354 .IP "\fBprocess_id (read-only)\fR"
355 The process ID of a Postfix command or daemon process.
356 .IP "\fBprocess_name (read-only)\fR"
357 The process name of a Postfix command or daemon process.
358 .IP "\fBqueue_directory (see 'postconf -d' output)\fR"
359 The location of the Postfix top-level queue directory.
360 .IP "\fBsyslog_facility (mail)\fR"
361 The syslog facility of Postfix logging.
362 .IP "\fBsyslog_name (see 'postconf -d' output)\fR"
363 The mail system name that is prepended to the process name in syslog
364 records, so that "smtpd" becomes, for example, "postfix/smtpd".
365 .SH "FILES"
368 /var/spool/postfix/incoming, incoming queue
369 /var/spool/postfix/active, active queue
370 /var/spool/postfix/deferred, deferred queue
371 /var/spool/postfix/bounce, non-delivery status
372 /var/spool/postfix/defer, non-delivery status
373 /var/spool/postfix/trace, delivery status
374 .SH "SEE ALSO"
377 trivial-rewrite(8), address routing
378 bounce(8), delivery status reports
379 postconf(5), configuration parameters
380 master(5), generic daemon options
381 master(8), process manager
382 syslogd(8), system logging
383 .SH "README FILES"
388 Use "\fBpostconf readme_directory\fR" or
389 "\fBpostconf html_directory\fR" to locate this information.
392 SCHEDULER_README, scheduling algorithm
393 QSHAPE_README, Postfix queue analysis
394 .SH "LICENSE"
399 The Secure Mailer license must be distributed with this software.
400 .SH "AUTHOR(S)"
403 Wietse Venema
404 IBM T.J. Watson Research
405 P.O. Box 704
406 Yorktown Heights, NY 10598, USA
408 Preemptive scheduler enhancements:
409 Patrik Rak
410 Modra 6
411 155 00, Prague, Czech Republic