1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
<HTML>
<HEAD>
<!-- This HTML file has been created by texi2html 1.52
from filter on 25 November 2000 -->
<TITLE>Exim Filter Specification - Multiple personal mailboxes</TITLE>
</HEAD>
<body bgcolor="#FFFFFF" text="#00005A" link="#FF6600" alink="#FF9933" vlink="#990000">
Go to the <A HREF="filter_1.html">first</A>, <A HREF="filter_26.html">previous</A>, <A HREF="filter_28.html">next</A>, <A HREF="filter_34.html">last</A> section, <A HREF="filter_toc.html">table of contents</A>.
<P><HR><P>
<H2><A NAME="SEC27" HREF="filter_toc.html#TOC27">Multiple personal mailboxes</A></H2>
<P>
The system administrator can configure Exim so that users can set up variants
on their email addresses and handle them separately. Consult your system
administrator or local documentation to see if this facility is enabled on your
system, and if so, what the details are.
</P>
<P>
The facility involves the use of a prefix or a suffix on an email address. For
example, all mail addressed to <EM>lg103-<<EM>something</EM>></EM> would be the property of
user <EM>lg103</EM>, who could determine how it was to be handled, depending on the
value of <<EM>something</EM>>.
</P>
<P>
There are two possible ways in which this can be set up. The first possibility
is the use of multiple <TT>`.forward'</TT> files. In this case, mail to <EM>lg103-foo</EM>, for
example, is handled by looking for a file called <EM>.forward-foo</EM> in <EM>lg103's</EM>
home directory. If such a file does not exist, delivery fails and the message
is returned to its sender.
</P>
<P>
The alternative approach is to pass all messages through a single <TT>`.forward'</TT>
file, which must be a filter file in order to distinguish between the different
cases by referencing the variables $<EM>local_part_prefix</EM> or
$<EM>local_part_suffix</EM>, as in the final example in section 28 below. If
the filter file does not handle a prefixed or suffixed address, delivery fails
and the message is returned to its sender.
</P>
<P>
It is possible to configure Exim to support both schemes at once. In this case,
a specific <EM>.forward-foo</EM> file is first sought; if it is not found, the basic
<TT>`.forward'</TT> file is used.
</P>
<P>
The <TT>`personal'</TT> test (see section 21) includes prefixes and
suffixes in its checking.
</P>
<P><HR><P>
Go to the <A HREF="filter_1.html">first</A>, <A HREF="filter_26.html">previous</A>, <A HREF="filter_28.html">next</A>, <A HREF="filter_34.html">last</A> section, <A HREF="filter_toc.html">table of contents</A>.
</BODY>
</HTML>
|