source: server/mail/postfix.xml@ c27a15a4

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.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 c27a15a4 was c27a15a4, checked in by DJ Lucas <dj@…>, 19 years ago

Added index tags to Postfix.

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

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