source: server/mail/exim.xml@ f117325

10.0 10.1 11.0 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 f117325 was cee7c1c, checked in by Pierre Labastie <pieere@…>, 4 years ago

exim-4.94

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

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