source: server/mail/postfix-systemd.xml@ d7342ba

systemd-11177
Last change on this file since d7342ba was d7342ba, checked in by Krejzi <krejzi@…>, 10 years ago

Package checks, tweaks and updates.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@14044 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 20.5 KB
RevLine 
[0931098]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[0931098]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[0911065]7 <!ENTITY postfix-download-http " ">
[2605bb1]8 <!ENTITY postfix-download-ftp
[58f0b91]9 "ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-&postfix-version;.tar.gz">
[749211e]10 <!ENTITY postfix-md5sum "56ac1f1a79737c4ac1e24535a122a4a6">
[2e8afa9]11 <!ENTITY postfix-size "3.9 MB">
12 <!ENTITY postfix-buildsize "170 MB">
[10405e6]13 <!ENTITY postfix-time "0.4 SBU">
[0931098]14]>
15
[547df0bc]16<sect1 id="postfix" xreflabel="Postfix-&postfix-version;">
[417f9e7]17 <?dbhtml filename="postfix.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>Postfix-&postfix-version;</title>
25
26 <indexterm zone="postfix">
27 <primary sortas="a-Postfix">Postfix</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Postfix</title>
32
[2605bb1]33 <para>
34 The <application>Postfix</application> package contains a Mail Transport
35 Agent (MTA). This is useful for sending email to other users of your host
36 machine. It can also be configured to be a central mail server for your
37 domain, a mail relay agent or simply a mail delivery agent to your local
38 Internet Service Provider.
39 </para>
[417f9e7]40
[d7342ba]41 &lfs76_checked;
[438c11ab]42
[417f9e7]43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
[2605bb1]46 <para>
47 Download (HTTP): <ulink url="&postfix-download-http;"/>
48 </para>
[417f9e7]49 </listitem>
50 <listitem>
[2605bb1]51 <para>
52 Download (FTP): <ulink url="&postfix-download-ftp;"/>
53 </para>
[417f9e7]54 </listitem>
55 <listitem>
[2605bb1]56 <para>
57 Download MD5 sum: &postfix-md5sum;
58 </para>
[417f9e7]59 </listitem>
60 <listitem>
[2605bb1]61 <para>
62 Download size: &postfix-size;
63 </para>
[417f9e7]64 </listitem>
65 <listitem>
[2605bb1]66 <para>
67 Estimated disk space required: &postfix-buildsize;
68 </para>
[417f9e7]69 </listitem>
70 <listitem>
[2605bb1]71 <para>
72 Estimated build time: &postfix-time;
73 </para>
[417f9e7]74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">Postfix Dependencies</bridgehead>
78
79 <bridgehead renderas="sect4">Required</bridgehead>
[2605bb1]80 <para role="required">
81 <xref linkend="db"/>
82 </para>
[417f9e7]83
[58f0b91]84 <bridgehead renderas="sect4">Recommended</bridgehead>
85 <para role="recommended">
86 <xref linkend="cyrus-sasl"/> and
87 <xref linkend="openssl"/>
88 </para>
89
[417f9e7]90 <bridgehead renderas="sect4">Optional</bridgehead>
[438c11ab]91 <para role="optional">
[5e0662d]92 <xref linkend="mariadb"/> or <ulink url="http://www.mysql.com/">MySQL</ulink>,
[58f0b91]93 <xref linkend="openldap"/>,
94 <xref linkend="pcre"/>,
95 <xref linkend="postgresql"/>,
[10405e6]96 <xref linkend="sqlite"/>, and
[58f0b91]97 <ulink url="http://cr.yp.to/cdb.html">CDB</ulink> or
[438c11ab]98 <ulink url="http://www.corpit.ru/mjt/tinycdb.html">TinyCDB</ulink>
99 </para>
100
[2605bb1]101 <para>
[58f0b91]102 Note that <application>SQLite</application>,
103 <application>MySQL</application>, <application>PostgreSQL</application>
104 and <application>CDB</application> are only useful if there is a known
[2605bb1]105 need for them.
106 </para>
[3cb0c57]107
[2605bb1]108 <para condition="html" role="usernotes">
109 User Notes: <ulink url="&blfs-wiki;/postfix"/>
110 </para>
[417f9e7]111 </sect2>
112
113 <sect2 role="installation">
114 <title>Installation of Postfix</title>
115
[2605bb1]116 <sect3>
117 <title>Adding Users and Groups</title>
[58f0b91]118
[2605bb1]119 <para>
120 Before you compile the program, you need to create users and groups that
121 will be expected to be in place during the installation. Add the users
122 and groups with the following commands issued by the
123 <systemitem class="username">root</systemitem> user:
124 </para>
125
126<screen role="root"><userinput>groupadd -g 32 postfix &amp;&amp;
127groupadd -g 33 postdrop &amp;&amp;
[58f0b91]128useradd -c "Postfix Daemon User" -d /var/spool/postfix -g postfix \
129 -s /bin/false -u 32 postfix &amp;&amp;
[2605bb1]130chown -v postfix:postfix /var/mail</userinput></screen>
131 </sect3>
132
[417f9e7]133 <sect3>
134 <title>Configuring the Build</title>
135
[8a212504]136 <para>
137 Run the following command to enable <application>Postfix</application>
138 to compile against the current version of
139 <application>BerkeleyDB</application>:
140 </para>
141
[d3789ec7]142<screen><userinput>sed -i "s/DB_VERSION_MAJOR == 5/DB_VERSION_MAJOR >= 5/" src/util/dict_db.c</userinput></screen>
[8a212504]143
[2605bb1]144 <para>
145 The README files are formatted to be read with a pager like
146 <application>Less</application> or <application>More</application>.
147 If you want to read them in a text editor, make them legible with a sed:
148 </para>
149
150<screen><userinput>sed -i 's/.\x08//g' README_FILES/*</userinput></screen>
151
152 <para>
153 The <application>Postfix</application> source tree does not contain a
154 <filename>configure</filename> script, rather the makefile in the
155 top-level directory contains a <option>makefiles</option> target that
156 regenerates all the other makefiles in the build tree. If you wish to
157 use additional software such as a database back-end for virtual users,
158 or TLS/SSL authentication, you will need to regenerate the makefiles
159 using one or more of the appropriate <envar>CCARGS</envar> and
160 <envar>AUXLIBS</envar> settings listed below.
161 </para>
162
163 <para>
164 For more details read the readme files.
165 </para>
166
[417f9e7]167 <sect4>
168 <title>Cyrus-SASL</title>
[3bfd1d6]169
[2605bb1]170 <para>
171 To use <application>Cyrus-SASL</application> with
172 <application>Postfix</application>, use the following arguments:
173 </para>
[3bfd1d6]174
[07abc5b]175<screen><literal>CCARGS='-DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl'
[438c11ab]176AUXLIBS='-lsasl2'</literal></screen>
[58f0b91]177
[417f9e7]178 </sect4>
[3bfd1d6]179
[417f9e7]180 <sect4>
181 <title>OpenLDAP</title>
[3bfd1d6]182
[2605bb1]183 <para>
184 To use <application>OpenLDAP</application> with
185 <application>Postfix</application>, use the following arguments:
186 </para>
[3bfd1d6]187
[438c11ab]188<screen><literal>CCARGS='-DHAS_LDAP'
189AUXLIBS='-lldap -llber'</literal></screen>
[58f0b91]190
[2605bb1]191 </sect4>
192
193 <sect4>
194 <title>Sqlite</title>
195
196 <para>
197 To use <application>Sqlite</application> with
198 <application>Postfix</application>, use the following arguments:
199 </para>
[3bfd1d6]200
[2605bb1]201<screen><literal>CCARGS='-DHAS_SQLITE'
202AUXLIBS='-lsqlite3 -lpthread'</literal></screen>
[58f0b91]203
[417f9e7]204 </sect4>
[3bfd1d6]205
[417f9e7]206 <sect4>
207 <title>MySQL</title>
[0931098]208
[2605bb1]209 <para>
210 To use <application>MySQL</application> with
211 <application>Postfix</application>, use the following arguments:
212 </para>
[417f9e7]213
[5690030]214<screen><literal>CCARGS='-DHAS_MYSQL -I/usr/include/mysql'
[438c11ab]215AUXLIBS='-lmysqlclient -lz -lm'</literal></screen>
[58f0b91]216
[417f9e7]217 </sect4>
218
219 <sect4>
220 <title>PostgreSQL</title>
221
[2605bb1]222 <para>
223 To use <application>PostgreSQL</application> with
224 <application>Postfix</application>, use the following arguments:
225 </para>
[417f9e7]226
[5690030]227<screen><literal>CCARGS='-DHAS_PGSQL -I/usr/include/postgresql'
[438c11ab]228AUXLIBS='-lpq -lz -lm'</literal></screen>
[58f0b91]229
[417f9e7]230 </sect4>
231
[daeea03]232 <sect4>
[45cd2f9]233 <title>CDB/TinyCDB</title>
[daeea03]234
[2605bb1]235 <para>
236 To use <application>CDB</application> or
237 <application>TinyCDB</application> with
238 <application>Postfix</application>, use the following arguments:
239 </para>
[daeea03]240
[bccbdaea]241<screen><literal>CCARGS='-DHAS_CDB'
[410e228b]242AUXLIBS='<replaceable>&lt;/path/to/CDB&gt;</replaceable>/libcdb.a'</literal></screen>
[58f0b91]243
[45cd2f9]244 </sect4>
245
246 <sect4>
247 <title>StartTLS Authentication</title>
248
[2605bb1]249 <para>
250 To use <application>OpenSSL</application> with
251 <application>Postfix</application>, use the following arguments:
252 </para>
[45cd2f9]253
254<screen><literal>CCARGS='-DUSE_TLS -I/usr/include/openssl/'
[438c11ab]255AUXLIBS='-lssl -lcrypto'</literal></screen>
[daeea03]256 </sect4>
[58f0b91]257
[417f9e7]258 </sect3>
259
260 <sect3>
261 <title>Installing Postfix</title>
262
[2605bb1]263 <para>
[58f0b91]264 If you have <application>Cyrus SASL</application> and
265 <application>OpenSSL</application> installed, install
[2605bb1]266 <application>Postfix</application> by running the following commands:
267 </para>
[438c11ab]268
[df9fb20]269<screen><userinput>make CCARGS="-DUSE_TLS -I/usr/include/openssl/ \
[58f0b91]270 -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl" \
271 AUXLIBS="-lssl -lcrypto -lsasl2" \
[bab9d8e7]272 makefiles &amp;&amp;
[2605bb1]273make</userinput></screen>
[0dfb754]274
[cef276c]275 <!-- There is a testsuite, but it fails a lot. It seems to need
276 the host to be specifically setup for the tests.
277 Run with `make tests' and `make root_tests' -->
[2605bb1]278 <para>
279 This package does not come with a useful test suite.
280 </para>
[0dfb754]281
[2605bb1]282 <para>
283 Now, as the <systemitem class="username">root</systemitem> user:
284 </para>
[417f9e7]285
[c9652d2]286<!-- dev note: sh postfix-install -non-interactive install_root=<DESTDIR> ... -->
[2e8afa9]287
[2605bb1]288<screen role="root"><userinput>sh postfix-install -non-interactive \
[58f0b91]289 daemon_directory=/usr/lib/postfix \
290 manpage_directory=/usr/share/man \
291 html_directory=/usr/share/doc/postfix-&postfix-version;/html \
292 readme_directory=/usr/share/doc/postfix-&postfix-version;/readme</userinput></screen>
293
[417f9e7]294 </sect3>
[58f0b91]295
[417f9e7]296 </sect2>
[0931098]297
[417f9e7]298 <sect2 role="commands">
299 <title>Command Explanations</title>
[0931098]300
[2605bb1]301 <para>
302 <command>make makefiles</command>: This command rebuilds the makefiles
303 throughout the source tree to use the options contained in the
304 <envar>CCARGS</envar> and <envar>AUXLIBS</envar> variables.
305 </para>
[8568fa6]306
[2605bb1]307 <para>
308 <command>sh postfix-install -non-interactive</command>: This keeps the
309 install script from asking any questions, thereby accepting default
310 destination directories in all but the few cases. If the
311 <option>html_directory</option> and <option>readme_directory</option>
312 options are not set then the documentation will not be installed.
313 </para>
[58f0b91]314
[417f9e7]315 </sect2>
[0931098]316
[417f9e7]317 <sect2 role="configuration">
318 <title>Configuring Postfix</title>
[0931098]319
[417f9e7]320 <sect3 id="postfix-config">
321 <title>Config Files</title>
[0931098]322
[2605bb1]323 <para>
324 <filename>/etc/aliases</filename>,
325 <filename>/etc/postfix/main.cf</filename>, and
326 <filename>/etc/postfix/master.cf</filename>
327 </para>
[6c703f15]328
[417f9e7]329 <indexterm zone="postfix postfix-config">
330 <primary sortas="e-etc-aliases">/etc/aliases</primary>
331 </indexterm>
[0931098]332
[417f9e7]333 <indexterm zone="postfix postfix-config">
334 <primary sortas="e-etc-postfix-star">/etc/postfix/*</primary>
335 </indexterm>
336
337 </sect3>
338
339 <sect3>
340 <title>Configuration Information</title>
341
[2605bb1]342 <para>
343 Create (or append to an existing) <filename>/etc/aliases</filename>
344 with the following command. Change
345 <replaceable>&lt;LOGIN&gt;</replaceable> for your non-root login
346 identity so mail addressed to
347 <systemitem class="username">root</systemitem> can be forwarded to you.
348 As the <systemitem class="username">root</systemitem> user:
349 </para>
350
[417f9e7]351<screen role="root"><userinput>cat &gt;&gt; /etc/aliases &lt;&lt; "EOF"
352<literal># Begin /etc/aliases
[0931098]353
354MAILER-DAEMON: postmaster
355postmaster: root
356
[2605bb1]357root: <replaceable>&lt;LOGIN&gt;</replaceable>
[417f9e7]358# End /etc/aliases</literal>
359EOF</userinput></screen>
360
[2605bb1]361 <para>
362 To protect an existing <filename>/etc/aliases</filename> file,
[417f9e7]363 the above command appends these aliases to it if it exists. This file
[2605bb1]364 should be checked and duplicate aliases removed, if present.
365 </para>
366
367 <note>
368 <para>
369 The <filename>/etc/postfix/main.cf</filename> and
370 <filename>/etc/postfix/master.cf</filename> files must be personalized
371 for your system. The <filename>main.cf</filename> file needs your
372 fully qualified hostname. You will find that
373 <filename>main.cf</filename> is self documenting, so load it into your
374 editor to make the changes you need for your situation.
375 </para>
[417f9e7]376 </note>
377
[58f0b91]378 <note>
379 <para>
380 <application>Postfix</application> can also be set up to
[0d7900a]381 run in a chroot jail. See the file in the source
[58f0b91]382 <filename>examples/chroot-setup/LINUX2</filename> for details.
383 </para>
384 </note>
[3df190fb]385
[2605bb1]386 <para>
387 If you have an existing configuration, you can run the
388 <command>postfix</command> utility to add any necessary definitions to
389 your existing files. As the
390 <systemitem class="username">root</systemitem> user:
391 </para>
[cef276c]392
393<screen role="root"><userinput>/usr/sbin/postfix upgrade-configuration</userinput></screen>
394
[2605bb1]395 <para>
396 Before starting <application>Postfix</application>, you should check
397 that your configuration and file permissions will work properly. Run the
398 following commands as the <systemitem class="username">root</systemitem>
399 user to check and start your <application>Postfix</application> server:
400 </para>
[cef276c]401
402<screen role="root"><userinput>/usr/sbin/postfix check &amp;&amp;
[417f9e7]403/usr/sbin/postfix start</userinput></screen>
[58f0b91]404
[417f9e7]405 </sect3>
406
407 <sect3 id="postfix-init">
[be67218]408 <title>Systemd Units</title>
[417f9e7]409
[2605bb1]410 <para>
[6bc9f48]411 To start the <command>postfix</command> daemon at boot,
412 install the systemd unit from the <xref linkend="bootscripts"/>
413 package by running the following command as the
414 <systemitem class="username">root</systemitem> user:
[2605bb1]415 </para>
[417f9e7]416
417 <indexterm zone="postfix postfix-init">
418 <primary sortas="f-postfix">postfix</primary>
419 </indexterm>
420
421<screen role="root"><userinput>make install-postfix</userinput></screen>
[58f0b91]422
[417f9e7]423 </sect3>
[58f0b91]424
[417f9e7]425 </sect2>
426
427 <sect2 role="content">
428 <title>Contents</title>
429
430 <segmentedlist>
431 <segtitle>Installed Programs</segtitle>
[58f0b91]432 <segtitle>Installed Libraries</segtitle>
[417f9e7]433 <segtitle>Installed Directories</segtitle>
434
435 <seglistitem>
[2605bb1]436 <seg>
[2e8afa9]437 mailq, newaliases, postalias, postcat, postconf, postdrop, postfix,
[10405e6]438 postkick, postlock, postlog, postmap, postmulti, postqueue, postsuper,
[58f0b91]439 and sendmail
440 </seg>
441 <seg>
442 None
[2605bb1]443 </seg>
444 <seg>
[58f0b91]445 /etc/postfix,
446 /usr/lib/postfix,
447 /usr/share/doc/postfix-&postfix-version;,
[10405e6]448 /var/lib/postfix, and
[58f0b91]449 /var/spool/postfix
[2605bb1]450 </seg>
[417f9e7]451 </seglistitem>
452 </segmentedlist>
453
454 <variablelist>
455 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
456 <?dbfo list-presentation="list"?>
457 <?dbhtml list-presentation="table"?>
458
459 <varlistentry id="mailq">
460 <term><command>mailq</command></term>
461 <listitem>
[2605bb1]462 <para>
463 A symlink to <filename>sendmail</filename>.
464 </para>
[417f9e7]465 <indexterm zone="postfix mailq">
466 <primary sortas="b-mailq">mailq</primary>
467 </indexterm>
468 </listitem>
469 </varlistentry>
470
471 <varlistentry id="newaliases">
472 <term><command>newaliases</command></term>
473 <listitem>
[2605bb1]474 <para>
475 A symlink to <filename>sendmail</filename>.
476 </para>
[417f9e7]477 <indexterm zone="postfix newaliases">
478 <primary sortas="b-newaliases">newaliases</primary>
479 </indexterm>
480 </listitem>
481 </varlistentry>
482
[2e8afa9]483 <varlistentry id="postalias">
484 <term><command>postalias</command></term>
[417f9e7]485 <listitem>
[2605bb1]486 <para>
487 is a utility for <application>Postfix</application> alias database
488 maintenance
489 </para>
[2e8afa9]490 <indexterm zone="postfix postalias">
491 <primary sortas="b-postalias">postalias</primary>
[417f9e7]492 </indexterm>
493 </listitem>
494 </varlistentry>
495
496 <varlistentry id="postcat">
497 <term><command>postcat</command></term>
498 <listitem>
[2605bb1]499 <para>
500 Prints the contents of files from the
501 <application>Postfix</application> queue in human readable format.
502 </para>
[417f9e7]503 <indexterm zone="postfix postcat">
504 <primary sortas="b-postcat">postcat</primary>
505 </indexterm>
506 </listitem>
507 </varlistentry>
508
509 <varlistentry id="postconf">
510 <term><command>postconf</command></term>
511 <listitem>
[2605bb1]512 <para>
513 Displays or changes the value of
514 <application>Postfix</application> configuration parameters.
515 </para>
[417f9e7]516 <indexterm zone="postfix postconf">
517 <primary sortas="b-postconf">postconf</primary>
518 </indexterm>
519 </listitem>
520 </varlistentry>
521
522 <varlistentry id="postdrop">
523 <term><command>postdrop</command></term>
524 <listitem>
[2605bb1]525 <para>
526 Creates a file in the maildrop directory and copies its standard
527 input to the file.
528 </para>
[417f9e7]529 <indexterm zone="postfix postdrop">
530 <primary sortas="b-postdrop">postdrop</primary>
531 </indexterm>
532 </listitem>
533 </varlistentry>
534
535 <varlistentry id="postfix-bin">
536 <term><command>postfix</command></term>
537 <listitem>
[2605bb1]538 <para>
539 is the <application>Postfix</application> control program.
540 </para>
[417f9e7]541 <indexterm zone="postfix postfix-bin">
542 <primary sortas="b-postfix">postfix</primary>
543 </indexterm>
544 </listitem>
545 </varlistentry>
546
547 <varlistentry id="postkick">
548 <term><command>postkick</command></term>
549 <listitem>
[2605bb1]550 <para>
551 Sends requests to the specified service over a local transport
552 channel.
553 </para>
[417f9e7]554 <indexterm zone="postfix postkick">
555 <primary sortas="b-postkick">postkick</primary>
556 </indexterm>
557 </listitem>
558 </varlistentry>
559
560 <varlistentry id="postlock">
561 <term><command>postlock</command></term>
562 <listitem>
[2605bb1]563 <para>
564 Locks a mail folder for exclusive use, and executes commands passed
565 to it.
566 </para>
[417f9e7]567 <indexterm zone="postfix postlock">
568 <primary sortas="b-postlock">postlock</primary>
569 </indexterm>
570 </listitem>
571 </varlistentry>
572
573 <varlistentry id="postlog">
574 <term><command>postlog</command></term>
575 <listitem>
[2605bb1]576 <para>
577 A <application>Postfix</application>-compatible logging interface
578 for use in, for example, shell scripts.
579 </para>
[417f9e7]580 <indexterm zone="postfix postlog">
581 <primary sortas="b-postlog">postlog</primary>
582 </indexterm>
583 </listitem>
584 </varlistentry>
585
586 <varlistentry id="postmap">
587 <term><command>postmap</command></term>
588 <listitem>
[2605bb1]589 <para>
590 Creates or queries one or more Postfix lookup tables, or updates an
591 existing one.
592 </para>
[417f9e7]593 <indexterm zone="postfix postmap">
594 <primary sortas="b-postmap">postmap</primary>
595 </indexterm>
596 </listitem>
597 </varlistentry>
598
[2605bb1]599 <varlistentry id="postmulti">
600 <term><command>postmulti</command></term>
601 <listitem>
602 <para>
603 is the <application>Postfix</application> multi-instance manager.
604 It allows a system administrator to manage multiple
605 <application>Postfix</application> instances on a single host.
606 </para>
607 <indexterm zone="postfix postmulti">
608 <primary sortas="b-postmulti">postmulti</primary>
609 </indexterm>
610 </listitem>
611 </varlistentry>
612
[417f9e7]613 <varlistentry id="postqueue">
614 <term><command>postqueue</command></term>
615 <listitem>
[2605bb1]616 <para>
[58f0b91]617 The <application>Postfix</application> user interface for
618 queue management.
619 </para>
[417f9e7]620 <indexterm zone="postfix postqueue">
621 <primary sortas="b-postqueue">postqueue</primary>
622 </indexterm>
623 </listitem>
624 </varlistentry>
625
626 <varlistentry id="postsuper">
627 <term><command>postsuper</command></term>
628 <listitem>
[2605bb1]629 <para>
[58f0b91]630 The <application>Postfix</application> user interface for
631 superuser queue management.
632 </para>
[417f9e7]633 <indexterm zone="postfix postsuper">
634 <primary sortas="b-postsuper">postsuper</primary>
635 </indexterm>
636 </listitem>
637 </varlistentry>
638
639 <varlistentry id="sendmail-postfix">
640 <term><command>sendmail</command></term>
641 <listitem>
[2605bb1]642 <para>
643 is the <application>Postfix</application> to
644 <application>Sendmail</application> compatibility interface.
645 </para>
[417f9e7]646 <indexterm zone="postfix sendmail-postfix">
647 <primary sortas="b-sendmail">sendmail</primary>
648 </indexterm>
649 </listitem>
650 </varlistentry>
[58f0b91]651
[417f9e7]652 </variablelist>
[58f0b91]653
[417f9e7]654 </sect2>
[58f0b91]655
[f45b1953]656</sect1>
Note: See TracBrowser for help on using the repository browser.