source: server/mail/postfix.xml@ 3f87e4a

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 3f87e4a was 3f87e4a, checked in by Randy McMurchy <randy@…>, 18 years ago

Removed the Berkeley DB dependency from packages utilizing it as BDB is now built in LFS

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

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