source: server/mail/exim.xml@ ea4d812

12.1 12.2 gimp3 ken/TL2024 ken/tuningfonts lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/for-12.3 xry111/llvm18 xry111/spidermonkey128
Last change on this file since ea4d812 was e1e58be, checked in by Pierre Labastie <pierre.labastie@…>, 12 months ago

Remove all ftp urls

neither firefox nor epiphany can download them, and they are not
well maintained, because rarely tested.
This is WIP because the "(HTTP)" part of "Download (HTTP)" will
need to be removed too.
But let's see what users think first...

  • Property mode set to 100644
File size: 25.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY exim-download-http "https://ftp.exim.org/pub/exim/exim4/exim-&exim-version;.tar.xz">
8
9 <!ENTITY exim-download-ftp " ">
10 <!-- if above don't work, please use one of the official mirrors at
11 http://www.exim.org/mirmon/ftp_mirrors.html -->
12 <!ENTITY exim-md5sum "1554c5c9fbc0fb9ee02430ed65d98ea4">
13 <!ENTITY exim-size "1.8 MB">
14 <!ENTITY exim-buildsize "17 MB">
15 <!ENTITY exim-time "0.3 SBU">
16
17 <!ENTITY exim-daemon-version "&exim-version;-2">
18]>
19
20<sect1 id="exim" xreflabel="Exim-&exim-version;">
21 <?dbhtml filename="exim.html"?>
22
23
24 <title>Exim-&exim-version;</title>
25
26 <indexterm zone="exim">
27 <primary sortas="a-Exim">Exim</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Exim</title>
32
33 <para>
34 The <application>Exim</application> package contains a Mail
35 Transport Agent written by the University of Cambridge, released
36 under the GNU Public License.
37 </para>
38
39 &lfs120_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&exim-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&exim-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &exim-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &exim-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &exim-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &exim-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
76 <itemizedlist spacing="compact">
77 <listitem>
78 <para>
79 Additional formats of the documentation (text-based docs are
80 shipped with the sources) can be downloaded by following the links
81 shown at <ulink url="https://exim.org/docs.html"/>.
82 </para>
83 </listitem>
84<!-- Applied in 4.96
85 <listitem>
86 <para>
87 Required patch when building with <application>PAM</application> support:
88 <ulink url="&patch-root;/exim-&exim-version;-call_pam-1.patch"/>
89 </para>
90 </listitem>
91 <listitem>
92 <para>
93 Required patch to build with openssl-3:
94 <ulink url="&patch-root;/exim-&exim-version;-openssl3_fix-1.patch"/>
95 </para>
96 </listitem>
97-->
98 </itemizedlist>
99
100 <bridgehead renderas="sect3">Exim Dependencies</bridgehead>
101
102 <bridgehead renderas="sect4">Required</bridgehead>
103 <para role="required">
104 <xref linkend="libnsl"/> and
105 <xref linkend="pcre2"/>
106 </para>
107
108 <bridgehead renderas="sect4">Optional</bridgehead>
109 <para role="optional">
110 <ulink url="https://sourceforge.net/projects/tdb">TDB</ulink>
111 (alternative to GDBM, built in LFS),
112 <xref linkend="cyrus-sasl"/>,
113 <xref linkend="libidn"/>,
114 <xref linkend="linux-pam"/>,
115 <xref linkend="mariadb"/> or
116 <ulink url="https://www.mysql.com/">MySQL</ulink>,
117 <xref linkend="openldap"/>,
118 <xref linkend="gnutls"/>,
119 <xref linkend="postgresql"/>,
120 <xref linkend="sqlite"/>,
121 <xref linkend="x-window-system"/>,
122 <ulink url="https://github.com/heimdal/heimdal">Heimdal GSSAPI</ulink>, and
123 <ulink url="http://www.trusteddomain.org/opendmarc/">OpenDMARC</ulink>
124 </para>
125
126 </sect2>
127
128 <sect2 role="installation">
129 <title>Installation of Exim</title>
130
131 <para>
132 Before building <application>Exim</application>, as the
133 <systemitem class="username">root</systemitem> user you should create
134 the group and user <systemitem class="username">exim</systemitem> which
135 will run the <command>exim</command> daemon:
136 </para>
137
138<screen role="root"><userinput>groupadd -g 31 exim &amp;&amp;
139useradd -d /dev/null -c "Exim Daemon" -g exim -s /bin/false -u 31 exim</userinput></screen>
140
141<!-- Applied in 4.96
142 <para>
143 If you want to build with <application>PAM</application> support, apply the following patch:
144 </para>
145
146<screen><userinput>patch -Np2 -i ../exim-&exim-version;-call_pam-1.patch</userinput></screen>
147
148 <para>
149 Apply a patch required for building against openssl version 3:
150 </para>
151
152<screen><userinput>patch -Np2 -i ../exim-&exim-version;-openssl3_fix-1.patch</userinput></screen>
153-->
154
155 <para>
156 Configure <application>Exim</application> with the following commands:
157 </para>
158
159<screen><userinput>sed -e 's,^BIN_DIR.*$,BIN_DIRECTORY=/usr/sbin,' \
160 -e 's,^CONF.*$,CONFIGURE_FILE=/etc/exim.conf,' \
161 -e 's,^EXIM_USER.*$,EXIM_USER=exim,' \
162 -e '/# SUPPORT_TLS=yes/s,^#,,' \
163 -e '/# USE_OPENSSL/s,^#,,' \
164 -e 's,^EXIM_MONITOR,#EXIM_MONITOR,' src/EDITME > Local/Makefile &amp;&amp;
165
166printf "USE_GDBM = yes\nDBMLIB = -lgdbm\n" >> Local/Makefile
167</userinput></screen>
168
169 <para>
170 If you want to add <application>Linux PAM</application> support, also run the following commands:
171 </para>
172
173<screen role="nodump"><userinput>sed -i '/# SUPPORT_PAM=yes/s,^#,,' Local/Makefile
174echo "EXTRALIBS=-lpam" >> Local/Makefile
175</userinput></screen>
176
177 <para>
178 Build <application>Exim</application> with the following command:
179 </para>
180
181<screen><userinput>make</userinput></screen>
182
183
184 <para>
185 This package does not come with a test suite.
186 </para>
187
188 <para>
189 Now, as the <systemitem class="username">root</systemitem> user:
190 </para>
191
192<!-- dev note: make INSTALL_ARG=-no_chown DESTDIR=<DESTDIR> install -->
193
194<screen role="root"><userinput>make install &amp;&amp;
195install -v -m644 doc/exim.8 /usr/share/man/man8 &amp;&amp;
196
197install -v -d -m755 /usr/share/doc/exim-&exim-version; &amp;&amp;
198install -v -m644 doc/* /usr/share/doc/exim-&exim-version; &amp;&amp;
199
200ln -sfv exim /usr/sbin/sendmail &amp;&amp;
201install -v -d -m750 -o exim -g exim /var/spool/exim</userinput></screen>
202
203 </sect2>
204
205 <sect2 role="commands">
206 <title>Command Explanations</title>
207
208 <para>
209 <command>sed -e ... > Local/Makefile</command>: Most of
210 <application>Exim</application>'s configuration options are defined
211 in <filename>Local/Makefile</filename>, which is created from
212 the <filename>src/EDITME</filename> file. This command specifies the
213 minimum set of options. Descriptions for the options are listed below.
214 </para>
215
216 <para>
217 <command>printf ... > Local/Makefile</command>: Setting those
218 variables allows to use GDBM instead of the default Berkeley DB. Remove
219 this command if you have installed <xref linkend="db"/>.
220 </para>
221
222 <para>
223 <parameter>BIN_DIRECTORY=/usr/sbin</parameter>: This installs all of
224 <application>Exim</application>'s binaries and scripts in
225 <filename class='directory'>/usr/sbin</filename>.
226 </para>
227
228 <para>
229 <parameter>CONFIGURE_FILE=/etc/exim.conf</parameter>: This installs
230 <application>Exim</application>'s main configuration file in
231 <filename class='directory'>/etc</filename>.
232 </para>
233
234 <para>
235 <parameter>EXIM_USER=exim</parameter>: This tells
236 <application>Exim</application> that after the daemon no longer needs
237 <systemitem class="username">root</systemitem> privileges, the process
238 needs to hand off the daemon to the <systemitem
239 class="username">exim</systemitem> user.
240 </para>
241
242 <para>
243 <parameter>SUPPORT_TLS=yes</parameter>: This allows to support
244 STARTTLS connections. If you use this option, you need to select
245 whether <application>OpenSSL</application> or
246 <application>GnuTLS</application> is used (see
247 <filename>src/EDITME</filename>).
248 </para>
249
250 <para>
251 <parameter>USE_OPENSSL_PC=openssl</parameter>: This tells the
252 build system to use <application>OpenSSL</application>, and to
253 find the needed libraries with <application>pkg-config</application>.
254 </para>
255
256 <para>
257 <parameter>#EXIM_MONITOR</parameter>: This defers building the
258 <application>Exim</application> monitor program, as it requires
259 <application>X Window System</application> support, by commenting out the
260 <parameter>EXIM_MONITOR</parameter> line in the
261 <filename>Makefile</filename>. If you wish to build the monitor program,
262 omit this <command>sed</command> command and issue the following command
263 before building the package (modify
264 <filename>Local/eximon.conf</filename>, if necessary):
265 <command>cp exim_monitor/EDITME Local/eximon.conf</command>.
266 </para>
267
268 <para>
269 <command>ln -sfv exim /usr/sbin/sendmail</command>: Creates a link to
270 <command>sendmail</command> for applications which need it.
271 <application>Exim</application> will accept most
272 <application>Sendmail</application> command-line options.
273 </para>
274
275 <para>
276 <command>install -v -m750 -o exim -g exim /var/spool/exim</command>:
277 Since /var/spool is owned by root and this version of
278 <command>exim</command> drops
279 <systemitem class="username">root</systemitem> privileges early, to run
280 as user <systemitem class="username">exim</systemitem>, it cannot create
281 the <filename class="directory">/var/spool/exim</filename> directory. As
282 a work around, it is created manually.
283 </para>
284
285 </sect2>
286
287 <sect2 role="commands">
288 <title>Adding Additional Functionality</title>
289
290 <para>
291 To utilize some or all of the dependency packages, you'll need to
292 modify <filename>Local/Makefile</filename> to include the appropriate
293 directives and parameters to link additional libraries before you build
294 <application>Exim</application>. <filename>Local/Makefile</filename> is
295 heavily commented with instructions on how to do this. Listed below is
296 additional information to help you link these dependency packages or
297 add additional functionality.
298 </para>
299
300 <para>
301 If you wish to build and install the
302 <filename class='extension'>.info</filename> documentation, refer to
303 <ulink url=
304 "https://exim.org/exim-html-&exim-version;/doc/html/spec_html/ch04.html#SECTinsinfdoc"/>.
305 </para>
306
307 <para>
308 If you wish to build in Exim's interfaces for calling virus and spam
309 scanning software directly from access control lists, uncomment the
310 <option>WITH_CONTENT_SCAN=yes</option> parameter and review the
311 information found at <ulink url=
312 "https://exim.org/exim-html-&exim-version;/doc/html/spec_html/ch45.html"/>.
313 </para>
314
315 <para>
316 To use a backend database other than <application>GDBM
317 </application>, see the instructions at <ulink url=
318 "https://exim.org/exim-html-&exim-version;/doc/html/spec_html/ch04.html#SECTdb"/>.
319 </para>
320
321 <para>
322 For SSL functionality, see the instructions at <ulink url=
323 "https://exim.org/exim-html-&exim-version;/doc/html/spec_html/ch04.html#SECTinctlsssl"/>
324 and <ulink url="
325 https://exim.org/exim-html-&exim-version;/doc/html/spec_html/ch42.html"/>.
326 </para>
327
328 <para>
329 For <application>tcpwrappers</application> functionality, see the
330 instructions at <ulink url=
331 "https://exim.org/exim-html-&exim-version;/doc/html/spec_html/ch04.html#SECID27"/>.
332 </para>
333
334 <para>
335 For information about adding authentication mechanisms to the
336 build, see chapters 33&mdash;41 of <ulink url=
337 "https://exim.org/exim-html-&exim-version;/doc/html/spec_html/index.html"/>.
338 </para>
339
340 <para>
341 For information about linking <application>Linux-PAM</application>,
342 refer to the instructions <ulink url=
343 "https://exim.org/exim-html-&exim-version;/doc/html/spec_html/ch11.html#SECTexpcond"/>.
344 </para>
345
346 <para>
347 For information about linking database engine libraries used for
348 <application>Exim</application> name lookups, see the instructions at
349 <ulink url=
350 "https://exim.org/exim-html-&exim-version;/doc/html/spec_html/ch09.html"/>.
351 </para>
352
353 <para>
354 If you wish to add <application>Readline</application> support to
355 <application>Exim</application> when invoked in <quote>test
356 expansion</quote> (<option>-be</option>) mode, see the information in
357 the <option>-be</option> section of <ulink url=
358 "https://exim.org/exim-html-&exim-version;/doc/html/spec_html/ch05.html#id2525974"/>.
359 </para>
360
361 <para>
362 You may wish to modify the default configuration and send log files to
363 syslog instead of the default
364 <filename class='directory'>/var/spool/exim/log</filename> directory. See
365 the information at <ulink url=
366 "https://exim.org/exim-html-&exim-version;/doc/html/spec_html/ch-log_files.html"/>.
367 </para>
368
369 <para>
370 A wealth of information can be also found at the <ulink url=
371 "https://github.com/Exim/exim/wiki">Exim Wiki</ulink>.
372 </para>
373
374 </sect2>
375
376 <sect2 role="configuration">
377 <title>Configuring Exim</title>
378
379 <sect3 id="exim-config">
380 <title>Config Files</title>
381
382 <para>
383 <filename>/etc/exim.conf</filename> and
384 <filename>/etc/aliases</filename>
385 </para>
386
387 <indexterm zone="exim exim-config">
388 <primary sortas="e-etc-exim.conf">/etc/exim.conf</primary>
389 </indexterm>
390
391 <indexterm zone="exim exim-config">
392 <primary sortas="e-etc-aliases">/etc/aliases</primary>
393 </indexterm>
394
395 </sect3>
396
397 <sect3>
398 <title>Configuration Information</title>
399
400 <para>
401 Review the file <filename>/etc/exim.conf</filename>, and modify any
402 settings to suit your needs. Note that the default configuration
403 assumes that the <filename class="directory">/var/mail</filename>
404 directory is world writable, but has the sticky bit set. If you want
405 to use the default configuration, issue as the <systemitem
406 class="username">root</systemitem> user:
407 </para>
408
409<screen role="root"><userinput>chmod -v a+wt /var/mail</userinput></screen>
410
411 <para>
412 A default (nothing but comments) <filename>/etc/aliases</filename>
413 file is installed during the package installation if this file did not
414 exist on your system. Create the necessary aliases and start the
415 <application>Exim</application> daemon using the following commands:
416 </para>
417
418<screen role="root"><userinput>cat &gt;&gt; /etc/aliases &lt;&lt; "EOF"
419<literal>postmaster: root
420MAILER-DAEMON: root</literal>
421EOF
422/usr/sbin/exim -bd -q15m</userinput></screen>
423
424 <note>
425 <para>
426 To protect an existing <filename>/etc/aliases</filename> file,
427 the command above appends these aliases to it. This file should be
428 checked and duplicate aliases removed, if present.
429 </para>
430 </note>
431
432 <para>
433 The <command>/usr/sbin/exim -bd -q15m</command> command starts
434 the <application>Exim</application> daemon with a 15 minute interval
435 in processing the mail queue. Adjust this parameter to suit your
436 desires.
437 </para>
438 </sect3>
439
440 <sect3>
441 <title>Linux PAM Configuration</title>
442
443 <para>
444 If you have built <application>Exim</application> with
445 <application>Linux PAM</application> support, you need to create a
446 <application>PAM</application> configuration file to get it working
447 correctly with BLFS.
448 </para>
449
450 <para>
451 Issue the following command as the <systemitem
452 class="username">root</systemitem> user to create the configuration
453 file for <application>Linux PAM</application>:
454 </para>
455
456<screen role="root"><userinput>cat &gt; /etc/pam.d/exim &lt;&lt; "EOF"
457<literal># Begin /etc/pam.d/exim
458
459auth include system-auth
460account include system-account
461session include system-session
462
463# End /etc/pam.d/exim</literal>
464EOF</userinput></screen>
465
466 </sect3>
467
468 <sect3 id="exim-init">
469 <title><phrase revision="sysv">Boot Script</phrase>
470 <phrase revision="systemd">Systemd Unit</phrase></title>
471
472 <para>
473 To automatically start <command>exim</command> at boot, install the
474 <phrase revision="sysv"><filename>/etc/rc.d/init.d/exim</filename>
475 init script</phrase>
476 <phrase revision="systemd"><filename>exim.service</filename>
477 unit</phrase>
478 included in the <xref linkend="bootscripts" revision="sysv"/>
479 <xref linkend="systemd-units" revision="systemd"/> package:
480 </para>
481
482 <indexterm zone="exim exim-init">
483 <primary sortas="f-exim">exim</primary>
484 </indexterm>
485
486<screen role="root"><userinput>make install-exim</userinput></screen>
487
488 <para revision="sysv">
489 The bootscript also starts the <application>Exim</application> daemon
490 and dispatches a queue runner process every 15 minutes. Modify the
491 <option>-q<replaceable>&lt;time interval&gt;</replaceable></option>
492 parameter in <filename>/etc/rc.d/init.d/exim</filename>, if necessary
493 for your installation.
494 </para>
495
496 </sect3>
497
498 </sect2>
499
500 <sect2 role="content">
501 <title>Contents</title>
502
503 <segmentedlist>
504 <segtitle>Installed Programs</segtitle>
505 <segtitle>Installed Libraries</segtitle>
506 <segtitle>Installed Directories</segtitle>
507
508 <seglistitem>
509 <seg>exicyclog, exigrep, exim, exim-&exim-daemon-version;, exim_checkaccess,
510 exim_dbmbuild, exim_dumpdb, exim_fixdb, exim_lock, exim_tidydb,
511 eximstats, exinext, exipick, exiqgrep, exiqsumm, exiwhat, and
512 optionally, eximon, eximon.bin, and sendmail (symlink)</seg>
513 <seg>None</seg>
514 <seg>/usr/share/doc/exim-&exim-version; and /var/spool/exim</seg>
515 </seglistitem>
516 </segmentedlist>
517
518 <variablelist>
519 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
520 <?dbfo list-presentation="list"?>
521 <?dbhtml list-presentation="table"?>
522
523 <varlistentry id="exicyclog">
524 <term><command>exicyclog</command></term>
525 <listitem>
526 <para>
527 cycles <application>Exim</application> log files
528 </para>
529 <indexterm zone="exim exicyclog">
530 <primary sortas="b-exicyclog">exicyclog</primary>
531 </indexterm>
532 </listitem>
533 </varlistentry>
534
535 <varlistentry id="exigrep">
536 <term><command>exigrep</command></term>
537 <listitem>
538 <para>
539 searches <application>Exim</application> log files
540 </para>
541 <indexterm zone="exim exigrep">
542 <primary sortas="b-exigrep">exigrep</primary>
543 </indexterm>
544 </listitem>
545 </varlistentry>
546
547 <varlistentry id="exim-prog">
548 <term><command>exim</command></term>
549 <listitem>
550 <para>
551 is a symlink to the <command>exim-&exim-daemon-version;</command>
552 MTA daemon
553 </para>
554 <indexterm zone="exim exim-prog">
555 <primary sortas="b-exim">exim</primary>
556 </indexterm>
557 </listitem>
558 </varlistentry>
559
560 <varlistentry id="exim-current_version">
561 <term><command>exim-&exim-daemon-version;</command></term>
562 <listitem>
563 <para>
564 is the <application>Exim</application> mail transport agent daemon
565 </para>
566 <indexterm zone="exim exim-current_version">
567 <primary sortas="b-exim-&exim-daemon-version;">exim-&exim-daemon-version;</primary>
568 </indexterm>
569 </listitem>
570 </varlistentry>
571
572 <varlistentry id="exim_checkaccess">
573 <term><command>exim_checkaccess</command></term>
574 <listitem>
575 <para>
576 states whether a given recipient address from a given host is
577 acceptable or not
578 </para>
579 <indexterm zone="exim exim_checkaccess">
580 <primary sortas="b-exim_checkaccess">exim_checkaccess</primary>
581 </indexterm>
582 </listitem>
583 </varlistentry>
584
585 <varlistentry id="exim_dbmbuild">
586 <term><command>exim_dbmbuild</command></term>
587 <listitem>
588 <para>
589 creates and rebuilds <application>Exim</application> databases
590 </para>
591 <indexterm zone="exim exim_dbmbuild">
592 <primary sortas="b-exim_dbmbuild">exim_dbmbuild</primary>
593 </indexterm>
594 </listitem>
595 </varlistentry>
596
597 <varlistentry id="exim_dumpdb">
598 <term><command>exim_dumpdb</command></term>
599 <listitem>
600 <para>
601 writes the contents of <application>Exim</application>
602 databases to the standard output
603 </para>
604 <indexterm zone="exim exim_dumpdb">
605 <primary sortas="b-exim_dumpdb">exim_dumpdb</primary>
606 </indexterm>
607 </listitem>
608 </varlistentry>
609
610 <varlistentry id="exim_fixdb">
611 <term><command>exim_fixdb</command></term>
612 <listitem>
613 <para>
614 modifies data in <application>Exim</application> databases
615 </para>
616 <indexterm zone="exim exim_fixdb">
617 <primary sortas="b-exim_fixdb">exim_fixdb</primary>
618 </indexterm>
619 </listitem>
620 </varlistentry>
621
622 <varlistentry id="exim_lock">
623 <term><command>exim_lock</command></term>
624 <listitem>
625 <para>
626 locks a mailbox file
627 </para>
628 <indexterm zone="exim exim_lock">
629 <primary sortas="b-exim_lock">exim_lock</primary>
630 </indexterm>
631 </listitem>
632 </varlistentry>
633
634 <varlistentry id="exim_tidydb">
635 <term><command>exim_tidydb</command></term>
636 <listitem>
637 <para>
638 removes old records from <application>Exim</application>
639 databases
640 </para>
641 <indexterm zone="exim exim_tidydb">
642 <primary sortas="b-exim_tidydb">exim_tidydb</primary>
643 </indexterm>
644 </listitem>
645 </varlistentry>
646
647 <varlistentry id="eximstats">
648 <term><command>eximstats</command></term>
649 <listitem>
650 <para>
651 generates mail statistics from <application>Exim</application>
652 log files
653 </para>
654 <indexterm zone="exim eximstats">
655 <primary sortas="b-eximstats">eximstats</primary>
656 </indexterm>
657 </listitem>
658 </varlistentry>
659
660 <varlistentry id="exinext">
661 <term><command>exinext</command></term>
662 <listitem>
663 <para>
664 queries remote host retry times
665 </para>
666 <indexterm zone="exim exinext">
667 <primary sortas="b-exinext">exinext</primary>
668 </indexterm>
669 </listitem>
670 </varlistentry>
671
672 <varlistentry id="exipick">
673 <term><command>exipick</command></term>
674 <listitem>
675 <para>
676 selects messages based on various criteria
677 </para>
678 <indexterm zone="exim exipick">
679 <primary sortas="b-exipick">exipick</primary>
680 </indexterm>
681 </listitem>
682 </varlistentry>
683
684 <varlistentry id="exiqgrep">
685 <term><command>exiqgrep</command></term>
686 <listitem>
687 <para>
688 is a utility for selective queue listing
689 </para>
690 <indexterm zone="exim exiqgrep">
691 <primary sortas="b-exiqgrep">exiqgrep</primary>
692 </indexterm>
693 </listitem>
694 </varlistentry>
695
696 <varlistentry id="exiqsumm">
697 <term><command>exiqsumm</command></term>
698 <listitem>
699 <para>
700 produces a summary of the messages in the mail queue
701 </para>
702 <indexterm zone="exim exiqsumm">
703 <primary sortas="b-exiqsumm">exiqsumm</primary>
704 </indexterm>
705 </listitem>
706 </varlistentry>
707
708 <varlistentry id="exiwhat">
709 <term><command>exiwhat</command></term>
710 <listitem>
711 <para>
712 queries running <application>Exim</application>
713 processes
714 </para>
715 <indexterm zone="exim exiwhat">
716 <primary sortas="b-exiwhat">exiwhat</primary>
717 </indexterm>
718 </listitem>
719 </varlistentry>
720
721 <varlistentry id="eximon">
722 <term><command>eximon</command></term>
723 <listitem>
724 <para>
725 is a start-up shell script for <command>eximon.bin</command>
726 used to set the required environment variables before running the
727 program
728 </para>
729 <indexterm zone="exim eximon">
730 <primary sortas="b-eximon">eximon</primary>
731 </indexterm>
732 </listitem>
733 </varlistentry>
734
735 <varlistentry id="eximon.bin">
736 <term><command>eximon.bin</command></term>
737 <listitem>
738 <para>
739 is a monitor program which displays current information in an
740 <application>X</application> window, and also contains a menu
741 interface to <application>Exim</application>'s command line
742 administration options
743 </para>
744 <indexterm zone="exim eximon.bin">
745 <primary sortas="b-eximon.bin">eximon.bin</primary>
746 </indexterm>
747 </listitem>
748 </varlistentry>
749
750 </variablelist>
751
752 </sect2>
753
754</sect1>
Note: See TracBrowser for help on using the repository browser.