source: server/mail/postfix.xml@ 9f12e36

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 9f12e36 was 9f12e36, checked in by Randy McMurchy <randy@…>, 18 years ago

Removed 'keywordset' blocks and extra spaces from the XML files (note this was by accident as I meant to do just in the gnome directory but I was in the root of BOOK when I ran the script, but this was going to happen anyway so I don't think it is a big deal)

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@6192 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 26.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY postfix-download-http "http://www.mirrorspace.org/postfix/official/postfix-&postfix-version;.tar.gz">
8 <!ENTITY postfix-download-ftp "ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-&postfix-version;.tar.gz">
9 <!ENTITY postfix-md5sum "./server/mail/postfix.xml">
10 <!ENTITY postfix-size "2.3 MB">
11 <!ENTITY postfix-buildsize "78 MB">
12 <!ENTITY postfix-time "0.4 SBU">
13]>
14
15<sect1 id="postfix" xreflabel="Postfix-&postfix-version;">
16 <?dbhtml filename="postfix.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Postfix-&postfix-version;</title>
24
25 <indexterm zone="postfix">
26 <primary sortas="a-Postfix">Postfix</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Postfix</title>
31
32 <para>The <application>Postfix</application> package contains a Mail
33 Transport Agent (MTA). This is useful for sending email to other users
34 of your host machine. It can also be configured to be a central mail
35 server for your domain, a mail relay agent or simply a mail delivery
36 agent to your local Internet Service Provider (ISP).</para>
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&postfix-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&postfix-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &postfix-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &postfix-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &postfix-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &postfix-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <bridgehead renderas="sect3">Postfix Dependencies</bridgehead>
61
62 <!-- commenting this out as BDB is now built in LFS
63
64 <bridgehead renderas="sect4">Required</bridgehead>
65 <para role="required"><xref linkend="db"/></para>
66
67 -->
68
69 <bridgehead renderas="sect4">Optional</bridgehead>
70 <para role="optional"><xref linkend="pcre"/>,
71 <xref linkend="mysql"/>,
72 <xref linkend="postgresql"/>,
73 <xref linkend="openldap"/>,
74 <xref linkend="openssl"/>,
75 <xref linkend="cyrus-sasl"/>, and
76 <ulink url="http://cr.yp.to/cdb.html">cdb</ulink> or
77 <ulink url="http://www.corpit.ru/mjt/tinycdb.html">TinyCDB</ulink></para>
78
79 <para condition="html" role="usernotes">User Notes:
80 <ulink url="&blfs-wiki;/postfix"/></para>
81
82 </sect2>
83
84 <sect2 role="installation">
85 <title>Installation of Postfix</title>
86
87 <sect3>
88 <title>Configuring the Build</title>
89
90 <para>The <application>Postfix</application> source tree does not contain
91 a <filename>configure</filename> script, rather the makefile in the
92 top-level directory contains a <option>makefiles</option> target that
93 regenerates all the other makefiles in the build tree. If you wish to
94 use additional software such as a database back-end for virtual users, or
95 TLS/SSL authentication, you will need to regenerate the makefiles using
96 one or more of the appropriate <envar>CCARGS</envar> and
97 <envar>AUXLIBS</envar> settings listed below.</para>
98
99 <para>Here is an example that combines the TLS and
100 <application>Cyrus-SASL</application> arguments:</para>
101
102<screen><userinput>make makefiles \
103CCARGS='-DUSE_TLS -DUSE_SASL_AUTH -DDEF_DAEMON_DIR=\"/usr/lib/postfix\" \
104 -DDEF_MANPAGE_DIR=\"/usr/share/man\" -I/usr/include/openssl \
105 -I/usr/include/sasl' \
106 AUXLIBS='-L/usr/lib -lssl -lcrypto -lsasl2'</userinput></screen>
107
108 <sect4>
109 <title>TLS Authentication</title>
110
111 <para>To use TLS authentication with postfix
112 you will need to pass the following values to the
113 <command>make makefiles</command> command:</para>
114
115<screen><literal>CCARGS='-DUSE_TLS -I/usr/include/openssl'
116AUXLIBS='-L/usr/lib -lssl -lcrypto'</literal></screen>
117
118 <para>To use TLS you will also need
119 <xref linkend="cyrus-sasl"/>.</para>
120
121 </sect4>
122
123 <sect4>
124 <title>Cyrus-SASL</title>
125
126 <para>To use <application>Cyrus-SASL</application> with
127 <application>Postfix</application>, use the following arguments:</para>
128
129<screen><literal>CCARGS='-DUSE_SASL_AUTH -I/usr/include/sasl'
130AUXLIBS='-L/usr/lib -lsasl2'</literal></screen>
131
132 </sect4>
133
134 <sect4>
135 <title>OpenLDAP</title>
136
137 <para>To use <application>OpenLDAP</application> with
138 <application>Postfix</application>, use the following
139 arguments:</para>
140
141<screen><literal>CCARGS='-I/usr/include -DHAS_LDAP'
142AUXLIBS='-L/usr/lib -lldap -llber'</literal></screen>
143
144 </sect4>
145
146 <sect4>
147 <title>MySQL</title>
148
149 <para>To use <application>MySQL</application> with
150 <application>Postfix</application>, use the following
151 arguments:</para>
152
153<screen><literal>CCARGS='-DHAS_MYSQL -I/usr/include/mysql'
154AUXLIBS='-L/usr/lib -lmysqlclient -lz -lm'</literal></screen>
155
156 </sect4>
157
158 <sect4>
159 <title>PostgreSQL</title>
160
161 <para>To use <application>PostgreSQL</application> with
162 <application>Postfix</application>, use the following
163 arguments:</para>
164
165<screen><literal>CCARGS='-DHAS_PGSQL -I/usr/include/postgresql'
166AUXLIBS='-L/usr/lib -lpq -lz -lm'</literal></screen>
167
168 </sect4>
169
170 <sect4>
171 <title>TinyCDB</title>
172
173 <para>To use <application>TinyCDB</application> with
174 <application>Postfix</application>, use the following
175 arguments:</para>
176
177<screen><literal>CCARGS='-DHAS_CDB'
178AUXLIBS='<replaceable>&lt;/path/to/CDB&gt;</replaceable>/libcdb.a'</literal></screen>
179
180 </sect4>
181
182 </sect3>
183
184 <sect3>
185 <title>Installing Postfix</title>
186
187 <para>Before you compile the program, you need to create users and groups
188 that will be expected to be in place during the installation.
189 Add the users and groups with the following commands issued by the
190 <systemitem class='username'>root</systemitem> user:</para>
191
192<screen role="root"><userinput>groupadd -g 32 postfix &amp;&amp;
193groupadd -g 33 postdrop &amp;&amp;
194useradd -c "Postfix Daemon User" -d /dev/null -g postfix \
195 -s /bin/false -u 32 postfix &amp;&amp;
196chown -v postfix:postfix /var/mail</userinput></screen>
197
198 <para>Install <application>Postfix</application> by running the
199 following commands:</para>
200
201<screen><userinput>make makefiles CCARGS='-DDEF_DAEMON_DIR=\"/usr/lib/postfix\" \
202 -DDEF_MANPAGE_DIR=\"/usr/share/man\" <replaceable>&lt;additional args&gt;</replaceable>' \
203 <replaceable>&lt;AUXLIBS='additonal args'&gt;</replaceable> &amp;&amp;
204make</userinput></screen>
205
206 <para>This package does not come with a test suite.</para>
207
208 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
209
210<screen role='root'><userinput>sh postfix-install -non-interactive</userinput></screen>
211
212 <para>The final installation step is to install the program's documentation
213 with the following commands (again, as the
214 <systemitem class="username">root</systemitem> user):</para>
215
216<screen role="root"><userinput>install -v -d /usr/share/doc/postfix &amp;&amp;
217cp -v -rf html/* /usr/share/doc/postfix</userinput></screen>
218
219 </sect3>
220
221 </sect2>
222
223 <sect2 role="commands">
224 <title>Command Explanations</title>
225
226 <para><command>make makefiles</command>: This command rebuilds the
227 makefiles throughout the source tree to use the options contained in the
228 <envar>CCARGS</envar> and <envar>AUXLIBS</envar> variables.</para>
229
230 <para><command>sh postfix-install -non-interactive</command> : This
231 keeps the install script from asking any questions, thereby accepting
232 default destination directories in all but the two cases mentioned in
233 the 'make makefiles' command.</para>
234
235 </sect2>
236
237 <sect2 role="configuration">
238 <title>Configuring Postfix</title>
239
240 <sect3 id="postfix-config">
241 <title>Config Files</title>
242
243 <para><filename>/etc/aliases</filename>,
244 <filename>/etc/postfix/main.cf</filename>, and
245 <filename>/etc/postfix/master.cf</filename></para>
246
247 <indexterm zone="postfix postfix-config">
248 <primary sortas="e-etc-aliases">/etc/aliases</primary>
249 </indexterm>
250
251 <indexterm zone="postfix postfix-config">
252 <primary sortas="e-etc-postfix-star">/etc/postfix/*</primary>
253 </indexterm>
254
255 </sect3>
256
257 <sect3>
258 <title>Configuration Information</title>
259
260<screen role="root"><userinput>cat &gt;&gt; /etc/aliases &lt;&lt; "EOF"
261<literal># Begin /etc/aliases
262
263MAILER-DAEMON: postmaster
264postmaster: root
265
266root: LOGIN
267# End /etc/aliases</literal>
268EOF</userinput></screen>
269
270 <note>
271 <para>To protect an existing <filename>/etc/aliases</filename> file,
272 the above command appends these aliases to it if it exists. This file
273 should be checked and duplicate aliases removed, if present.</para>
274 </note>
275
276 <para>The <filename>/etc/aliases</filename> file that was just created
277 or appended, the <filename>main.cf</filename> and the
278 <filename>master.cf</filename> must be personalized for your system.
279 The <filename>aliases</filename> file needs your non-root login identity
280 so mail addressed to <systemitem class="username">root</systemitem> can
281 be forwarded to you at the user level. The <filename>main.cf</filename>
282 file needs your fully qualified hostname. All of these edits can be done
283 with <command>sed</command> commands entered into the console with
284 appropriate substitutions of your non-root login name for
285 <replaceable>&lt;user&gt;</replaceable> and your fully qualified hostname for
286 <replaceable>&lt;localhost.localdomain&gt;</replaceable>. You will find the
287 <filename>main.cf</filename> file is self documenting, so load it into
288 your editor to make the changes you need for your situation.</para>
289
290<screen role="root"><userinput>sed -i "s/LOGIN/<replaceable>&lt;user&gt;</replaceable>/" /etc/aliases &amp;&amp;
291sed -i "s/#myhostname = host.domain.tld/myhostname = \
292 <replaceable>&lt;localhost.localdomain&gt;</replaceable>/" /etc/postfix/main.cf &amp;&amp;
293/usr/bin/newaliases &amp;&amp;
294/usr/sbin/postfix start</userinput></screen>
295
296 </sect3>
297
298 <sect3 id="postfix-init">
299 <title>Boot Script</title>
300
301 <para>To automate the running of Postfix at startup, install the
302 <filename>/etc/rc.d/init.d/postfix</filename> init script included
303 in the <xref linkend="bootscripts"/> package.</para>
304
305 <indexterm zone="postfix postfix-init">
306 <primary sortas="f-postfix">postfix</primary>
307 </indexterm>
308
309<screen role="root"><userinput>make install-postfix</userinput></screen>
310
311 </sect3>
312
313 </sect2>
314
315 <sect2 role="content">
316 <title>Contents</title>
317
318 <segmentedlist>
319 <segtitle>Installed Programs</segtitle>
320 <segtitle>Installed Libraries</segtitle>
321 <segtitle>Installed Directories</segtitle>
322
323 <seglistitem>
324 <seg>anvil, bounce, cleanup, discard, error, flush, lmtp, local, mailq,
325 master, newaliases, nqmgr, oqmgr, pickup, pipe, postalias, postcat,
326 postconf, postdrop, postfix, postkick, postlock, postlog, postmap,
327 postqueue, postsuper, proxymap, qmgr, qmqpd, sendmail, showq, smtp,
328 smtpd, spawn, tlsmgr, trivial-rewrite, verify, and virtual</seg>
329 <seg>None</seg>
330 <seg>/etc/postfix, /usr/lib/postfix and /usr/share/doc/postfix</seg>
331 </seglistitem>
332 </segmentedlist>
333
334 <variablelist>
335 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
336 <?dbfo list-presentation="list"?>
337 <?dbhtml list-presentation="table"?>
338
339 <varlistentry id="anvil">
340 <term><command>anvil</command></term>
341 <listitem>
342 <para>Provides connection and rate request limiting.</para>
343 <indexterm zone="postfix anvil">
344 <primary sortas="b-anvil">anvil</primary>
345 </indexterm>
346 </listitem>
347 </varlistentry>
348
349 <varlistentry id="bounce">
350 <term><command>bounce</command></term>
351 <listitem>
352 <para>A daemon that maintains per-message log files with
353 non-delivery status information.</para>
354 <indexterm zone="postfix bounce">
355 <primary sortas="b-bounce">bounce</primary>
356 </indexterm>
357 </listitem>
358 </varlistentry>
359
360 <varlistentry id="cleanup">
361 <term><command>cleanup</command></term>
362 <listitem>
363 <para>A daemon that processes inbound mail, inserts it into the
364 incoming mail queue, and informs the queue manager of its
365 arrival.</para>
366 <indexterm zone="postfix cleanup">
367 <primary sortas="b-cleanup">cleanup</primary>
368 </indexterm>
369 </listitem>
370 </varlistentry>
371
372 <varlistentry id="discard">
373 <term><command>discard</command></term>
374 <listitem>
375 <para>Processes delivery requests from the queue manager that cannot
376 be delivered to the recipient.</para>
377 <indexterm zone="postfix discard">
378 <primary sortas="b-discard">discard</primary>
379 </indexterm>
380 </listitem>
381 </varlistentry>
382
383 <varlistentry id="error">
384 <term><command>error</command></term>
385 <listitem>
386 <para>A deamon that processes non-delivery requests from the
387 queue manager.</para>
388 <indexterm zone="postfix error">
389 <primary sortas="b-error">error</primary>
390 </indexterm>
391 </listitem>
392 </varlistentry>
393
394 <varlistentry id="flush">
395 <term><command>flush</command></term>
396 <listitem>
397 <para>A daemon that maintains a record of deferred mail by
398 destination.</para>
399 <indexterm zone="postfix flush">
400 <primary sortas="b-flush">flush</primary>
401 </indexterm>
402 </listitem>
403 </varlistentry>
404
405 <varlistentry id="lmtp">
406 <term><command>lmtp</command></term>
407 <listitem>
408 <para>A daemon that processes message delivery requests from the
409 queue manager.</para>
410 <indexterm zone="postfix lmtp">
411 <primary sortas="b-lmtp">lmtp</primary>
412 </indexterm>
413 </listitem>
414 </varlistentry>
415
416 <varlistentry id="local">
417 <term><command>local</command></term>
418 <listitem>
419 <para>A daemon that processes delivery requests from the queue
420 manager to deliver mail to local recipients.</para>
421 <indexterm zone="postfix local">
422 <primary sortas="b-local">local</primary>
423 </indexterm>
424 </listitem>
425 </varlistentry>
426
427 <varlistentry id="mailq">
428 <term><command>mailq</command></term>
429 <listitem>
430 <para>A symlink to <filename>sendmail</filename>.</para>
431 <indexterm zone="postfix mailq">
432 <primary sortas="b-mailq">mailq</primary>
433 </indexterm>
434 </listitem>
435 </varlistentry>
436
437 <varlistentry id="master">
438 <term><command>master</command></term>
439 <listitem>
440 <para>The resident process that runs
441 <application>Postfix</application> daemons on demand.</para>
442 <indexterm zone="postfix master">
443 <primary sortas="b-master">master</primary>
444 </indexterm>
445 </listitem>
446 </varlistentry>
447
448 <varlistentry id="newaliases">
449 <term><command>newaliases</command></term>
450 <listitem>
451 <para>A symlink to <filename>sendmail</filename>.</para>
452 <indexterm zone="postfix newaliases">
453 <primary sortas="b-newaliases">newaliases</primary>
454 </indexterm>
455 </listitem>
456 </varlistentry>
457
458 <varlistentry id="nqmgr">
459 <term><command>nqmgr</command></term>
460 <listitem>
461 <para>A daemon that awaits the arrival of incoming mail and
462 arranges for its delivery.</para>
463 <indexterm zone="postfix nqmgr">
464 <primary sortas="b-nqmgr">nqmgr</primary>
465 </indexterm>
466 </listitem>
467 </varlistentry>
468
469 <varlistentry id="oqmgr">
470 <term><command>oqmgr</command></term>
471 <listitem>
472 <para>The old style queue manager. This will be removed soon.</para>
473 <indexterm zone="postfix oqmgr">
474 <primary sortas="b-oqmgr">oqmgr</primary>
475 </indexterm>
476 </listitem>
477 </varlistentry>
478
479 <varlistentry id="pickup">
480 <term><command>pickup</command></term>
481 <listitem>
482 <para>A daemon that waits for hints that new mail has been
483 dropped into the maildrop directory, and feeds it into the
484 <application>cleanup</application> daemon.</para>
485 <indexterm zone="postfix pickup">
486 <primary sortas="b-pickup">pickup</primary>
487 </indexterm>
488 </listitem>
489 </varlistentry>
490
491 <varlistentry id="pipe">
492 <term><command>pipe</command></term>
493 <listitem>
494 <para>A daemon that processes requests from the queue
495 manager to deliver messages to external commands.</para>
496 <indexterm zone="postfix pipe">
497 <primary sortas="b-pipe">pipe</primary>
498 </indexterm>
499 </listitem>
500 </varlistentry>
501
502 <varlistentry id="postalias">
503 <term><command>postalias</command></term>
504 <listitem>
505 <para>Creates or queries one or more
506 <application>Postfix</application> alias databases, or updates an
507 existing one.</para>
508 <indexterm zone="postfix postalias">
509 <primary sortas="b-postalias">postalias</primary>
510 </indexterm>
511 </listitem>
512 </varlistentry>
513
514 <varlistentry id="postcat">
515 <term><command>postcat</command></term>
516 <listitem>
517 <para>Prints the contents of the
518 <application>named</application> files in human readable format.</para>
519 <indexterm zone="postfix postcat">
520 <primary sortas="b-postcat">postcat</primary>
521 </indexterm>
522 </listitem>
523 </varlistentry>
524
525 <varlistentry id="postconf">
526 <term><command>postconf</command></term>
527 <listitem>
528 <para>Displays or changes the value of
529 <application>Postfix</application> configuration parameters.</para>
530 <indexterm zone="postfix postconf">
531 <primary sortas="b-postconf">postconf</primary>
532 </indexterm>
533 </listitem>
534 </varlistentry>
535
536 <varlistentry id="postdrop">
537 <term><command>postdrop</command></term>
538 <listitem>
539 <para>Creates a file in the maildrop directory and copies
540 it's standard input to the file.</para>
541 <indexterm zone="postfix postdrop">
542 <primary sortas="b-postdrop">postdrop</primary>
543 </indexterm>
544 </listitem>
545 </varlistentry>
546
547 <varlistentry id="postfix-bin">
548 <term><command>postfix</command></term>
549 <listitem>
550 <para>Controls the operation of the
551 <application>Postfix</application> mail system.</para>
552 <indexterm zone="postfix postfix-bin">
553 <primary sortas="b-postfix">postfix</primary>
554 </indexterm>
555 </listitem>
556 </varlistentry>
557
558 <varlistentry id="postkick">
559 <term><command>postkick</command></term>
560 <listitem>
561 <para>Sends requests to the specified service over a
562 local transport channel.</para>
563 <indexterm zone="postfix postkick">
564 <primary sortas="b-postkick">postkick</primary>
565 </indexterm>
566 </listitem>
567 </varlistentry>
568
569 <varlistentry id="postlock">
570 <term><command>postlock</command></term>
571 <listitem>
572 <para>Locks a mail folder for exclusive use, and executes
573 commands passed to it.</para>
574 <indexterm zone="postfix postlock">
575 <primary sortas="b-postlock">postlock</primary>
576 </indexterm>
577 </listitem>
578 </varlistentry>
579
580 <varlistentry id="postlog">
581 <term><command>postlog</command></term>
582 <listitem>
583 <para>A <application>Postfix</application>-compatible logging
584 interface for use in, for example, shell scripts.</para>
585 <indexterm zone="postfix postlog">
586 <primary sortas="b-postlog">postlog</primary>
587 </indexterm>
588 </listitem>
589 </varlistentry>
590
591 <varlistentry id="postmap">
592 <term><command>postmap</command></term>
593 <listitem>
594 <para>Creates or queries one or more Postfix lookup
595 tables, or updates an existing one.</para>
596 <indexterm zone="postfix postmap">
597 <primary sortas="b-postmap">postmap</primary>
598 </indexterm>
599 </listitem>
600 </varlistentry>
601
602 <varlistentry id="postqueue">
603 <term><command>postqueue</command></term>
604 <listitem>
605 <para>The <application>Postfix</application> user interface for
606 queue management.</para>
607 <indexterm zone="postfix postqueue">
608 <primary sortas="b-postqueue">postqueue</primary>
609 </indexterm>
610 </listitem>
611 </varlistentry>
612
613 <varlistentry id="postsuper">
614 <term><command>postsuper</command></term>
615 <listitem>
616 <para>The <application>Postfix</application> user interface for
617 superuser queue management.</para>
618 <indexterm zone="postfix postsuper">
619 <primary sortas="b-postsuper">postsuper</primary>
620 </indexterm>
621 </listitem>
622 </varlistentry>
623
624 <varlistentry id="proxymap">
625 <term><command>proxymap</command></term>
626 <listitem>
627 <para>Provides read-only table lookup services to other
628 <application>Postfix</application> processes.</para>
629 <indexterm zone="postfix proxymap">
630 <primary sortas="b-proxymap">proxymap</primary>
631 </indexterm>
632 </listitem>
633 </varlistentry>
634
635 <varlistentry id="qmgr">
636 <term><command>qmgr</command></term>
637 <listitem>
638 <para>A daemon that awaits the arrival of incoming mail and
639 arranges for its delivery.</para>
640 <indexterm zone="postfix qmgr">
641 <primary sortas="b-qmgr">qmgr</primary>
642 </indexterm>
643 </listitem>
644 </varlistentry>
645
646 <varlistentry id="qmqpd">
647 <term><command>qmqpd</command></term>
648 <listitem>
649 <para>A daemon that receives one message per connection, and
650 pipes it through the <application>cleanup</application> daemon, and
651 places it into the incoming queue.</para>
652 <indexterm zone="postfix qmqpd">
653 <primary sortas="b-qmqpd">qmqpd</primary>
654 </indexterm>
655 </listitem>
656 </varlistentry>
657
658 <varlistentry id="scache">
659 <term><command>scache</command></term>
660 <listitem>
661 <para>Maintains a connection cache used for sharing a connection
662 multiple times.</para>
663 <indexterm zone="postfix scache">
664 <primary sortas="b-scache">scache</primary>
665 </indexterm>
666 </listitem>
667 </varlistentry>
668
669 <varlistentry id="sendmail-postfix">
670 <term><command>sendmail</command></term>
671 <listitem>
672 <para>The <application>Postfix</application> to
673 <application>Sendmail</application> compatibility interface.</para>
674 <indexterm zone="postfix sendmail-postfix">
675 <primary sortas="b-sendmail">sendmail</primary>
676 </indexterm>
677 </listitem>
678 </varlistentry>
679
680 <varlistentry id="showq">
681 <term><command>showq</command></term>
682 <listitem>
683 <para>A daemon that reports the Postfix mail queue status.</para>
684 <indexterm zone="postfix showq">
685 <primary sortas="b-showq">showq</primary>
686 </indexterm>
687 </listitem>
688 </varlistentry>
689
690 <varlistentry id="smtp">
691 <term><command>smtp</command></term>
692 <listitem>
693 <para>Looks up a list of mail exchanger addresses for the
694 destination host, sorts the list by preference, and connects to
695 each listed address until it finds a server that responds.</para>
696 <indexterm zone="postfix smtp">
697 <primary sortas="b-smtp">smtp</primary>
698 </indexterm>
699 </listitem>
700 </varlistentry>
701
702 <varlistentry id="smtpd">
703 <term><command>smtpd</command></term>
704 <listitem>
705 <para>Accepts network connection requests and performs zero
706 or more SMTP transactions per connection.</para>
707 <indexterm zone="postfix smtpd">
708 <primary sortas="b-smtpd">smtpd</primary>
709 </indexterm>
710 </listitem>
711 </varlistentry>
712
713 <varlistentry id="spawn">
714 <term><command>spawn</command></term>
715 <listitem>
716 <para>Listens on a port as specified in the
717 <application>Postfix</application> <filename>master.cf</filename> file
718 and spawns an external command whenever a connection is
719 established.</para>
720 <indexterm zone="postfix spawn">
721 <primary sortas="b-spawn">spawn</primary>
722 </indexterm>
723 </listitem>
724 </varlistentry>
725
726 <varlistentry id="tlsmgr">
727 <term><command>tlsmgr</command></term>
728 <listitem>
729 <para>Maintains the TLS session cache and acts as the PRNG
730 manager.</para>
731 <indexterm zone="postfix tlsmgr">
732 <primary sortas="b-tlsmgr">tlsmgr</primary>
733 </indexterm>
734 </listitem>
735 </varlistentry>
736
737 <varlistentry id="trivial-rewrite">
738 <term><command>trivial-rewrite</command></term>
739 <listitem>
740 <para>A daemon that rewrites addresses to standard form.</para>
741 <indexterm zone="postfix trivial-rewrite">
742 <primary sortas="b-trivial-rewrite">trivial-rewrite</primary>
743 </indexterm>
744 </listitem>
745 </varlistentry>
746
747 <varlistentry id="verify">
748 <term><command>verify</command></term>
749 <listitem>
750 <para>Maintains a record of what recipient addresses are known
751 to be deliverable or undeliverable.</para>
752 <indexterm zone="postfix verify">
753 <primary sortas="b-verify">verify</primary>
754 </indexterm>
755 </listitem>
756 </varlistentry>
757
758 <varlistentry id="virtual">
759 <term><command>virtual</command></term>
760 <listitem>
761 <para>Delivers mail to virtual user's mail directories.</para>
762 <indexterm zone="postfix virtual">
763 <primary sortas="b-virtual">virtual</primary>
764 </indexterm>
765 </listitem>
766 </varlistentry>
767
768 </variablelist>
769
770 </sect2>
771
772</sect1>
Note: See TracBrowser for help on using the repository browser.