source: server/mail/exim.xml@ dd9aab33

11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since dd9aab33 was dd9aab33, checked in by Tim Tassonis <stuff@…>, 3 years ago

Document and add patch for PAM support to exim-4.95.

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