Sophie

Sophie

distrib > Fedora > 16 > i386 > by-pkgid > 9adab841b2346eed28e146b23c25375c > files > 113

exim-doc-4.73-2.fc15.noarch.rpm

<!DOCTYPE html PUBLIC "XSLT-compat">
<html lang="en-GB">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="../../../../common.css">
<meta name="author" content="The Exim Project. &lt;http://www.exim.org/&gt;">
<meta name="copyright" content="Copyright ©2010 The Exim Project. All rights reserved">
<meta name="description" content="Exim is a message transfer agent (MTA) developed at the University of Cambridge for use on Unix systems connected to the Internet.">
<meta name="keywords" content="exim,smtp,mta,email">
<meta name="robots" content="noodp,noydir,index,follow">
<meta name="viewport" content="width=device-width">
<title>11. String expansions</title>
<link rel="stylesheet" type="text/css" href="../../../../doc/chapter.css">
<link rel="canonical" href="http://www.exim.org/exim-html-current/doc/html/spec_html/ch11.html">
</head>
<body>
<h1 id="header"><a href="../../../..">Exim Internet Mailer</a></h1>
<div id="outer">
<ul id="nav_flow" class="nav">
<li><a href="../../../../index.html">Home</a></li>
<li><a href="../../../../mirrors.html">Download</a></li>
<li><a href="../../../../docs.html">Documentation</a></li>
<li><a href="../../../../maillist.html">Mailing Lists</a></li>
<li><a href="http://wiki.exim.org/">Wiki</a></li>
<li><a href="http://www.exim.org/bugzilla/">Bugs</a></li>
<li><a href="../../../../credits.html">Credits</a></li>
<li class="search"><form action="http://www.google.com/search" method="get">
<span class="search_field_container"><input type="search" name="q" placeholder="Search Docs" class="search_field"></span><input type="hidden" name="hl" value="en"><input type="hidden" name="ie" value="UTF-8"><input type="hidden" name="as_qdr" value="all"><input type="hidden" name="q" value="site:www.exim.org"><input type="hidden" name="q" value="inurl:exim-html-current">
</form></li>
</ul>
<div id="inner"><div id="content">
<a class="previous_page" href="ch10.html">&lt;-previous</a><a class="next_page" href="ch12.html">next-&gt;</a><div id="chapter" class="chapter">
<h2 id="CHAPexpand" class="">Chapter 11 - String expansions</h2>
<p>

Many strings in Exim’s run time configuration are expanded before use. Some of
them are expanded every time they are used; others are expanded only once.
</p>
<p>
When a string is being expanded it is copied verbatim from left to right except
when a dollar or backslash character is encountered. A dollar specifies the
start of a portion of the string that is interpreted and replaced as described
below in section <a href="ch11.html#SECTexpansionitems" title="11. String expansions">11.5</a> onwards. Backslash is used as an
escape character, as described in the following section.
</p>
<div class="section">
<h3 id="SECTlittext" class="">1. Literal text in expanded strings</h3>
<p>

An uninterpreted dollar can be included in an expanded string by putting a
backslash in front of it. A backslash can be used to prevent any special
character being treated specially in an expansion, including backslash itself.
If the string appears in quotes in the configuration file, two backslashes are
required because the quotes themselves cause interpretation of backslashes when
the string is read in (see section <a href="ch06.html#SECTstrings" title="6. The Exim run time configuration file">6.16</a>).
</p>
<p>

A portion of the string can specified as non-expandable by placing it between
two occurrences of <code class="docbook_literal">\N</code>. This is particularly useful for protecting regular
expressions, which often contain backslashes and dollar signs. For example:
</p>
<div class="docbook_literallayout"><pre>
deny senders = \N^\d{8}[a-z]@some\.site\.example$\N
</pre></div>
<p>
On encountering the first <code class="docbook_literal">\N</code>, the expander copies subsequent characters
without interpretation until it reaches the next <code class="docbook_literal">\N</code> or the end of the
string.
</p>
</div>
<div class="section">
<h3 id="SECID82" class="">2. Character escape sequences in expanded strings</h3>
<p>

A backslash followed by one of the letters “n”, “r”, or “t” in an
expanded string is recognized as an escape sequence for the character newline,
carriage return, or tab, respectively. A backslash followed by up to three
octal digits is recognized as an octal encoding for a single character, and a
backslash followed by “x” and up to two hexadecimal digits is a hexadecimal
encoding.
</p>
<p>
These escape sequences are also recognized in quoted strings when they are read
in. Their interpretation in expansions as well is useful for unquoted strings,
and for other cases such as looked-up strings that are then expanded.
</p>
</div>
<div class="section">
<h3 id="SECID83" class="">3. Testing string expansions</h3>
<p>



Many expansions can be tested by calling Exim with the <span class="docbook_option">-be</span> option. This
takes the command arguments, or lines from the standard input if there are no
arguments, runs them through the string expansion code, and writes the results
to the standard output. Variables based on configuration values are set up, but
since no message is being processed, variables such as $local_part have no
value. Nevertheless the <span class="docbook_option">-be</span> option can be useful for checking out file and
database lookups, and the use of expansion operators such as <span class="docbook_option">sg</span>, <span class="docbook_option">substr</span>
and <span class="docbook_option">nhash</span>.
</p>
<p>
Exim gives up its root privilege when it is called with the <span class="docbook_option">-be</span> option, and
instead runs under the uid and gid it was called with, to prevent users from
using <span class="docbook_option">-be</span> for reading files to which they do not have access.
</p>
<p>

If you want to test expansions that include variables whose values are taken
from a message, there are two other options that can be used. The <span class="docbook_option">-bem</span>
option is like <span class="docbook_option">-be</span> except that it is followed by a file name. The file is
read as a message before doing the test expansions. For example:
</p>
<div class="docbook_literallayout"><pre>
exim -bem /tmp/test.message '$h_subject:'
</pre></div>
<p>
The <span class="docbook_option">-Mset</span> option is used in conjunction with <span class="docbook_option">-be</span> and is followed by an
Exim message identifier. For example:
</p>
<div class="docbook_literallayout"><pre>
exim -be -Mset 1GrA8W-0004WS-LQ '$recipients'
</pre></div>
<p>
This loads the message from Exim’s spool before doing the test expansions, and
is therefore restricted to admin users.
</p>
</div>
<div class="section">
<h3 id="SECTforexpfai" class="">4. Forced expansion failure</h3>
<p>

A number of expansions that are described in the following section have
alternative “true” and “false” substrings, enclosed in brace characters
(which are sometimes called “curly brackets”). Which of the two strings is
used depends on some condition that is evaluated as part of the expansion. If,
instead of a “false” substring, the word “fail” is used (not in braces),
the entire string expansion fails in a way that can be detected by the code
that requested the expansion. This is called “forced expansion failure”, and
its consequences depend on the circumstances. In some cases it is no different
from any other expansion failure, but in others a different action may be
taken. Such variations are mentioned in the documentation of the option that is
being expanded.
</p>
</div>
<div class="section">
<h3 id="SECTexpansionitems" class="">5. Expansion items</h3>
<p>
The following items are recognized in expanded strings. White space may be used
between sub-items that are keywords or substrings enclosed in braces inside an
outer set of braces, to improve readability. <span class="docbook_emphasis">Warning</span>: Within braces,
white space is significant.
</p>
<dl>

<dt>
<span class="docbook_emphasis">$</span>&lt;<span class="docbook_emphasis">variable name</span>&gt; or <span class="docbook_emphasis">${</span>&lt;<span class="docbook_emphasis">variable name</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>

Substitute the contents of the named variable, for example:
</p>
<div class="docbook_literallayout"><pre>
$local_part
${domain}
</pre></div>
<p>
The second form can be used to separate the name from subsequent alphanumeric
characters. This form (using braces) is available only for variables; it does
<span class="docbook_emphasis">not</span> apply to message headers. The names of the variables are given in
section <a href="ch11.html#SECTexpvar" title="11. String expansions">11.9</a> below. If the name of a non-existent variable is
given, the expansion fails.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${</span>&lt;<span class="docbook_emphasis">op</span>&gt;<span class="docbook_emphasis">:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>

The string is first itself expanded, and then the operation specified by
&lt;<span class="docbook_emphasis">op</span>&gt; is applied to it. For example:
</p>
<div class="docbook_literallayout"><pre>
${lc:$local_part}
</pre></div>
<p>
The string starts with the first character after the colon, which may be
leading white space. A list of operators is given in section <a href="ch11.html#SECTexpop" title="11. String expansions">11.6</a>
below. The operator notation is used for simple expansion items that have just
one argument, because it reduces the number of braces and therefore makes the
string easier to understand.
</p>
</dd>

<dt>
<span class="docbook_emphasis">$bheader_</span>&lt;<span class="docbook_emphasis">header name</span>&gt;<span class="docbook_emphasis">:</span> or <span class="docbook_emphasis">$bh_</span>&lt;<span class="docbook_emphasis">header name</span>&gt;<span class="docbook_emphasis">:</span>
</dt>
<dd>
<p>
This item inserts “basic” header lines. It is described with the <span class="docbook_option">header</span>
expansion item below.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${dlfunc{</span>&lt;<span class="docbook_emphasis">file</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">function</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">arg</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">arg</span>&gt;<span class="docbook_emphasis">}...}</span>
</dt>
<dd>
<p>

This expansion dynamically loads and then calls a locally-written C function.
This functionality is available only if Exim is compiled with
</p>
<div class="docbook_literallayout"><pre>
EXPAND_DLFUNC=yes
</pre></div>
<p>
set in <span class="docbook_filename">Local/Makefile</span>. Once loaded, Exim remembers the dynamically loaded
object so that it doesn’t reload the same object file in the same Exim process
(but of course Exim does start new processes frequently).
</p>
<p>
There may be from zero to eight arguments to the function. When compiling
a local function that is to be called in this way, <span class="docbook_filename">local_scan.h</span> should be
included. The Exim variables and functions that are defined by that API
are also available for dynamically loaded functions. The function itself
must have the following type:
</p>
<div class="docbook_literallayout"><pre>
int dlfunction(uschar **yield, int argc, uschar *argv[])
</pre></div>
<p>
Where <code class="docbook_literal">uschar</code> is a typedef for <code class="docbook_literal">unsigned char</code> in <span class="docbook_filename">local_scan.h</span>. The
function should return one of the following values:
</p>
<p>
<code class="docbook_literal">OK</code>: Success. The string that is placed in the variable <span class="docbook_emphasis">yield</span> is put
into the expanded string that is being built.
</p>
<p>
<code class="docbook_literal">FAIL</code>: A non-forced expansion failure occurs, with the error message taken
from <span class="docbook_emphasis">yield</span>, if it is set.
</p>
<p>
<code class="docbook_literal">FAIL_FORCED</code>: A forced expansion failure occurs, with the error message
taken from <span class="docbook_emphasis">yield</span> if it is set.
</p>
<p>
<code class="docbook_literal">ERROR</code>: Same as <code class="docbook_literal">FAIL</code>, except that a panic log entry is written.
</p>
<p>
When compiling a function that is to be used in this way with gcc,
you need to add <span class="docbook_option">-shared</span> to the gcc command. Also, in the Exim build-time
configuration, you must add <span class="docbook_option">-export-dynamic</span> to EXTRALIBS.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${extract{</span>&lt;<span class="docbook_emphasis">key</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string3</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>


The key and &lt;<span class="docbook_emphasis">string1</span>&gt; are first expanded separately. Leading and trailing
white space is removed from the key (but not from any of the strings). The key
must not consist entirely of digits. The expanded &lt;<span class="docbook_emphasis">string1</span>&gt; must be of the
form:
</p>
<div class="docbook_literallayout"><pre>
&lt;<span class="docbook_emphasis">key1</span>&gt; = &lt;<span class="docbook_emphasis">value1</span>&gt;  &lt;<span class="docbook_emphasis">key2</span>&gt; = &lt;<span class="docbook_emphasis">value2</span>&gt; ...
</pre></div>
<p>

where the equals signs and spaces (but not both) are optional. If any of the
values contain white space, they must be enclosed in double quotes, and any
values that are enclosed in double quotes are subject to escape processing as
described in section <a href="ch06.html#SECTstrings" title="6. The Exim run time configuration file">6.16</a>. The expanded &lt;<span class="docbook_emphasis">string1</span>&gt; is searched
for the value that corresponds to the key. The search is case-insensitive. If
the key is found, &lt;<span class="docbook_emphasis">string2</span>&gt; is expanded, and replaces the whole item;
otherwise &lt;<span class="docbook_emphasis">string3</span>&gt; is used. During the expansion of &lt;<span class="docbook_emphasis">string2</span>&gt; the
variable $value contains the value that has been extracted. Afterwards, it
is restored to any previous value it might have had.
</p>
<p>
If {&lt;<span class="docbook_emphasis">string3</span>&gt;} is omitted, the item is replaced by an empty string if the
key is not found. If {&lt;<span class="docbook_emphasis">string2</span>&gt;} is also omitted, the value that was
extracted is used. Thus, for example, these two expansions are identical, and
yield “2001”:
</p>
<div class="docbook_literallayout"><pre>
${extract{gid}{uid=1984 gid=2001}}
${extract{gid}{uid=1984 gid=2001}{$value}}
</pre></div>
<p>
Instead of {&lt;<span class="docbook_emphasis">string3</span>&gt;} the word “fail” (not in curly brackets) can
appear, for example:
</p>
<div class="docbook_literallayout"><pre>
${extract{Z}{A=... B=...}{$value} fail }
</pre></div>
<p>
This forces an expansion failure (see section <a href="ch11.html#SECTforexpfai" title="11. String expansions">11.4</a>);
{&lt;<span class="docbook_emphasis">string2</span>&gt;} must be present for “fail” to be recognized.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${extract{</span>&lt;<span class="docbook_emphasis">number</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">separators</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string3</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>


The &lt;<span class="docbook_emphasis">number</span>&gt; argument must consist entirely of decimal digits,
apart from leading and trailing white space, which is ignored.
This is what distinguishes this form of <span class="docbook_option">extract</span> from the previous kind. It
behaves in the same way, except that, instead of extracting a named field, it
extracts from &lt;<span class="docbook_emphasis">string1</span>&gt; the field whose number is given as the first
argument. You can use $value in &lt;<span class="docbook_emphasis">string2</span>&gt; or <code class="docbook_literal">fail</code> instead of
&lt;<span class="docbook_emphasis">string3</span>&gt; as before.
</p>
<p>
The fields in the string are separated by any one of the characters in the
separator string. These may include space or tab characters.
The first field is numbered one. If the number is negative, the fields are
counted from the end of the string, with the rightmost one numbered -1. If the
number given is zero, the entire string is returned. If the modulus of the
number is greater than the number of fields in the string, the result is the
expansion of &lt;<span class="docbook_emphasis">string3</span>&gt;, or the empty string if &lt;<span class="docbook_emphasis">string3</span>&gt; is not
provided. For example:
</p>
<div class="docbook_literallayout"><pre>
${extract{2}{:}{x:42:99:&amp; Mailer::/bin/bash}}
</pre></div>
<p>
yields “42”, and
</p>
<div class="docbook_literallayout"><pre>
${extract{-4}{:}{x:42:99:&amp; Mailer::/bin/bash}}
</pre></div>
<p>
yields “99”. Two successive separators mean that the field between them is
empty (for example, the fifth field above).
</p>
</dd>

<dt>
<span class="docbook_emphasis">${filter{</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">condition</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>



After expansion, &lt;<span class="docbook_emphasis">string</span>&gt; is interpreted as a list, colon-separated by
default, but the separator can be changed in the usual way. For each item
in this list, its value is place in $item, and then the condition is
evaluated. If the condition is true, $item is added to the output as an
item in a new list; if the condition is false, the item is discarded. The
separator used for the output list is the same as the one used for the
input, but a separator setting is not included in the output. For example:
</p>
<div class="docbook_literallayout"><pre>
${filter{a:b:c}{!eq{$item}{b}}
</pre></div>
<p>
yields <code class="docbook_literal">a:c</code>. At the end of the expansion, the value of $item is restored
to what it was before. See also the <span class="docbook_emphasis">map</span> and <span class="docbook_emphasis">reduce</span> expansion items.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${hash{</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string3</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>


This is a textual hashing function, and was the first to be implemented in
early versions of Exim. In current releases, there are other hashing functions
(numeric, MD5, and SHA-1), which are described below.
</p>
<p>
The first two strings, after expansion, must be numbers. Call them &lt;<span class="docbook_emphasis">m</span>&gt; and
&lt;<span class="docbook_emphasis">n</span>&gt;. If you are using fixed values for these numbers, that is, if
&lt;<span class="docbook_emphasis">string1</span>&gt; and &lt;<span class="docbook_emphasis">string2</span>&gt; do not change when they are expanded, you can
use the simpler operator notation that avoids some of the braces:
</p>
<div class="docbook_literallayout"><pre>
${hash_&lt;n&gt;_&lt;m&gt;:&lt;string&gt;}
</pre></div>
<p>
The second number is optional (in both notations). If &lt;<span class="docbook_emphasis">n</span>&gt; is greater than
or equal to the length of the string, the expansion item returns the string.
Otherwise it computes a new string of length &lt;<span class="docbook_emphasis">n</span>&gt; by applying a hashing
function to the string. The new string consists of characters taken from the
first &lt;<span class="docbook_emphasis">m</span>&gt; characters of the string
</p>
<div class="docbook_literallayout"><pre>
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQWRSTUVWXYZ0123456789
</pre></div>
<p>
If &lt;<span class="docbook_emphasis">m</span>&gt; is not present the value 26 is used, so that only lower case
letters appear. For example:
</p>
<div class="docbook_literallayout"><pre>
<code class="docbook_literal">$hash{3}{monty}}           </code>   yields  <code class="docbook_literal">jmg</code>
<code class="docbook_literal">$hash{5}{monty}}           </code>   yields  <code class="docbook_literal">monty</code>
<code class="docbook_literal">$hash{4}{62}{monty python}}</code>   yields  <code class="docbook_literal">fbWx</code>
</pre></div>
</dd>

<dt>
<span class="docbook_emphasis">$header_</span>&lt;<span class="docbook_emphasis">header name</span>&gt;<span class="docbook_emphasis">:</span> or <span class="docbook_emphasis">$h_</span>&lt;<span class="docbook_emphasis">header name</span>&gt;<span class="docbook_emphasis">:</span>
</dt>
<dt>
<span class="docbook_emphasis">$bheader_</span>&lt;<span class="docbook_emphasis">header name</span>&gt;<span class="docbook_emphasis">:</span> or <span class="docbook_emphasis">$bh_</span>&lt;<span class="docbook_emphasis">header name</span>&gt;<span class="docbook_emphasis">:</span>
</dt>
<dt>
<span class="docbook_emphasis">$rheader_</span>&lt;<span class="docbook_emphasis">header name</span>&gt;<span class="docbook_emphasis">:</span> or <span class="docbook_emphasis">$rh_</span>&lt;<span class="docbook_emphasis">header name</span>&gt;<span class="docbook_emphasis">:</span>
</dt>
<dd>
<p>







Substitute the contents of the named message header line, for example
</p>
<div class="docbook_literallayout"><pre>
$header_reply-to:
</pre></div>
<p>
The newline that terminates a header line is not included in the expansion, but
internal newlines (caused by splitting the header line over several physical
lines) may be present.
</p>
<p>
The difference between <span class="docbook_option">rheader</span>, <span class="docbook_option">bheader</span>, and <span class="docbook_option">header</span> is in the way
the data in the header line is interpreted.
</p>
<ul>
<li>
<p>

<span class="docbook_option">rheader</span> gives the original “raw” content of the header line, with no
processing at all, and without the removal of leading and trailing white space.
</p>
</li>
<li>
<p>

<span class="docbook_option">bheader</span> removes leading and trailing white space, and then decodes base64
or quoted-printable MIME “words” within the header text, but does no
character set translation. If decoding of what looks superficially like a MIME
“word” fails, the raw string is returned. If decoding

produces a binary zero character, it is replaced by a question mark – this is
what Exim does for binary zeros that are actually received in header lines.
</p>
</li>
<li>
<p>
<span class="docbook_option">header</span> tries to translate the string as decoded by <span class="docbook_option">bheader</span> to a
standard character set. This is an attempt to produce the same string as would
be displayed on a user’s MUA. If translation fails, the <span class="docbook_option">bheader</span> string is
returned. Translation is attempted only on operating systems that support the
<span class="docbook_function">iconv()</span> function. This is indicated by the compile-time macro HAVE_ICONV in
a system Makefile or in <span class="docbook_filename">Local/Makefile</span>.
</p>
</li>
</ul>
<p>
In a filter file, the target character set for <span class="docbook_option">header</span> can be specified by a
command of the following form:
</p>
<div class="docbook_literallayout"><pre>
headers charset "UTF-8"
</pre></div>
<p>
This command affects all references to $h_ (or $header_) expansions in
subsequently obeyed filter commands. In the absence of this command, the target
character set in a filter is taken from the setting of the <span class="docbook_option">headers_charset</span>
option in the runtime configuration. The value of this option defaults to the
value of HEADERS_CHARSET in <span class="docbook_filename">Local/Makefile</span>. The ultimate default is
ISO-8859-1.
</p>
<p>
Header names follow the syntax of RFC 2822, which states that they may contain
any printing characters except space and colon. Consequently, curly brackets
<span class="docbook_emphasis">do not</span> terminate header names, and should not be used to enclose them as
if they were variables. Attempting to do so causes a syntax error.
</p>
<p>
Only header lines that are common to all copies of a message are visible to
this mechanism. These are the original header lines that are received with the
message, and any that are added by an ACL statement or by a system
filter. Header lines that are added to a particular copy of a message by a
router or transport are not accessible.
</p>
<p>
For incoming SMTP messages, no header lines are visible in ACLs that are obeyed
before the DATA ACL, because the header structure is not set up until the
message is received. Header lines that are added in a RCPT ACL (for example)
are saved until the message’s incoming header lines are available, at which
point they are added. When a DATA ACL is running, however, header lines added
by earlier ACLs are visible.
</p>
<p>
Upper case and lower case letters are synonymous in header names. If the
following character is white space, the terminating colon may be omitted, but
this is not recommended, because you may then forget it when it is needed. When
white space terminates the header name, it is included in the expanded string.
If the message does not contain the given header, the expansion item is
replaced by an empty string. (See the <span class="docbook_option">def</span> condition in section
<a href="ch11.html#SECTexpcond" title="11. String expansions">11.7</a> for a means of testing for the existence of a header.)
</p>
<p>
If there is more than one header with the same name, they are all concatenated
to form the substitution string, up to a maximum length of 64K. Unless
<span class="docbook_option">rheader</span> is being used, leading and trailing white space is removed from
each header before concatenation, and a completely empty header is ignored. A
newline character is then inserted between non-empty headers, but there is no
newline at the very end. For the <span class="docbook_option">header</span> and <span class="docbook_option">bheader</span> expansion, for
those headers that contain lists of addresses, a comma is also inserted at the
junctions between headers. This does not happen for the <span class="docbook_option">rheader</span> expansion.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${hmac{</span>&lt;<span class="docbook_emphasis">hashname</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">secret</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>


This function uses cryptographic hashing (either MD5 or SHA-1) to convert a
shared secret and some text into a message authentication code, as specified in
RFC 2104. This differs from <code class="docbook_literal">${md5:secret_text...}</code> or
<code class="docbook_literal">${sha1:secret_text...}</code> in that the hmac step adds a signature to the
cryptographic hash, allowing for authentication that is not possible with MD5
or SHA-1 alone. The hash name must expand to either <code class="docbook_literal">md5</code> or <code class="docbook_literal">sha1</code> at
present. For example:
</p>
<div class="docbook_literallayout"><pre>
${hmac{md5}{somesecret}{$primary_hostname $tod_log}}
</pre></div>
<p>
For the hostname <span class="docbook_emphasis">mail.example.com</span> and time 2002-10-17 11:30:59, this
produces:
</p>
<div class="docbook_literallayout"><pre>
dd97e3ba5d1a61b5006108f8c8252953
</pre></div>
<p>
As an example of how this might be used, you might put in the main part of
an Exim configuration:
</p>
<div class="docbook_literallayout"><pre>
SPAMSCAN_SECRET=cohgheeLei2thahw
</pre></div>
<p>
In a router or a transport you could then have:
</p>
<div class="docbook_literallayout"><pre>
headers_add = \
  X-Spam-Scanned: ${primary_hostname} ${message_exim_id} \
  ${hmac{md5}{SPAMSCAN_SECRET}\
  {${primary_hostname},${message_exim_id},$h_message-id:}}
</pre></div>
<p>
Then given a message, you can check where it was scanned by looking at the
<span class="docbook_emphasis">X-Spam-Scanned:</span> header line. If you know the secret, you can check that
this header line is authentic by recomputing the authentication code from the
host name, message ID and the <span class="docbook_emphasis">Message-id:</span> header line. This can be done
using Exim’s <span class="docbook_option">-be</span> option, or by other means, for example by using the
<span class="docbook_emphasis">hmac_md5_hex()</span> function in Perl.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${if </span>&lt;<span class="docbook_emphasis">condition</span>&gt;<span class="docbook_emphasis"> {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>


If &lt;<span class="docbook_emphasis">condition</span>&gt; is true, &lt;<span class="docbook_emphasis">string1</span>&gt; is expanded and replaces the whole
item; otherwise &lt;<span class="docbook_emphasis">string2</span>&gt; is used. The available conditions are described
in section <a href="ch11.html#SECTexpcond" title="11. String expansions">11.7</a> below. For example:
</p>
<div class="docbook_literallayout"><pre>
${if eq {$local_part}{postmaster} {yes}{no} }
</pre></div>
<p>
The second string need not be present; if it is not and the condition is not
true, the item is replaced with nothing. Alternatively, the word “fail” may
be present instead of the second string (without any curly brackets). In this
case, the expansion is forced to fail if the condition is not true (see section
<a href="ch11.html#SECTforexpfai" title="11. String expansions">11.4</a>).
</p>
<p>
If both strings are omitted, the result is the string <code class="docbook_literal">true</code> if the condition
is true, and the empty string if the condition is false. This makes it less
cumbersome to write custom ACL and router conditions. For example, instead of
</p>
<div class="docbook_literallayout"><pre>
condition = ${if &gt;{$acl_m4}{3}{true}{false}}
</pre></div>
<p>
you can use
</p>
<div class="docbook_literallayout"><pre>
condition = ${if &gt;{$acl_m4}{3}}
</pre></div>
</dd>

<dt>
<span class="docbook_emphasis">${length{</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>


The <span class="docbook_option">length</span> item is used to extract the initial portion of a string. Both
strings are expanded, and the first one must yield a number, &lt;<span class="docbook_emphasis">n</span>&gt;, say. If
you are using a fixed value for the number, that is, if &lt;<span class="docbook_emphasis">string1</span>&gt; does not
change when expanded, you can use the simpler operator notation that avoids
some of the braces:
</p>
<div class="docbook_literallayout"><pre>
${length_&lt;n&gt;:&lt;string&gt;}
</pre></div>
<p>
The result of this item is either the first &lt;<span class="docbook_emphasis">n</span>&gt; characters or the whole
of &lt;<span class="docbook_emphasis">string2</span>&gt;, whichever is the shorter. Do not confuse <span class="docbook_option">length</span> with
<span class="docbook_option">strlen</span>, which gives the length of a string.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${lookup{</span>&lt;<span class="docbook_emphasis">key</span>&gt;<span class="docbook_emphasis">} </span>&lt;<span class="docbook_emphasis">search type</span>&gt;<span class="docbook_emphasis"> {</span>&lt;<span class="docbook_emphasis">file</span>&gt;<span class="docbook_emphasis">} {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">} {</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>
This is the first of one of two different types of lookup item, which are both
described in the next item.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${lookup </span>&lt;<span class="docbook_emphasis">search type</span>&gt;<span class="docbook_emphasis"> {</span>&lt;<span class="docbook_emphasis">query</span>&gt;<span class="docbook_emphasis">} {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">} {</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>



The two forms of lookup item specify data lookups in files and databases, as
discussed in chapter <a href="ch09.html" title="9. File and database lookups">9</a>. The first form is used for single-key
lookups, and the second is used for query-style lookups. The &lt;<span class="docbook_emphasis">key</span>&gt;,
&lt;<span class="docbook_emphasis">file</span>&gt;, and &lt;<span class="docbook_emphasis">query</span>&gt; strings are expanded before use.
</p>
<p>
If there is any white space in a lookup item which is part of a filter command,
a retry or rewrite rule, a routing rule for the <span class="docbook_command">manualroute</span> router, or any
other place where white space is significant, the lookup item must be enclosed
in double quotes. The use of data lookups in users’ filter files may be locked
out by the system administrator.
</p>
<p>

If the lookup succeeds, &lt;<span class="docbook_emphasis">string1</span>&gt; is expanded and replaces the entire item.
During its expansion, the variable $value contains the data returned by the
lookup. Afterwards it reverts to the value it had previously (at the outer
level it is empty). If the lookup fails, &lt;<span class="docbook_emphasis">string2</span>&gt; is expanded and replaces
the entire item. If {&lt;<span class="docbook_emphasis">string2</span>&gt;} is omitted, the replacement is the empty
string on failure. If &lt;<span class="docbook_emphasis">string2</span>&gt; is provided, it can itself be a nested
lookup, thus providing a mechanism for looking up a default value when the
original lookup fails.
</p>
<p>
If a nested lookup is used as part of &lt;<span class="docbook_emphasis">string1</span>&gt;, $value contains the
data for the outer lookup while the parameters of the second lookup are
expanded, and also while &lt;<span class="docbook_emphasis">string2</span>&gt; of the second lookup is expanded, should
the second lookup fail. Instead of {&lt;<span class="docbook_emphasis">string2</span>&gt;} the word “fail” can
appear, and in this case, if the lookup fails, the entire expansion is forced
to fail (see section <a href="ch11.html#SECTforexpfai" title="11. String expansions">11.4</a>). If both {&lt;<span class="docbook_emphasis">string1</span>&gt;} and
{&lt;<span class="docbook_emphasis">string2</span>&gt;} are omitted, the result is the looked up value in the case of a
successful lookup, and nothing in the case of failure.
</p>
<p>
For single-key lookups, the string “partial” is permitted to precede the
search type in order to do partial matching, and * or *@ may follow a search
type to request default lookups if the key does not match (see sections
<a href="ch09.html#SECTdefaultvaluelookups" title="9. File and database lookups">9.6</a> and <a href="ch09.html#SECTpartiallookup" title="9. File and database lookups">9.7</a> for details).
</p>
<p>

If a partial search is used, the variables $1 and $2 contain the wild
and non-wild parts of the key during the expansion of the replacement text.
They return to their previous values at the end of the lookup item.
</p>
<p>
This example looks up the postmaster alias in the conventional alias file:
</p>
<div class="docbook_literallayout"><pre>
${lookup {postmaster} lsearch {/etc/aliases} {$value}}
</pre></div>
<p>
This example uses NIS+ to look up the full name of the user corresponding to
the local part of an address, forcing the expansion to fail if it is not found:
</p>
<div class="docbook_literallayout"><pre>
${lookup nisplus {[name=$local_part],passwd.org_dir:gcos} \
  {$value}fail}
</pre></div>
</dd>

<dt>
<span class="docbook_emphasis">${map{</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>


After expansion, &lt;<span class="docbook_emphasis">string1</span>&gt; is interpreted as a list, colon-separated by
default, but the separator can be changed in the usual way. For each item
in this list, its value is place in $item, and then &lt;<span class="docbook_emphasis">string2</span>&gt; is
expanded and added to the output as an item in a new list. The separator used
for the output list is the same as the one used for the input, but a separator
setting is not included in the output. For example:
</p>
<div class="docbook_literallayout"><pre>
${map{a:b:c}{[$item]}} ${map{&lt;- x-y-z}{($item)}}
</pre></div>
<p>
expands to <code class="docbook_literal">[a]:[b]:[c] (x)-(y)-(z)</code>. At the end of the expansion, the
value of $item is restored to what it was before. See also the <span class="docbook_emphasis">filter</span>
and <span class="docbook_emphasis">reduce</span> expansion items.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${nhash{</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string3</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>


The three strings are expanded; the first two must yield numbers. Call them
&lt;<span class="docbook_emphasis">n</span>&gt; and &lt;<span class="docbook_emphasis">m</span>&gt;. If you are using fixed values for these numbers, that is,
if &lt;<span class="docbook_emphasis">string1</span>&gt; and &lt;<span class="docbook_emphasis">string2</span>&gt; do not change when they are expanded, you
can use the simpler operator notation that avoids some of the braces:
</p>
<div class="docbook_literallayout"><pre>
${nhash_&lt;n&gt;_&lt;m&gt;:&lt;string&gt;}
</pre></div>
<p>
The second number is optional (in both notations). If there is only one number,
the result is a number in the range 0–&lt;<span class="docbook_emphasis">n</span>&gt;-1. Otherwise, the string is
processed by a div/mod hash function that returns two numbers, separated by a
slash, in the ranges 0 to &lt;<span class="docbook_emphasis">n</span>&gt;-1 and 0 to &lt;<span class="docbook_emphasis">m</span>&gt;-1, respectively. For
example,
</p>
<div class="docbook_literallayout"><pre>
${nhash{8}{64}{supercalifragilisticexpialidocious}}
</pre></div>
<p>
returns the string “6/33”.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${perl{</span>&lt;<span class="docbook_emphasis">subroutine</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">arg</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">arg</span>&gt;<span class="docbook_emphasis">}...}</span>
</dt>
<dd>
<p>


This item is available only if Exim has been built to include an embedded Perl
interpreter. The subroutine name and the arguments are first separately
expanded, and then the Perl subroutine is called with those arguments. No
additional arguments need be given; the maximum number permitted, including the
name of the subroutine, is nine.
</p>
<p>
The return value of the subroutine is inserted into the expanded string, unless
the return value is <span class="docbook_option">undef</span>. In that case, the expansion fails in the same
way as an explicit “fail” on a lookup item. The return value is a scalar.
Whatever you return is evaluated in a scalar context. For example, if you
return the name of a Perl vector, the return value is the size of the vector,
not its contents.
</p>
<p>
If the subroutine exits by calling Perl’s <span class="docbook_option">die</span> function, the expansion fails
with the error message that was passed to <span class="docbook_option">die</span>. More details of the embedded
Perl facility are given in chapter <a href="ch12.html" title="12. Embedded Perl">12</a>.
</p>
<p>
The <span class="docbook_command">redirect</span> router has an option called <span class="docbook_option">forbid_filter_perl</span> which locks
out the use of this expansion item in filter files.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${prvs{</span>&lt;<span class="docbook_emphasis">address</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">secret</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">keynumber</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>

The first argument is a complete email address and the second is secret
keystring. The third argument, specifying a key number, is optional. If absent,
it defaults to 0. The result of the expansion is a prvs-signed email address,
to be typically used with the <span class="docbook_option">return_path</span> option on an <span class="docbook_command">smtp</span> transport
as part of a bounce address tag validation (BATV) scheme. For more discussion
and an example, see section <a href="ch40.html#SECTverifyPRVS" title="40. Access control lists">40.48</a>.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${prvscheck{</span>&lt;<span class="docbook_emphasis">address</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">secret</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>

This expansion item is the complement of the <span class="docbook_option">prvs</span> item. It is used for
checking prvs-signed addresses. If the expansion of the first argument does not
yield a syntactically valid prvs-signed address, the whole item expands to the
empty string. When the first argument does expand to a syntactically valid
prvs-signed address, the second argument is expanded, with the prvs-decoded
version of the address and the key number extracted from the address in the
variables $prvscheck_address and $prvscheck_keynum, respectively.
</p>
<p>
These two variables can be used in the expansion of the second argument to
retrieve the secret. The validity of the prvs-signed address is then checked
against the secret. The result is stored in the variable $prvscheck_result,
which is empty for failure or “1” for success.
</p>
<p>
The third argument is optional; if it is missing, it defaults to an empty
string. This argument is now expanded. If the result is an empty string, the
result of the expansion is the decoded version of the address. This is the case
whether or not the signature was valid. Otherwise, the result of the expansion
is the expansion of the third argument.
</p>
<p>
All three variables can be used in the expansion of the third argument.
However, once the expansion is complete, only $prvscheck_result remains set.
For more discussion and an example, see section <a href="ch40.html#SECTverifyPRVS" title="40. Access control lists">40.48</a>.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${readfile{</span>&lt;<span class="docbook_emphasis">file name</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">eol string</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>



The file name and end-of-line string are first expanded separately. The file is
then read, and its contents replace the entire item. All newline characters in
the file are replaced by the end-of-line string if it is present. Otherwise,
newlines are left in the string.
String expansion is not applied to the contents of the file. If you want this,
you must wrap the item in an <span class="docbook_option">expand</span> operator. If the file cannot be read,
the string expansion fails.
</p>
<p>
The <span class="docbook_command">redirect</span> router has an option called <span class="docbook_option">forbid_filter_readfile</span> which
locks out the use of this expansion item in filter files.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${readsocket{</span>&lt;<span class="docbook_emphasis">name</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">request</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">timeout</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">eol string</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">fail string</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>



This item inserts data from a Unix domain or Internet socket into the expanded
string. The minimal way of using it uses just two arguments, as in these
examples:
</p>
<div class="docbook_literallayout"><pre>
${readsocket{/socket/name}{request string}}
${readsocket{inet:some.host:1234}{request string}}
</pre></div>
<p>
For a Unix domain socket, the first substring must be the path to the socket.
For an Internet socket, the first substring must contain <code class="docbook_literal">inet:</code> followed by
a host name or IP address, followed by a colon and a port, which can be a
number or the name of a TCP port in <span class="docbook_filename">/etc/services</span>. An IP address may
optionally be enclosed in square brackets. This is best for IPv6 addresses. For
example:
</p>
<div class="docbook_literallayout"><pre>
${readsocket{inet:[::1]:1234}{request string}}
</pre></div>
<p>
Only a single host name may be given, but if looking it up yields more than
one IP address, they are each tried in turn until a connection is made. For
both kinds of socket, Exim makes a connection, writes the request string
(unless it is an empty string) and reads from the socket until an end-of-file
is read. A timeout of 5 seconds is applied. Additional, optional arguments
extend what can be done. Firstly, you can vary the timeout. For example:
</p>
<div class="docbook_literallayout"><pre>
${readsocket{/socket/name}{request string}{3s}}
</pre></div>
<p>
A fourth argument allows you to change any newlines that are in the data
that is read, in the same way as for <span class="docbook_option">readfile</span> (see above). This example
turns them into spaces:
</p>
<div class="docbook_literallayout"><pre>
${readsocket{inet:127.0.0.1:3294}{request string}{3s}{ }}
</pre></div>
<p>
As with all expansions, the substrings are expanded before the processing
happens. Errors in these sub-expansions cause the expansion to fail. In
addition, the following errors can occur:
</p>
<ul>
<li>
<p>
Failure to create a socket file descriptor;
</p>
</li>
<li>
<p>
Failure to connect the socket;
</p>
</li>
<li>
<p>
Failure to write the request string;
</p>
</li>
<li>
<p>
Timeout on reading from the socket.
</p>
</li>
</ul>
<p>
By default, any of these errors causes the expansion to fail. However, if
you supply a fifth substring, it is expanded and used when any of the above
errors occurs. For example:
</p>
<div class="docbook_literallayout"><pre>
${readsocket{/socket/name}{request string}{3s}{\n}\
  {socket failure}}
</pre></div>
<p>
You can test for the existence of a Unix domain socket by wrapping this
expansion in <code class="docbook_literal">${if exists</code>, but there is a race condition between that test
and the actual opening of the socket, so it is safer to use the fifth argument
if you want to be absolutely sure of avoiding an expansion error for a
non-existent Unix domain socket, or a failure to connect to an Internet socket.
</p>
<p>
The <span class="docbook_command">redirect</span> router has an option called <span class="docbook_option">forbid_filter_readsocket</span> which
locks out the use of this expansion item in filter files.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${reduce{</span>&lt;<span class="docbook_emphasis">string1</span>&gt;}{&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string3</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>




This operation reduces a list to a single, scalar string. After expansion,
&lt;<span class="docbook_emphasis">string1</span>&gt; is interpreted as a list, colon-separated by default, but the
separator can be changed in the usual way. Then &lt;<span class="docbook_emphasis">string2</span>&gt; is expanded and
assigned to the $value variable. After this, each item in the &lt;<span class="docbook_emphasis">string1</span>&gt;
list is assigned to $item in turn, and &lt;<span class="docbook_emphasis">string3</span>&gt; is expanded for each of
them. The result of that expansion is assigned to $value before the next
iteration. When the end of the list is reached, the final value of $value is
added to the expansion output. The <span class="docbook_emphasis">reduce</span> expansion item can be used in a
number of ways. For example, to add up a list of numbers:
</p>
<div class="docbook_literallayout"><pre>
${reduce {&lt;, 1,2,3}{0}{${eval:$value+$item}}}
</pre></div>
<p>
The result of that expansion would be <code class="docbook_literal">6</code>. The maximum of a list of numbers
can be found:
</p>
<div class="docbook_literallayout"><pre>
${reduce {3:0:9:4:6}{0}{${if &gt;{$item}{$value}{$item}{$value}}}}
</pre></div>
<p>
At the end of a <span class="docbook_emphasis">reduce</span> expansion, the values of $item and $value are
restored to what they were before. See also the <span class="docbook_emphasis">filter</span> and <span class="docbook_emphasis">map</span>
expansion items.
</p>
</dd>

<dt>
<span class="docbook_emphasis">$rheader_</span>&lt;<span class="docbook_emphasis">header name</span>&gt;<span class="docbook_emphasis">:</span> or <span class="docbook_emphasis">$rh_</span>&lt;<span class="docbook_emphasis">header name</span>&gt;<span class="docbook_emphasis">:</span>
</dt>
<dd>
<p>
This item inserts “raw” header lines. It is described with the <span class="docbook_option">header</span>
expansion item above.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${run{</span>&lt;<span class="docbook_emphasis">command</span>&gt;<span class="docbook_emphasis"> </span>&lt;<span class="docbook_emphasis">args</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>


The command and its arguments are first expanded separately, and then the
command is run in a separate process, but under the same uid and gid. As in
other command executions from Exim, a shell is not used by default. If you want
a shell, you must explicitly code it.
</p>
<p>
The standard input for the command exists, but is empty. The standard output
and standard error are set to the same file descriptor.


If the command succeeds (gives a zero return code) &lt;<span class="docbook_emphasis">string1</span>&gt; is expanded
and replaces the entire item; during this expansion, the standard output/error
from the command is in the variable $value. If the command fails,
&lt;<span class="docbook_emphasis">string2</span>&gt;, if present, is expanded and used. Once again, during the
expansion, the standard output/error from the command is in the variable
$value.
</p>
<p>
If &lt;<span class="docbook_emphasis">string2</span>&gt; is absent, the result is empty. Alternatively, &lt;<span class="docbook_emphasis">string2</span>&gt;
can be the word “fail” (not in braces) to force expansion failure if the
command does not succeed. If both strings are omitted, the result is contents
of the standard output/error on success, and nothing on failure.
</p>
<p>

The return code from the command is put in the variable $runrc, and this
remains set afterwards, so in a filter file you can do things like this:
</p>
<div class="docbook_literallayout"><pre>
if "${run{x y z}{}}$runrc" is 1 then ...
  elif $runrc is 2 then ...
  ...
endif
</pre></div>
<p>
If execution of the command fails (for example, the command does not exist),
the return code is 127 – the same code that shells use for non-existent
commands.
</p>
<p>
<span class="docbook_emphasis">Warning</span>: In a router or transport, you cannot assume the order in which
option values are expanded, except for those preconditions whose order of
testing is documented. Therefore, you cannot reliably expect to set $runrc
by the expansion of one option, and use it in another.
</p>
<p>
The <span class="docbook_command">redirect</span> router has an option called <span class="docbook_option">forbid_filter_run</span> which locks
out the use of this expansion item in filter files.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${sg{</span>&lt;<span class="docbook_emphasis">subject</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">regex</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">replacement</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>


This item works like Perl’s substitution operator (s) with the global (/g)
option; hence its name. However, unlike the Perl equivalent, Exim does not
modify the subject string; instead it returns the modified string for insertion
into the overall expansion. The item takes three arguments: the subject string,
a regular expression, and a substitution string. For example:
</p>
<div class="docbook_literallayout"><pre>
${sg{abcdefabcdef}{abc}{xyz}}
</pre></div>
<p>
yields “xyzdefxyzdef”. Because all three arguments are expanded before use,
if any $ or \ characters are required in the regular expression or in the
substitution string, they have to be escaped. For example:
</p>
<div class="docbook_literallayout"><pre>
${sg{abcdef}{^(...)(...)\$}{\$2\$1}}
</pre></div>
<p>
yields “defabc”, and
</p>
<div class="docbook_literallayout"><pre>
${sg{1=A 4=D 3=C}{\N(\d+)=\N}{K\$1=}}
</pre></div>
<p>
yields “K1=A K4=D K3=C”. Note the use of <code class="docbook_literal">\N</code> to protect the contents of
the regular expression from string expansion.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${substr{</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string3</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>



The three strings are expanded; the first two must yield numbers. Call them
&lt;<span class="docbook_emphasis">n</span>&gt; and &lt;<span class="docbook_emphasis">m</span>&gt;. If you are using fixed values for these numbers, that is,
if &lt;<span class="docbook_emphasis">string1</span>&gt; and &lt;<span class="docbook_emphasis">string2</span>&gt; do not change when they are expanded, you
can use the simpler operator notation that avoids some of the braces:
</p>
<div class="docbook_literallayout"><pre>
${substr_&lt;n&gt;_&lt;m&gt;:&lt;string&gt;}
</pre></div>
<p>
The second number is optional (in both notations).
If it is absent in the simpler format, the preceding underscore must also be
omitted.
</p>
<p>
The <span class="docbook_option">substr</span> item can be used to extract more general substrings than
<span class="docbook_option">length</span>. The first number, &lt;<span class="docbook_emphasis">n</span>&gt;, is a starting offset, and &lt;<span class="docbook_emphasis">m</span>&gt; is the
length required. For example
</p>
<div class="docbook_literallayout"><pre>
${substr{3}{2}{$local_part}}
</pre></div>
<p>
If the starting offset is greater than the string length the result is the
null string; if the length plus starting offset is greater than the string
length, the result is the right-hand part of the string, starting from the
given offset. The first character in the string has offset zero.
</p>
<p>
The <span class="docbook_option">substr</span> expansion item can take negative offset values to count
from the right-hand end of its operand. The last character is offset -1, the
second-last is offset -2, and so on. Thus, for example,
</p>
<div class="docbook_literallayout"><pre>
${substr{-5}{2}{1234567}}
</pre></div>
<p>
yields “34”. If the absolute value of a negative offset is greater than the
length of the string, the substring starts at the beginning of the string, and
the length is reduced by the amount of overshoot. Thus, for example,
</p>
<div class="docbook_literallayout"><pre>
${substr{-5}{2}{12}}
</pre></div>
<p>
yields an empty string, but
</p>
<div class="docbook_literallayout"><pre>
${substr{-3}{2}{12}}
</pre></div>
<p>
yields “1”.
</p>
<p>
When the second number is omitted from <span class="docbook_option">substr</span>, the remainder of the string
is taken if the offset is positive. If it is negative, all characters in the
string preceding the offset point are taken. For example, an offset of -1 and
no length, as in these semantically identical examples:
</p>
<div class="docbook_literallayout"><pre>
${substr_-1:abcde}
${substr{-1}{abcde}}
</pre></div>
<p>
yields all but the last character of the string, that is, “abcd”.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${tr{</span>&lt;<span class="docbook_emphasis">subject</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">characters</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">replacements</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>


This item does single-character translation on its subject string. The second
argument is a list of characters to be translated in the subject string. Each
matching character is replaced by the corresponding character from the
replacement list. For example
</p>
<div class="docbook_literallayout"><pre>
${tr{abcdea}{ac}{13}}
</pre></div>
<p>
yields <code class="docbook_literal">1b3de1</code>. If there are duplicates in the second character string, the
last occurrence is used. If the third string is shorter than the second, its
last character is replicated. However, if it is empty, no translation takes
place.
</p>
</dd>
</dl>
</div>
<div class="section">
<h3 id="SECTexpop" class="">6. Expansion operators</h3>
<p>

For expansion items that perform transformations on a single argument string,
the “operator” notation is used because it is simpler and uses fewer braces.
The substring is first expanded before the operation is applied to it. The
following operations can be performed:
</p>
<dl>

<dt>
<span class="docbook_emphasis">${address:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


The string is interpreted as an RFC 2822 address, as it might appear in a
header line, and the effective address is extracted from it. If the string does
not parse successfully, the result is empty.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${addresses:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


The string (after expansion) is interpreted as a list of addresses in RFC
2822 format, such as can be found in a <span class="docbook_emphasis">To:</span> or <span class="docbook_emphasis">Cc:</span> header line. The
operative address (<span class="docbook_emphasis">local-part@domain</span>) is extracted from each item, and the
result of the expansion is a colon-separated list, with appropriate
doubling of colons should any happen to be present in the email addresses.
Syntactically invalid RFC2822 address items are omitted from the output.
</p>
<p>
It is possible to specify a character other than colon for the output
separator by starting the string with &gt; followed by the new separator
character. For example:
</p>
<div class="docbook_literallayout"><pre>
${addresses:&gt;&amp; Chief &lt;ceo@up.stairs&gt;, sec@base.ment (dogsbody)}
</pre></div>
<p>
expands to <code class="docbook_literal">ceo@up.stairs&amp;sec@base.ment</code>. Compare the <span class="docbook_emphasis">address</span> (singular)
expansion item, which extracts the working address from a single RFC2822
address. See the <span class="docbook_emphasis">filter</span>, <span class="docbook_emphasis">map</span>, and <span class="docbook_emphasis">reduce</span> items for ways of
processing lists.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${base62:</span>&lt;<span class="docbook_emphasis">digits</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


The string must consist entirely of decimal digits. The number is converted to
base 62 and output as a string of six characters, including leading zeros. In
the few operating environments where Exim uses base 36 instead of base 62 for
its message identifiers (because those systems do not have case-sensitive file
names), base 36 is used by this operator, despite its name. <span class="docbook_emphasis">Note</span>: Just to
be absolutely clear: this is <span class="docbook_emphasis">not</span> base64 encoding.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${base62d:</span>&lt;<span class="docbook_emphasis">base-62 digits</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


The string must consist entirely of base-62 digits, or, in operating
environments where Exim uses base 36 instead of base 62 for its message
identifiers, base-36 digits. The number is converted to decimal and output as a
string.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${domain:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


The string is interpreted as an RFC 2822 address and the domain is extracted
from it. If the string does not parse successfully, the result is empty.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${escape:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


If the string contains any non-printing characters, they are converted to
escape sequences starting with a backslash. Whether characters with the most
significant bit set (so-called “8-bit characters”) count as printing or not
is controlled by the <span class="docbook_option">print_topbitchars</span> option.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${eval:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span> and <span class="docbook_emphasis">${eval10:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



These items supports simple arithmetic and bitwise logical operations in
expansion strings. The string (after expansion) must be a conventional
arithmetic expression, but it is limited to basic arithmetic operators, bitwise
logical operators, and parentheses. All operations are carried out using
integer arithmetic. The operator priorities are as follows (the same as in the
C programming language):
</p>
<table>




<tr>
<td>    <span class="docbook_emphasis">highest:</span>
</td>
<td>not (~), negate (-)</td>
</tr>
<tr>
<td>    </td>
<td>multiply (*), divide (/), remainder (%)</td>
</tr>
<tr>
<td>    </td>
<td>plus (+), minus (-)</td>
</tr>
<tr>
<td>    </td>
<td>shift-left (&lt;&lt;), shift-right (&gt;&gt;)</td>
</tr>
<tr>
<td>    </td>
<td>and (&amp;)</td>
</tr>
<tr>
<td>    </td>
<td>xor (^)</td>
</tr>
<tr>
<td>    <span class="docbook_emphasis">lowest:</span>
</td>
<td>or (|)</td>
</tr>


</table>
<p>
Binary operators with the same priority are evaluated from left to right. White
space is permitted before or after operators.
</p>
<p>
For <span class="docbook_option">eval</span>, numbers may be decimal, octal (starting with “0”) or
hexadecimal (starting with “0x”). For <span class="docbook_option">eval10</span>, all numbers are taken as
decimal, even if they start with a leading zero; hexadecimal numbers are not
permitted. This can be useful when processing numbers extracted from dates or
times, which often do have leading zeros.
</p>
<p>
A number may be followed by “K” or “M” to multiply it by 1024 or 1024*1024,
respectively. Negative numbers are supported. The result of the computation is
a decimal representation of the answer (without “K” or “M”). For example:
</p>
<div class="docbook_literallayout"><pre>
<code class="docbook_literal">${eval:1+1}            </code>  yields 2
<code class="docbook_literal">${eval:1+2*3}          </code>  yields 7
<code class="docbook_literal">${eval:(1+2)*3}        </code>  yields 9
<code class="docbook_literal">${eval:2+42%5}         </code>  yields 4
<code class="docbook_literal">${eval:0xc&amp;5}          </code>  yields 4
<code class="docbook_literal">${eval:0xc|5}          </code>  yields 13
<code class="docbook_literal">${eval:0xc^5}          </code>  yields 9
<code class="docbook_literal">${eval:0xc&gt;&gt;1}         </code>  yields 6
<code class="docbook_literal">${eval:0xc&lt;&lt;1}         </code>  yields 24
<code class="docbook_literal">${eval:~255&amp;0x1234}    </code>  yields 4608
<code class="docbook_literal">${eval:-(~255&amp;0x1234)} </code>  yields -4608
</pre></div>
<p>
As a more realistic example, in an ACL you might have
</p>
<div class="docbook_literallayout"><pre>
deny   message = Too many bad recipients
       condition =                    \
         ${if and {                   \
           {&gt;{$rcpt_count}{10}}       \
           {                          \
           &lt;                          \
             {$recipients_count}      \
             {${eval:$rcpt_count/2}}  \
           }                          \
         }{yes}{no}}
</pre></div>
<p>
The condition is true if there have been more than 10 RCPT commands and
fewer than half of them have resulted in a valid recipient.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${expand:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>

The <span class="docbook_option">expand</span> operator causes a string to be expanded for a second time. For
example,
</p>
<div class="docbook_literallayout"><pre>
${expand:${lookup{$domain}dbm{/some/file}{$value}}}
</pre></div>
<p>
first looks up a string in a file while expanding the operand for <span class="docbook_option">expand</span>,
and then re-expands what it has found.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${from_utf8:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>




The world is slowly moving towards Unicode, although there are no standards for
email yet. However, other applications (including some databases) are starting
to store data in Unicode, using UTF-8 encoding. This operator converts from a
UTF-8 string to an ISO-8859-1 string. UTF-8 code values greater than 255 are
converted to underscores. The input must be a valid UTF-8 string. If it is not,
the result is an undefined sequence of bytes.
</p>
<p>
Unicode code points with values less than 256 are compatible with ASCII and
ISO-8859-1 (also known as Latin-1).
For example, character 169 is the copyright symbol in both cases, though the
way it is encoded is different. In UTF-8, more than one byte is needed for
characters with code values greater than 127, whereas ISO-8859-1 is a
single-byte encoding (but thereby limited to 256 characters). This makes
translation from UTF-8 to ISO-8859-1 straightforward.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${hash_</span>&lt;<span class="docbook_emphasis">n</span>&gt;<span class="docbook_emphasis">_</span>&lt;<span class="docbook_emphasis">m</span>&gt;<span class="docbook_emphasis">:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


The <span class="docbook_option">hash</span> operator is a simpler interface to the hashing function that can
be used when the two parameters are fixed numbers (as opposed to strings that
change when expanded). The effect is the same as
</p>
<div class="docbook_literallayout"><pre>
${hash{&lt;n&gt;}{&lt;m&gt;}{&lt;string&gt;}}
</pre></div>
<p>
See the description of the general <span class="docbook_option">hash</span> item above for details. The
abbreviation <span class="docbook_option">h</span> can be used when <span class="docbook_option">hash</span> is used as an operator.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${hex2b64:</span>&lt;<span class="docbook_emphasis">hexstring</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



This operator converts a hex string into one that is base64 encoded. This can
be useful for processing the output of the MD5 and SHA-1 hashing functions.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${lc:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>





This forces the letters in the string into lower-case, for example:
</p>
<div class="docbook_literallayout"><pre>
${lc:$local_part}
</pre></div>
</dd>

<dt>
<span class="docbook_emphasis">${length_</span>&lt;<span class="docbook_emphasis">number</span>&gt;<span class="docbook_emphasis">:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


The <span class="docbook_option">length</span> operator is a simpler interface to the <span class="docbook_option">length</span> function that
can be used when the parameter is a fixed number (as opposed to a string that
changes when expanded). The effect is the same as
</p>
<div class="docbook_literallayout"><pre>
${length{&lt;number&gt;}{&lt;string&gt;}}
</pre></div>
<p>
See the description of the general <span class="docbook_option">length</span> item above for details. Note that
<span class="docbook_option">length</span> is not the same as <span class="docbook_option">strlen</span>. The abbreviation <span class="docbook_option">l</span> can be used
when <span class="docbook_option">length</span> is used as an operator.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${local_part:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


The string is interpreted as an RFC 2822 address and the local part is
extracted from it. If the string does not parse successfully, the result is
empty.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${mask:</span>&lt;<span class="docbook_emphasis">IP address</span>&gt;<span class="docbook_emphasis">/</span>&lt;<span class="docbook_emphasis">bit count</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>





If the form of the string to be operated on is not an IP address followed by a
slash and an integer (that is, a network address in CIDR notation), the
expansion fails. Otherwise, this operator converts the IP address to binary,
masks off the least significant bits according to the bit count, and converts
the result back to text, with mask appended. For example,
</p>
<div class="docbook_literallayout"><pre>
${mask:10.111.131.206/28}
</pre></div>
<p>
returns the string “10.111.131.192/28”. Since this operation is expected to
be mostly used for looking up masked addresses in files, the result for an IPv6
address uses dots to separate components instead of colons, because colon
terminates a key string in lsearch files. So, for example,
</p>
<div class="docbook_literallayout"><pre>
${mask:3ffe:ffff:836f:0a00:000a:0800:200a:c031/99}
</pre></div>
<p>
returns the string
</p>
<div class="docbook_literallayout"><pre>
3ffe.ffff.836f.0a00.000a.0800.2000.0000/99
</pre></div>
<p>
Letters in IPv6 addresses are always output in lower case.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${md5:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



The <span class="docbook_option">md5</span> operator computes the MD5 hash value of the string, and returns it
as a 32-digit hexadecimal number, in which any letters are in lower case.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${nhash_</span>&lt;<span class="docbook_emphasis">n</span>&gt;<span class="docbook_emphasis">_</span>&lt;<span class="docbook_emphasis">m</span>&gt;<span class="docbook_emphasis">:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


The <span class="docbook_option">nhash</span> operator is a simpler interface to the numeric hashing function
that can be used when the two parameters are fixed numbers (as opposed to
strings that change when expanded). The effect is the same as
</p>
<div class="docbook_literallayout"><pre>
${nhash{&lt;n&gt;}{&lt;m&gt;}{&lt;string&gt;}}
</pre></div>
<p>
See the description of the general <span class="docbook_option">nhash</span> item above for details.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${quote:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



The <span class="docbook_option">quote</span> operator puts its argument into double quotes if it
is an empty string or
contains anything other than letters, digits, underscores, dots, and hyphens.
Any occurrences of double quotes and backslashes are escaped with a backslash.
Newlines and carriage returns are converted to <code class="docbook_literal">\n</code> and <code class="docbook_literal">\r</code>,
respectively For example,
</p>
<div class="docbook_literallayout"><pre>
${quote:ab"*"cd}
</pre></div>
<p>
becomes
</p>
<div class="docbook_literallayout"><pre>
"ab\"*\"cd"
</pre></div>
<p>
The place where this is useful is when the argument is a substitution from a
variable or a message header.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${quote_local_part:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>

This operator is like <span class="docbook_option">quote</span>, except that it quotes the string only if
required to do so by the rules of RFC 2822 for quoting local parts. For
example, a plus sign would not cause quoting (but it would for <span class="docbook_option">quote</span>).
If you are creating a new email address from the contents of $local_part
(or any other unknown data), you should always use this operator.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${quote_</span>&lt;<span class="docbook_emphasis">lookup-type</span>&gt;<span class="docbook_emphasis">:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>

This operator applies lookup-specific quoting rules to the string. Each
query-style lookup type has its own quoting rules which are described with
the lookups in chapter <a href="ch09.html" title="9. File and database lookups">9</a>. For example,
</p>
<div class="docbook_literallayout"><pre>
${quote_ldap:two * two}
</pre></div>
<p>
returns
</p>
<div class="docbook_literallayout"><pre>
two%20%5C2A%20two
</pre></div>
<p>
For single-key lookup types, no quoting is ever necessary and this operator
yields an unchanged string.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${randint:</span>&lt;<span class="docbook_emphasis">n</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>

This operator returns a somewhat random number which is less than the
supplied number and is at least 0.  The quality of this randomness depends
on how Exim was built; the values are not suitable for keying material.
If Exim is linked against OpenSSL then RAND_pseudo_bytes() is used.
Otherwise, the implementation may be arc4random(), random() seeded by
srandomdev() or srandom(), or a custom implementation even weaker than
random().
</p>
</dd>

<dt>
<span class="docbook_emphasis">${reverse_ip:</span>&lt;<span class="docbook_emphasis">ipaddr</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>

This operator reverses an IP address; for IPv4 addresses, the result is in
dotted-quad decimal form, while for IPv6 addreses the result is in
dotted-nibble hexadecimal form.  In both cases, this is the "natural" form
for DNS.  For example,
</p>
<div class="docbook_literallayout"><pre>
${reverse_ip:192.0.2.4} and ${reverse_ip:2001:0db8:c42:9:1:abcd:192.0.2.3}
</pre></div>
<p>
returns
</p>
<div class="docbook_literallayout"><pre>
4.2.0.192 and 3.0.2.0.0.0.0.c.d.c.b.a.1.0.0.0.9.0.0.0.2.4.c.0.8.b.d.0.1.0.0.2
</pre></div>
</dd>

<dt>
<span class="docbook_emphasis">${rfc2047:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



This operator encodes text according to the rules of RFC 2047. This is an
encoding that is used in header lines to encode non-ASCII characters. It is
assumed that the input string is in the encoding specified by the
<span class="docbook_option">headers_charset</span> option, which defaults to ISO-8859-1. If the string
contains only characters in the range 33–126, and no instances of the
characters
</p>
<div class="docbook_literallayout"><pre>
? = ( ) &lt; &gt; @ , ; : \ " . [ ] _
</pre></div>
<p>
it is not modified. Otherwise, the result is the RFC 2047 encoding of the
string, using as many “encoded words” as necessary to encode all the
characters.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${rfc2047d:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



This operator decodes strings that are encoded as per RFC 2047. Binary zero
bytes are replaced by question marks. Characters are converted into the
character set defined by <span class="docbook_option">headers_charset</span>. Overlong RFC 2047 “words” are
not recognized unless <span class="docbook_option">check_rfc2047_length</span> is set false.
</p>
<p>
<span class="docbook_emphasis">Note</span>: If you use <span class="docbook_option">$header</span>_<span class="docbook_emphasis">xxx</span><span class="docbook_emphasis">:</span> (or <span class="docbook_option">$h</span>_<span class="docbook_emphasis">xxx</span><span class="docbook_emphasis">:</span>) to
access a header line, RFC 2047 decoding is done automatically. You do not need
to use this operator as well.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${rxquote:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



The <span class="docbook_option">rxquote</span> operator inserts a backslash before any non-alphanumeric
characters in its argument. This is useful when substituting the values of
variables or headers inside regular expressions.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${sha1:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



The <span class="docbook_option">sha1</span> operator computes the SHA-1 hash value of the string, and returns
it as a 40-digit hexadecimal number, in which any letters are in upper case.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${stat:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



The string, after expansion, must be a file path. A call to the <span class="docbook_function">stat()</span>
function is made for this path. If <span class="docbook_function">stat()</span> fails, an error occurs and the
expansion fails. If it succeeds, the data from the stat replaces the item, as a
series of &lt;<span class="docbook_emphasis">name</span>&gt;=&lt;<span class="docbook_emphasis">value</span>&gt; pairs, where the values are all numerical,
except for the value of “smode”. The names are: “mode” (giving the mode as
a 4-digit octal number), “smode” (giving the mode in symbolic format as a
10-character string, as for the <span class="docbook_emphasis">ls</span> command), “inode”, “device”,
“links”, “uid”, “gid”, “size”, “atime”, “mtime”, and “ctime”. You
can extract individual fields using the <span class="docbook_option">extract</span> expansion item.
</p>
<p>
The use of the <span class="docbook_option">stat</span> expansion in users’ filter files can be locked out by
the system administrator. <span class="docbook_emphasis">Warning</span>: The file size may be incorrect on 32-bit
systems for files larger than 2GB.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${str2b64:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



This operator converts a string into one that is base64 encoded.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${strlen:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



The item is replace by the length of the expanded string, expressed as a
decimal number. <span class="docbook_emphasis">Note</span>: Do not confuse <span class="docbook_option">strlen</span> with <span class="docbook_option">length</span>.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${substr_</span>&lt;<span class="docbook_emphasis">start</span>&gt;<span class="docbook_emphasis">_</span>&lt;<span class="docbook_emphasis">length</span>&gt;<span class="docbook_emphasis">:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



The <span class="docbook_option">substr</span> operator is a simpler interface to the <span class="docbook_option">substr</span> function that
can be used when the two parameters are fixed numbers (as opposed to strings
that change when expanded). The effect is the same as
</p>
<div class="docbook_literallayout"><pre>
${substr{&lt;start&gt;}{&lt;length&gt;}{&lt;string&gt;}}
</pre></div>
<p>
See the description of the general <span class="docbook_option">substr</span> item above for details. The
abbreviation <span class="docbook_option">s</span> can be used when <span class="docbook_option">substr</span> is used as an operator.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${time_eval:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


This item converts an Exim time interval such as <code class="docbook_literal">2d4h5m</code> into a number of
seconds.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${time_interval:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


The argument (after sub-expansion) must be a sequence of decimal digits that
represents an interval of time as a number of seconds. It is converted into a
number of larger units and output in Exim’s normal time format, for example,
<code class="docbook_literal">1w3d4h2m6s</code>.
</p>
</dd>

<dt>
<span class="docbook_emphasis">${uc:</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>





This forces the letters in the string into upper-case.
</p>
</dd>
</dl>
</div>
<div class="section">
<h3 id="SECTexpcond" class="">7. Expansion conditions</h3>
<p>

The following conditions are available for testing by the <span class="docbook_option">${if</span> construct
while expanding strings:
</p>
<dl>

<dt>
<span class="docbook_emphasis">!</span>&lt;<span class="docbook_emphasis">condition</span>&gt;</dt>
<dd>
<p>


Preceding any condition with an exclamation mark negates the result of the
condition.
</p>
</dd>

<dt>&lt;<span class="docbook_emphasis">symbolic operator</span>&gt; <span class="docbook_emphasis">{</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


There are a number of symbolic operators for doing numeric comparisons. They
are:
</p>
<div class="docbook_literallayout"><pre>
<code class="docbook_literal">=   </code>   equal
<code class="docbook_literal">==  </code>   equal
<code class="docbook_literal">&gt;   </code>   greater
<code class="docbook_literal">&gt;=  </code>   greater or equal
<code class="docbook_literal">&lt;   </code>   less
<code class="docbook_literal">&lt;=  </code>   less or equal
</pre></div>
<p>
For example:
</p>
<div class="docbook_literallayout"><pre>
${if &gt;{$message_size}{10M} ...
</pre></div>
<p>
Note that the general negation operator provides for inequality testing. The
two strings must take the form of optionally signed decimal integers,
optionally followed by one of the letters “K” or “M” (in either upper or
lower case), signifying multiplication by 1024 or 1024*1024, respectively.
As a special case, the numerical value of an empty string is taken as
zero.
</p>
</dd>

<dt>
<span class="docbook_emphasis">bool {</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


This condition turns a string holding a true or false representation into
a boolean state.  It parses “true”, “false”, “yes” and “no”
(case-insensitively); also positive integer numbers map to true if non-zero,
false if zero.  Leading and trailing whitespace is ignored.
All other string values will result in expansion failure.
</p>
<p>
When combined with ACL variables, this expansion condition will let you
make decisions in one place and act on those decisions in another place.
For example:
</p>
<div class="docbook_literallayout"><pre>
${if bool{$acl_m_privileged_sender} ...
</pre></div>
</dd>

<dt>
<span class="docbook_emphasis">bool_lax {</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>


Like <span class="docbook_option">bool</span>, this condition turns a string into a boolean state.  But
where <span class="docbook_option">bool</span> accepts a strict set of strings, <span class="docbook_option">bool_lax</span> uses the same
loose definition that the Router <span class="docbook_option">condition</span> option uses.  The empty string
and the values “false”, “no” and “0” map to false, all others map to
true.  Leading and trailing whitespace is ignored.
</p>
<p>
Note that where “bool{00}” is false, “bool_lax{00}” is true.
</p>
</dd>

<dt>
<span class="docbook_emphasis">crypteq {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



This condition is included in the Exim binary if it is built to support any
authentication mechanisms (see chapter <a href="ch33.html" title="33. SMTP authentication">33</a>). Otherwise, it is
necessary to define SUPPORT_CRYPTEQ in <span class="docbook_filename">Local/Makefile</span> to get <span class="docbook_option">crypteq</span>
included in the binary.
</p>
<p>
The <span class="docbook_option">crypteq</span> condition has two arguments. The first is encrypted and
compared against the second, which is already encrypted. The second string may
be in the LDAP form for storing encrypted strings, which starts with the
encryption type in curly brackets, followed by the data. If the second string
does not begin with “{” it is assumed to be encrypted with <span class="docbook_function">crypt()</span> or
<span class="docbook_function">crypt16()</span> (see below), since such strings cannot begin with “{”.
Typically this will be a field from a password file. An example of an encrypted
string in LDAP form is:
</p>
<div class="docbook_literallayout"><pre>
{md5}CY9rzUYh03PK3k6DJie09g==
</pre></div>
<p>
If such a string appears directly in an expansion, the curly brackets have to
be quoted, because they are part of the expansion syntax. For example:
</p>
<div class="docbook_literallayout"><pre>
${if crypteq {test}{\{md5\}CY9rzUYh03PK3k6DJie09g==}{yes}{no}}
</pre></div>
<p>
The following encryption types (whose names are matched case-independently) are
supported:
</p>
<ul>
<li>
<p>


<span class="docbook_option">{md5}</span> computes the MD5 digest of the first string, and expresses this as
printable characters to compare with the remainder of the second string. If the
length of the comparison string is 24, Exim assumes that it is base64 encoded
(as in the above example). If the length is 32, Exim assumes that it is a
hexadecimal encoding of the MD5 digest. If the length not 24 or 32, the
comparison fails.
</p>
</li>
<li>
<p>

<span class="docbook_option">{sha1}</span> computes the SHA-1 digest of the first string, and expresses this as
printable characters to compare with the remainder of the second string. If the
length of the comparison string is 28, Exim assumes that it is base64 encoded.
If the length is 40, Exim assumes that it is a hexadecimal encoding of the
SHA-1 digest. If the length is not 28 or 40, the comparison fails.
</p>
</li>
<li>
<p>

<span class="docbook_option">{crypt}</span> calls the <span class="docbook_function">crypt()</span> function, which traditionally used to use
only the first eight characters of the password. However, in modern operating
systems this is no longer true, and in many cases the entire password is used,
whatever its length.
</p>
</li>
<li>
<p>

<span class="docbook_option">{crypt16}</span> calls the <span class="docbook_function">crypt16()</span> function, which was originally created to
use up to 16 characters of the password in some operating systems. Again, in
modern operating systems, more characters may be used.
</p>
</li>
</ul>
<p>
Exim has its own version of <span class="docbook_function">crypt16()</span>, which is just a double call to
<span class="docbook_function">crypt()</span>. For operating systems that have their own version, setting
HAVE_CRYPT16 in <span class="docbook_filename">Local/Makefile</span> when building Exim causes it to use the
operating system version instead of its own. This option is set by default in
the OS-dependent <span class="docbook_filename">Makefile</span> for those operating systems that are known to
support <span class="docbook_function">crypt16()</span>.
</p>
<p>
Some years after Exim’s <span class="docbook_function">crypt16()</span> was implemented, a user discovered that
it was not using the same algorithm as some operating systems’ versions. It
turns out that as well as <span class="docbook_function">crypt16()</span> there is a function called
<span class="docbook_function">bigcrypt()</span> in some operating systems. This may or may not use the same
algorithm, and both of them may be different to Exim’s built-in <span class="docbook_function">crypt16()</span>.
</p>
<p>
However, since there is now a move away from the traditional <span class="docbook_function">crypt()</span>
functions towards using SHA1 and other algorithms, tidying up this area of
Exim is seen as very low priority.
</p>
<p>
If you do not put a encryption type (in curly brackets) in a <span class="docbook_option">crypteq</span>
comparison, the default is usually either <code class="docbook_literal">{crypt}</code> or <code class="docbook_literal">{crypt16}</code>, as
determined by the setting of DEFAULT_CRYPT in <span class="docbook_filename">Local/Makefile</span>. The default
default is <code class="docbook_literal">{crypt}</code>. Whatever the default, you can always use either
function by specifying it explicitly in curly brackets.
</p>
</dd>

<dt>
<span class="docbook_emphasis">def:</span>&lt;<span class="docbook_emphasis">variable name</span>&gt;</dt>
<dd>
<p>


The <span class="docbook_option">def</span> condition must be followed by the name of one of the expansion
variables defined in section <a href="ch11.html#SECTexpvar" title="11. String expansions">11.9</a>. The condition is true if the
variable does not contain the empty string. For example:
</p>
<div class="docbook_literallayout"><pre>
${if def:sender_ident {from $sender_ident}}
</pre></div>
<p>
Note that the variable name is given without a leading <span class="docbook_option">$</span> character. If the
variable does not exist, the expansion fails.
</p>
</dd>

<dt>
<span class="docbook_emphasis">def:header_</span>&lt;<span class="docbook_emphasis">header name</span>&gt;<span class="docbook_emphasis">:</span>  or  <span class="docbook_emphasis">def:h_</span>&lt;<span class="docbook_emphasis">header name</span>&gt;<span class="docbook_emphasis">:</span>
</dt>
<dd>
<p>

This condition is true if a message is being processed and the named header
exists in the message. For example,
</p>
<div class="docbook_literallayout"><pre>
${if def:header_reply-to:{$h_reply-to:}{$h_from:}}
</pre></div>
<p>
<span class="docbook_emphasis">Note</span>: No <span class="docbook_option">$</span> appears before <span class="docbook_option">header_</span> or <span class="docbook_option">h_</span> in the condition, and
the header name must be terminated by a colon if white space does not follow.
</p>
</dd>

<dt>
<span class="docbook_emphasis">eq {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dt>
<span class="docbook_emphasis">eqi {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>




The two substrings are first expanded. The condition is true if the two
resulting strings are identical. For <span class="docbook_option">eq</span> the comparison includes the case of
letters, whereas for <span class="docbook_option">eqi</span> the comparison is case-independent.
</p>
</dd>

<dt>
<span class="docbook_emphasis">exists {</span>&lt;<span class="docbook_emphasis">file name</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



The substring is first expanded and then interpreted as an absolute path. The
condition is true if the named file (or directory) exists. The existence test
is done by calling the <span class="docbook_function">stat()</span> function. The use of the <span class="docbook_option">exists</span> test in
users’ filter files may be locked out by the system administrator.
</p>
</dd>

<dt><span class="docbook_emphasis">first_delivery</span></dt>
<dd>
<p>




This condition, which has no data, is true during a message’s first delivery
attempt. It is false during any subsequent delivery attempts.
</p>
</dd>

<dt>
<span class="docbook_emphasis">forall{</span>&lt;<span class="docbook_emphasis">a list</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">a condition</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dt>
<span class="docbook_emphasis">forany{</span>&lt;<span class="docbook_emphasis">a list</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">a condition</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>




These conditions iterate over a list. The first argument is expanded to form
the list. By default, the list separator is a colon, but it can be changed by
the normal method. The second argument is interpreted as a condition that is to
be applied to each item in the list in turn. During the interpretation of the
condition, the current list item is placed in a variable called $item.
</p>
<ul>
<li>
<p>
For <span class="docbook_emphasis">forany</span>, interpretation stops if the condition is true for any item, and
the result of the whole condition is true. If the condition is false for all
items in the list, the overall condition is false.
</p>
</li>
<li>
<p>
For <span class="docbook_emphasis">forall</span>, interpretation stops if the condition is false for any item,
and the result of the whole condition is false. If the condition is true for
all items in the list, the overall condition is true.
</p>
</li>
</ul>
<p>
Note that negation of <span class="docbook_emphasis">forany</span> means that the condition must be false for all
items for the overall condition to succeed, and negation of <span class="docbook_emphasis">forall</span> means
that the condition must be false for at least one item. In this example, the
list separator is changed to a comma:
</p>
<div class="docbook_literallayout"><pre>
${if forany{&lt;, $recipients}{match{$item}{^user3@}}{yes}{no}}
</pre></div>
<p>
The value of $item is saved and restored while <span class="docbook_emphasis">forany</span> or <span class="docbook_emphasis">forall</span> is
being processed, to enable these expansion items to be nested.
</p>
</dd>

<dt>
<span class="docbook_emphasis">ge {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dt>
<span class="docbook_emphasis">gei {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>




The two substrings are first expanded. The condition is true if the first
string is lexically greater than or equal to the second string. For <span class="docbook_option">ge</span> the
comparison includes the case of letters, whereas for <span class="docbook_option">gei</span> the comparison is
case-independent.
</p>
</dd>

<dt>
<span class="docbook_emphasis">gt {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dt>
<span class="docbook_emphasis">gti {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>




The two substrings are first expanded. The condition is true if the first
string is lexically greater than the second string. For <span class="docbook_option">gt</span> the comparison
includes the case of letters, whereas for <span class="docbook_option">gti</span> the comparison is
case-independent.
</p>
</dd>

<dt>
<span class="docbook_emphasis">isip {</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dt>
<span class="docbook_emphasis">isip4 {</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dt>
<span class="docbook_emphasis">isip6 {</span>&lt;<span class="docbook_emphasis">string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>





The substring is first expanded, and then tested to see if it has the form of
an IP address. Both IPv4 and IPv6 addresses are valid for <span class="docbook_option">isip</span>, whereas
<span class="docbook_option">isip4</span> and <span class="docbook_option">isip6</span> test specifically for IPv4 or IPv6 addresses.
</p>
<p>
For an IPv4 address, the test is for four dot-separated components, each of
which consists of from one to three digits. For an IPv6 address, up to eight
colon-separated components are permitted, each containing from one to four
hexadecimal digits. There may be fewer than eight components if an empty
component (adjacent colons) is present. Only one empty component is permitted.
</p>
<p>
<span class="docbook_emphasis">Note</span>: The checks are just on the form of the address; actual numerical
values are not considered. Thus, for example, 999.999.999.999 passes the IPv4
check. The main use of these tests is to distinguish between IP addresses and
host names, or between IPv4 and IPv6 addresses. For example, you could use
</p>
<div class="docbook_literallayout"><pre>
${if isip4{$sender_host_address}...
</pre></div>
<p>
to test which IP version an incoming SMTP connection is using.
</p>
</dd>

<dt>
<span class="docbook_emphasis">ldapauth {</span>&lt;<span class="docbook_emphasis">ldap query</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



This condition supports user authentication using LDAP. See section
<a href="ch09.html#SECTldap" title="9. File and database lookups">9.13</a> for details of how to use LDAP in lookups and the syntax of
queries. For this use, the query must contain a user name and password. The
query itself is not used, and can be empty. The condition is true if the
password is not empty, and the user name and password are accepted by the LDAP
server. An empty password is rejected without calling LDAP because LDAP binds
with an empty password are considered anonymous regardless of the username, and
will succeed in most configurations. See chapter <a href="ch33.html" title="33. SMTP authentication">33</a> for details
of SMTP authentication, and chapter <a href="ch34.html" title="34. The plaintext authenticator">34</a> for an example of how
this can be used.
</p>
</dd>

<dt>
<span class="docbook_emphasis">le {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dt>
<span class="docbook_emphasis">lei {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>




The two substrings are first expanded. The condition is true if the first
string is lexically less than or equal to the second string. For <span class="docbook_option">le</span> the
comparison includes the case of letters, whereas for <span class="docbook_option">lei</span> the comparison is
case-independent.
</p>
</dd>

<dt>
<span class="docbook_emphasis">lt {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dt>
<span class="docbook_emphasis">lti {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>




The two substrings are first expanded. The condition is true if the first
string is lexically less than the second string. For <span class="docbook_option">lt</span> the comparison
includes the case of letters, whereas for <span class="docbook_option">lti</span> the comparison is
case-independent.
</p>
</dd>

<dt>
<span class="docbook_emphasis">match {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



The two substrings are first expanded. The second is then treated as a regular
expression and applied to the first. Because of the pre-expansion, if the
regular expression contains dollar, or backslash characters, they must be
escaped. Care must also be taken if the regular expression contains braces
(curly brackets). A closing brace must be escaped so that it is not taken as a
premature termination of &lt;<span class="docbook_emphasis">string2</span>&gt;. The easiest approach is to use the
<code class="docbook_literal">\N</code> feature to disable expansion of the regular expression.
For example,
</p>
<div class="docbook_literallayout"><pre>
${if match {$local_part}{\N^\d{3}\N} ...
</pre></div>
<p>
If the whole expansion string is in double quotes, further escaping of
backslashes is also required.
</p>
<p>
The condition is true if the regular expression match succeeds.
The regular expression is not required to begin with a circumflex
metacharacter, but if there is no circumflex, the expression is not anchored,
and it may match anywhere in the subject, not just at the start. If you want
the pattern to match at the end of the subject, you must include the <code class="docbook_literal">$</code>
metacharacter at an appropriate point.
</p>
<p>

At the start of an <span class="docbook_option">if</span> expansion the values of the numeric variable
substitutions $1 etc. are remembered. Obeying a <span class="docbook_option">match</span> condition that
succeeds causes them to be reset to the substrings of that condition and they
will have these values during the expansion of the success string. At the end
of the <span class="docbook_option">if</span> expansion, the previous values are restored. After testing a
combination of conditions using <span class="docbook_option">or</span>, the subsequent values of the numeric
variables are those of the condition that succeeded.
</p>
</dd>

<dt>
<span class="docbook_emphasis">match_address {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>

See <span class="docbook_emphasis">match_local_part</span>.
</p>
</dd>

<dt>
<span class="docbook_emphasis">match_domain {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>

See <span class="docbook_emphasis">match_local_part</span>.
</p>
</dd>

<dt>
<span class="docbook_emphasis">match_ip {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>

This condition matches an IP address to a list of IP address patterns. It must
be followed by two argument strings. The first (after expansion) must be an IP
address or an empty string. The second (after expansion) is a restricted host
list that can match only an IP address, not a host name. For example:
</p>
<div class="docbook_literallayout"><pre>
${if match_ip{$sender_host_address}{1.2.3.4:5.6.7.8}{...}{...}}
</pre></div>
<p>
The specific types of host list item that are permitted in the list are:
</p>
<ul>
<li>
<p>
An IP address, optionally with a CIDR mask.
</p>
</li>
<li>
<p>
A single asterisk, which matches any IP address.
</p>
</li>
<li>
<p>
An empty item, which matches only if the IP address is empty. This could be
useful for testing for a locally submitted message or one from specific hosts
in a single test such as
</p>
<div class="docbook_literallayout"><pre>
  ${if match_ip{$sender_host_address}{:4.3.2.1:...}{...}{...}}
</pre></div>
<p>
where the first item in the list is the empty string.
</p>
</li>
<li>
<p>
The item @[] matches any of the local host’s interface addresses.
</p>
</li>
<li>
<p>
Single-key lookups are assumed to be like “net-” style lookups in host lists,
even if <code class="docbook_literal">net-</code> is not specified. There is never any attempt to turn the IP
address into a host name. The most common type of linear search for
<span class="docbook_emphasis">match_ip</span> is likely to be <span class="docbook_emphasis">iplsearch</span>, in which the file can contain CIDR
masks. For example:
</p>
<div class="docbook_literallayout"><pre>
  ${if match_ip{$sender_host_address}{iplsearch;/some/file}...
</pre></div>
<p>
It is of course possible to use other kinds of lookup, and in such a case, you
do need to specify the <code class="docbook_literal">net-</code> prefix if you want to specify a specific
address mask, for example:
</p>
<div class="docbook_literallayout"><pre>
  ${if match_ip{$sender_host_address}{net24-dbm;/some/file}...
</pre></div>
<p>
However, unless you are combining a <span class="docbook_option">match_ip</span> condition with others, it is
just as easy to use the fact that a lookup is itself a condition, and write:
</p>
<div class="docbook_literallayout"><pre>
  ${lookup{${mask:$sender_host_address/24}}dbm{/a/file}...
</pre></div>
</li>
</ul>
<p>
Consult section <a href="ch10.html#SECThoslispatip" title="10. Domain, host, address, and local part lists">10.11</a> for further details of these patterns.
</p>
</dd>

<dt>
<span class="docbook_emphasis">match_local_part {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>




This condition, together with <span class="docbook_option">match_address</span> and <span class="docbook_option">match_domain</span>, make it
possible to test domain, address, and local part lists within expansions. Each
condition requires two arguments: an item and a list to match. A trivial
example is:
</p>
<div class="docbook_literallayout"><pre>
${if match_domain{a.b.c}{x.y.z:a.b.c:p.q.r}{yes}{no}}
</pre></div>
<p>
In each case, the second argument may contain any of the allowable items for a
list of the appropriate type. Also, because the second argument (after
expansion) is a standard form of list, it is possible to refer to a named list.
Thus, you can use conditions like this:
</p>
<div class="docbook_literallayout"><pre>
${if match_domain{$domain}{+local_domains}{...
</pre></div>
<p>

For address lists, the matching starts off caselessly, but the <code class="docbook_literal">+caseful</code>
item can be used, as in all address lists, to cause subsequent items to
have their local parts matched casefully. Domains are always matched
caselessly.
</p>
<p>
<span class="docbook_emphasis">Note</span>: Host lists are <span class="docbook_emphasis">not</span> supported in this way. This is because
hosts have two identities: a name and an IP address, and it is not clear
how to specify cleanly how such a test would work. However, IP addresses can be
matched using <span class="docbook_option">match_ip</span>.
</p>
</dd>

<dt>
<span class="docbook_emphasis">pam {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">:</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">:...}</span>
</dt>
<dd>
<p>





<span class="docbook_emphasis">Pluggable Authentication Modules</span>
(<span class="docbook_emphasis"><a href="http://www.kernel.org/pub/linux/libs/pam/">http://www.kernel.org/pub/linux/libs/pam/</a></span>) are a facility that is
available in the latest releases of Solaris and in some GNU/Linux
distributions. The Exim support, which is intended for use in conjunction with
the SMTP AUTH command, is available only if Exim is compiled with
</p>
<div class="docbook_literallayout"><pre>
SUPPORT_PAM=yes
</pre></div>
<p>
in <span class="docbook_filename">Local/Makefile</span>. You probably need to add <span class="docbook_option">-lpam</span> to EXTRALIBS, and
in some releases of GNU/Linux <span class="docbook_option">-ldl</span> is also needed.
</p>
<p>
The argument string is first expanded, and the result must be a
colon-separated list of strings. Leading and trailing white space is ignored.
The PAM module is initialized with the service name “exim” and the user name
taken from the first item in the colon-separated data string (&lt;<span class="docbook_emphasis">string1</span>&gt;).
The remaining items in the data string are passed over in response to requests
from the authentication function. In the simple case there will only be one
request, for a password, so the data consists of just two strings.
</p>
<p>
There can be problems if any of the strings are permitted to contain colon
characters. In the usual way, these have to be doubled to avoid being taken as
separators. If the data is being inserted from a variable, the <span class="docbook_option">sg</span> expansion
item can be used to double any existing colons. For example, the configuration
of a LOGIN authenticator might contain this setting:
</p>
<div class="docbook_literallayout"><pre>
server_condition = ${if pam{$auth1:${sg{$auth2}{:}{::}}}}
</pre></div>
<p>
For a PLAIN authenticator you could use:
</p>
<div class="docbook_literallayout"><pre>
server_condition = ${if pam{$auth2:${sg{$auth3}{:}{::}}}}
</pre></div>
<p>
In some operating systems, PAM authentication can be done only from a process
running as root. Since Exim is running as the Exim user when receiving
messages, this means that PAM cannot be used directly in those systems.
A patched version of the <span class="docbook_emphasis">pam_unix</span> module that comes with the
Linux PAM package is available from <span class="docbook_emphasis"><a href="http://www.e-admin.de/pam_exim/">http://www.e-admin.de/pam_exim/</a></span>.
The patched module allows one special uid/gid combination, in addition to root,
to authenticate. If you build the patched module to allow the Exim user and
group, PAM can then be used from an Exim authenticator.
</p>
</dd>

<dt>
<span class="docbook_emphasis">pwcheck {</span>&lt;<span class="docbook_emphasis">string1</span>&gt;<span class="docbook_emphasis">:</span>&lt;<span class="docbook_emphasis">string2</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>




This condition supports user authentication using the Cyrus <span class="docbook_emphasis">pwcheck</span> daemon.
This is one way of making it possible for passwords to be checked by a process
that is not running as root. <span class="docbook_emphasis">Note</span>: The use of <span class="docbook_emphasis">pwcheck</span> is now
deprecated. Its replacement is <span class="docbook_emphasis">saslauthd</span> (see below).
</p>
<p>
The pwcheck support is not included in Exim by default. You need to specify
the location of the pwcheck daemon’s socket in <span class="docbook_filename">Local/Makefile</span> before
building Exim. For example:
</p>
<div class="docbook_literallayout"><pre>
CYRUS_PWCHECK_SOCKET=/var/pwcheck/pwcheck
</pre></div>
<p>
You do not need to install the full Cyrus software suite in order to use
the pwcheck daemon. You can compile and install just the daemon alone
from the Cyrus SASL library. Ensure that <span class="docbook_emphasis">exim</span> is the only user that has
access to the <span class="docbook_filename">/var/pwcheck</span> directory.
</p>
<p>
The <span class="docbook_option">pwcheck</span> condition takes one argument, which must be the user name and
password, separated by a colon. For example, in a LOGIN authenticator
configuration, you might have this:
</p>
<div class="docbook_literallayout"><pre>
server_condition = ${if pwcheck{$auth1:$auth2}}
</pre></div>
<p>
Again, for a PLAIN authenticator configuration, this would be:
</p>
<div class="docbook_literallayout"><pre>
server_condition = ${if pwcheck{$auth2:$auth3}}
</pre></div>
</dd>

<dt><span class="docbook_emphasis">queue_running</span></dt>
<dd>
<p>



This condition, which has no data, is true during delivery attempts that are
initiated by queue runner processes, and false otherwise.
</p>
</dd>

<dt>
<span class="docbook_emphasis">radius {</span>&lt;<span class="docbook_emphasis">authentication string</span>&gt;<span class="docbook_emphasis">}</span>
</dt>
<dd>
<p>



Radius authentication (RFC 2865) is supported in a similar way to PAM. You must
set RADIUS_CONFIG_FILE in <span class="docbook_filename">Local/Makefile</span> to specify the location of
the Radius client configuration file in order to build Exim with Radius
support.
</p>
<p>
With just that one setting, Exim expects to be linked with the <span class="docbook_option">radiusclient</span>
library, using the original API. If you are using release 0.4.0 or later of
this library, you need to set
</p>
<div class="docbook_literallayout"><pre>
RADIUS_LIB_TYPE=RADIUSCLIENTNEW
</pre></div>
<p>
in <span class="docbook_filename">Local/Makefile</span> when building Exim. You can also link Exim with the
<span class="docbook_option">libradius</span> library that comes with FreeBSD. To do this, set
</p>
<div class="docbook_literallayout"><pre>
RADIUS_LIB_TYPE=RADLIB
</pre></div>
<p>
in <span class="docbook_filename">Local/Makefile</span>, in addition to setting RADIUS_CONFIGURE_FILE.
You may also have to supply a suitable setting in EXTRALIBS so that the
Radius library can be found when Exim is linked.
</p>
<p>
The string specified by RADIUS_CONFIG_FILE is expanded and passed to the
Radius client library, which calls the Radius server. The condition is true if
the authentication is successful. For example:
</p>
<div class="docbook_literallayout"><pre>
server_condition = ${if radius{&lt;arguments&gt;}}
</pre></div>
</dd>

<dt>
<span class="docbook_emphasis">saslauthd {{</span>&lt;<span class="docbook_emphasis">user</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">password</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">service</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">realm</span>&gt;<span class="docbook_emphasis">}}</span>
</dt>
<dd>
<p>




This condition supports user authentication using the Cyrus <span class="docbook_emphasis">saslauthd</span>
daemon. This replaces the older <span class="docbook_emphasis">pwcheck</span> daemon, which is now deprecated.
Using this daemon is one way of making it possible for passwords to be checked
by a process that is not running as root.
</p>
<p>
The saslauthd support is not included in Exim by default. You need to specify
the location of the saslauthd daemon’s socket in <span class="docbook_filename">Local/Makefile</span> before
building Exim. For example:
</p>
<div class="docbook_literallayout"><pre>
CYRUS_SASLAUTHD_SOCKET=/var/state/saslauthd/mux
</pre></div>
<p>
You do not need to install the full Cyrus software suite in order to use
the saslauthd daemon. You can compile and install just the daemon alone
from the Cyrus SASL library.
</p>
<p>
Up to four arguments can be supplied to the <span class="docbook_option">saslauthd</span> condition, but only
two are mandatory. For example:
</p>
<div class="docbook_literallayout"><pre>
server_condition = ${if saslauthd{{$auth1}{$auth2}}}
</pre></div>
<p>
The service and the realm are optional (which is why the arguments are enclosed
in their own set of braces). For details of the meaning of the service and
realm, and how to run the daemon, consult the Cyrus documentation.
</p>
</dd>
</dl>
</div>
<div class="section">
<h3 id="SECID84" class="">8. Combining expansion conditions</h3>
<p>

Several conditions can be tested at once by combining them using the <span class="docbook_option">and</span>
and <span class="docbook_option">or</span> combination conditions. Note that <span class="docbook_option">and</span> and <span class="docbook_option">or</span> are complete
conditions on their own, and precede their lists of sub-conditions. Each
sub-condition must be enclosed in braces within the overall braces that contain
the list. No repetition of <span class="docbook_option">if</span> is used.
</p>
<dl>

<dt>
<span class="docbook_emphasis">or {{</span>&lt;<span class="docbook_emphasis">cond1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">cond2</span>&gt;<span class="docbook_emphasis">}...}</span>
</dt>
<dd>
<p>


The sub-conditions are evaluated from left to right. The condition is true if
any one of the sub-conditions is true.
For example,
</p>
<div class="docbook_literallayout"><pre>
${if or {{eq{$local_part}{spqr}}{eq{$domain}{testing.com}}}...
</pre></div>
<p>
When a true sub-condition is found, the following ones are parsed but not
evaluated. If there are several “match” sub-conditions the values of the
numeric variables afterwards are taken from the first one that succeeds.
</p>
</dd>

<dt>
<span class="docbook_emphasis">and {{</span>&lt;<span class="docbook_emphasis">cond1</span>&gt;<span class="docbook_emphasis">}{</span>&lt;<span class="docbook_emphasis">cond2</span>&gt;<span class="docbook_emphasis">}...}</span>
</dt>
<dd>
<p>


The sub-conditions are evaluated from left to right. The condition is true if
all of the sub-conditions are true. If there are several “match”
sub-conditions, the values of the numeric variables afterwards are taken from
the last one. When a false sub-condition is found, the following ones are
parsed but not evaluated.
</p>
</dd>
</dl>
<p>

</p>
</div>
<div class="section">
<h3 id="SECTexpvar" class="">9. Expansion variables</h3>
<p>

This section contains an alphabetical list of all the expansion variables. Some
of them are available only when Exim is compiled with specific options such as
support for TLS or the content scanning extension.
</p>
<dl>

<dt>$0, $1, etc</dt>
<dd>
<p>

When a <span class="docbook_option">match</span> expansion condition succeeds, these variables contain the
captured substrings identified by the regular expression during subsequent
processing of the success string of the containing <span class="docbook_option">if</span> expansion item.
However, they do not retain their values afterwards; in fact, their previous
values are restored at the end of processing an <span class="docbook_option">if</span> item. The numerical
variables may also be set externally by some other matching process which
precedes the expansion of the string. For example, the commands available in
Exim filter files include an <span class="docbook_option">if</span> command with its own regular expression
matching condition.
</p>
</dd>

<dt>$acl_c...</dt>
<dd>
<p>
Values can be placed in these variables by the <span class="docbook_option">set</span> modifier in an ACL. They
can be given any name that starts with $acl_c and is at least six characters
long, but the sixth character must be either a digit or an underscore. For
example: $acl_c5, $acl_c_mycount. The values of the $acl_c...
variables persist throughout the lifetime of an SMTP connection. They can be
used to pass information between ACLs and between different invocations of the
same ACL. When a message is received, the values of these variables are saved
with the message, and can be accessed by filters, routers, and transports
during subsequent delivery.
</p>
</dd>

<dt>$acl_m...</dt>
<dd>
<p>
These variables are like the $acl_c... variables, except that their values
are reset after a message has been received. Thus, if several messages are
received in one SMTP connection, $acl_m... values are not passed on from one
message to the next, as $acl_c... values are. The $acl_m... variables are
also reset by MAIL, RSET, EHLO, HELO, and after starting a TLS session. When a
message is received, the values of these variables are saved with the message,
and can be accessed by filters, routers, and transports during subsequent
delivery.
</p>
</dd>

<dt>$acl_verify_message</dt>
<dd>
<p>

After an address verification has failed, this variable contains the failure
message. It retains its value for use in subsequent modifiers. The message can
be preserved by coding like this:
</p>
<div class="docbook_literallayout"><pre>
warn !verify = sender
     set acl_m0 = $acl_verify_message
</pre></div>
<p>
You can use $acl_verify_message during the expansion of the <span class="docbook_option">message</span> or
<span class="docbook_option">log_message</span> modifiers, to include information about the verification
failure.
</p>
</dd>

<dt>$address_data</dt>
<dd>
<p>

This variable is set by means of the <span class="docbook_option">address_data</span> option in routers. The
value then remains with the address while it is processed by subsequent routers
and eventually a transport. If the transport is handling multiple addresses,
the value from the first address is used. See chapter <a href="ch15.html" title="15. Generic options for routers">15</a>
for more details. <span class="docbook_emphasis">Note</span>: The contents of $address_data are visible in
user filter files.
</p>
<p>
If $address_data is set when the routers are called from an ACL to verify
a recipient address, the final value is still in the variable for subsequent
conditions and modifiers of the ACL statement. If routing the address caused it
to be redirected to just one address, the child address is also routed as part
of the verification, and in this case the final value of $address_data is
from the child’s routing.
</p>
<p>
If $address_data is set when the routers are called from an ACL to verify a
sender address, the final value is also preserved, but this time in
$sender_address_data, to distinguish it from data from a recipient
address.
</p>
<p>
In both cases (recipient and sender verification), the value does not persist
after the end of the current ACL statement. If you want to preserve
these values for longer, you can save them in ACL variables.
</p>
</dd>

<dt>$address_file</dt>
<dd>
<p>

When, as a result of aliasing, forwarding, or filtering, a message is directed
to a specific file, this variable holds the name of the file when the transport
is running. At other times, the variable is empty. For example, using the
default configuration, if user <span class="docbook_option">r2d2</span> has a <span class="docbook_filename">.forward</span> file containing
</p>
<div class="docbook_literallayout"><pre>
/home/r2d2/savemail
</pre></div>
<p>
then when the <span class="docbook_command">address_file</span> transport is running, $address_file
contains the text string <code class="docbook_literal">/home/r2d2/savemail</code>.

For Sieve filters, the value may be “inbox” or a relative folder name. It is
then up to the transport configuration to generate an appropriate absolute path
to the relevant file.
</p>
</dd>

<dt>$address_pipe</dt>
<dd>
<p>

When, as a result of aliasing or forwarding, a message is directed to a pipe,
this variable holds the pipe command when the transport is running.
</p>
</dd>

<dt>$auth1 – $auth3</dt>
<dd>
<p>

These variables are used in SMTP authenticators (see chapters
<a href="ch34.html" title="34. The plaintext authenticator">34</a>–<a href="ch38.html" title="38. The spa authenticator">38</a>). Elsewhere, they are empty.
</p>
</dd>

<dt>$authenticated_id</dt>
<dd>
<p>


When a server successfully authenticates a client it may be configured to
preserve some of the authentication information in the variable
$authenticated_id (see chapter <a href="ch33.html" title="33. SMTP authentication">33</a>). For example, a
user/password authenticator configuration might preserve the user name for use
in the routers. Note that this is not the same information that is saved in
$sender_host_authenticated.
When a message is submitted locally (that is, not over a TCP connection)
the value of $authenticated_id is normally the login name of the calling
process. However, a trusted user can override this by means of the <span class="docbook_option">-oMai</span>
command line option.
</p>
</dd>

<dt>$authenticated_sender</dt>
<dd>
<p>




When acting as a server, Exim takes note of the AUTH= parameter on an incoming
SMTP MAIL command if it believes the sender is sufficiently trusted, as
described in section <a href="ch33.html#SECTauthparamail" title="33. SMTP authentication">33.2</a>. Unless the data is the string
“&lt;&gt;”, it is set as the authenticated sender of the message, and the value is
available during delivery in the $authenticated_sender variable. If the
sender is not trusted, Exim accepts the syntax of AUTH=, but ignores the data.
</p>
<p>

When a message is submitted locally (that is, not over a TCP connection), the
value of $authenticated_sender is an address constructed from the login
name of the calling process and $qualify_domain, except that a trusted user
can override this by means of the <span class="docbook_option">-oMas</span> command line option.
</p>
</dd>

<dt>$authentication_failed</dt>
<dd>
<p>


This variable is set to “1” in an Exim server if a client issues an AUTH
command that does not succeed. Otherwise it is set to “0”. This makes it
possible to distinguish between “did not try to authenticate”
($sender_host_authenticated is empty and $authentication_failed is set to
“0”) and “tried to authenticate but failed” ($sender_host_authenticated
is empty and $authentication_failed is set to “1”). Failure includes any
negative response to an AUTH command, including (for example) an attempt to use
an undefined mechanism.
</p>
</dd>

<dt>$body_linecount</dt>
<dd>
<p>



When a message is being received or delivered, this variable contains the
number of lines in the message’s body. See also $message_linecount.
</p>
</dd>

<dt>$body_zerocount</dt>
<dd>
<p>




When a message is being received or delivered, this variable contains the
number of binary zero bytes in the message’s body.
</p>
</dd>

<dt>$bounce_recipient</dt>
<dd>
<p>

This is set to the recipient address of a bounce message while Exim is creating
it. It is useful if a customized bounce message text file is in use (see
chapter <a href="ch46.html" title="46. Customizing bounce and warning messages">46</a>).
</p>
</dd>

<dt>$bounce_return_size_limit</dt>
<dd>
<p>

This contains the value set in the <span class="docbook_option">bounce_return_size_limit</span> option, rounded
up to a multiple of 1000. It is useful when a customized error message text
file is in use (see chapter <a href="ch46.html" title="46. Customizing bounce and warning messages">46</a>).
</p>
</dd>

<dt>$caller_gid</dt>
<dd>
<p>


The real group id under which the process that called Exim was running. This is
not the same as the group id of the originator of a message (see
$originator_gid). If Exim re-execs itself, this variable in the new
incarnation normally contains the Exim gid.
</p>
</dd>

<dt>$caller_uid</dt>
<dd>
<p>


The real user id under which the process that called Exim was running. This is
not the same as the user id of the originator of a message (see
$originator_uid). If Exim re-execs itself, this variable in the new
incarnation normally contains the Exim uid.
</p>
</dd>

<dt>$compile_date</dt>
<dd>
<p>

The date on which the Exim binary was compiled.
</p>
</dd>

<dt>$compile_number</dt>
<dd>
<p>

The building process for Exim keeps a count of the number
of times it has been compiled. This serves to distinguish different
compilations of the same version of the program.
</p>
</dd>

<dt>$demime_errorlevel</dt>
<dd>
<p>

This variable is available when Exim is compiled with
the content-scanning extension and the obsolete <span class="docbook_option">demime</span> condition. For
details, see section <a href="ch41.html#SECTdemimecond" title="41. Content scanning at ACL time">41.6</a>.
</p>
</dd>

<dt>$demime_reason</dt>
<dd>
<p>

This variable is available when Exim is compiled with the
content-scanning extension and the obsolete <span class="docbook_option">demime</span> condition. For details,
see section <a href="ch41.html#SECTdemimecond" title="41. Content scanning at ACL time">41.6</a>.
</p>
</dd>

<dt>$dnslist_domain</dt>
<dt>$dnslist_matched</dt>
<dt>$dnslist_text</dt>
<dt>$dnslist_value</dt>
<dd>
<p>





When a DNS (black) list lookup succeeds, these variables are set to contain
the following data from the lookup: the list’s domain name, the key that was
looked up, the contents of any associated TXT record, and the value from the
main A record. See section <a href="ch40.html#SECID204" title="40. Access control lists">40.30</a> for more details.
</p>
</dd>

<dt>$domain</dt>
<dd>
<p>

When an address is being routed, or delivered on its own, this variable
contains the domain. Uppercase letters in the domain are converted into lower
case for $domain.
</p>
<p>
Global address rewriting happens when a message is received, so the value of
$domain during routing and delivery is the value after rewriting. $domain
is set during user filtering, but not during system filtering, because a
message may have many recipients and the system filter is called just once.
</p>
<p>
When more than one address is being delivered at once (for example, several
RCPT commands in one SMTP delivery), $domain is set only if they all
have the same domain. Transports can be restricted to handling only one domain
at a time if the value of $domain is required at transport time – this is
the default for local transports. For further details of the environment in
which local transports are run, see chapter <a href="ch23.html" title="23. Environment for running local transports">23</a>.
</p>
<p>

At the end of a delivery, if all deferred addresses have the same domain, it is
set in $domain during the expansion of <span class="docbook_option">delay_warning_condition</span>.
</p>
<p>
The $domain variable is also used in some other circumstances:
</p>
<ul>
<li>
<p>
When an ACL is running for a RCPT command, $domain contains the domain of
the recipient address. The domain of the <span class="docbook_emphasis">sender</span> address is in
$sender_address_domain at both MAIL time and at RCPT time. $domain is not
normally set during the running of the MAIL ACL. However, if the sender address
is verified with a callout during the MAIL ACL, the sender domain is placed in
$domain during the expansions of <span class="docbook_option">hosts</span>, <span class="docbook_option">interface</span>, and <span class="docbook_option">port</span> in
the <span class="docbook_command">smtp</span> transport.
</p>
</li>
<li>
<p>
When a rewrite item is being processed (see chapter <a href="ch31.html" title="31. Address rewriting">31</a>),
$domain contains the domain portion of the address that is being rewritten;
it can be used in the expansion of the replacement address, for example, to
rewrite domains by file lookup.
</p>
</li>
<li>
<p>
With one important exception, whenever a domain list is being scanned,
$domain contains the subject domain. <span class="docbook_emphasis">Exception</span>: When a domain list in
a <span class="docbook_option">sender_domains</span> condition in an ACL is being processed, the subject domain
is in $sender_address_domain and not in $domain. It works this way so
that, in a RCPT ACL, the sender domain list can be dependent on the
recipient domain (which is what is in $domain at this time).
</p>
</li>
<li>
<p>


When the <span class="docbook_option">smtp_etrn_command</span> option is being expanded, $domain contains
the complete argument of the ETRN command (see section <a href="ch45.html#SECTETRN" title="45. SMTP processing">45.8</a>).
</p>
</li>
</ul>
</dd>

<dt>$domain_data</dt>
<dd>
<p>

When the <span class="docbook_option">domains</span> option on a router matches a domain by
means of a lookup, the data read by the lookup is available during the running
of the router as $domain_data. In addition, if the driver routes the
address to a transport, the value is available in that transport. If the
transport is handling multiple addresses, the value from the first address is
used.
</p>
<p>
$domain_data is also set when the <span class="docbook_option">domains</span> condition in an ACL matches a
domain by means of a lookup. The data read by the lookup is available during
the rest of the ACL statement. In all other situations, this variable expands
to nothing.
</p>
</dd>

<dt>$exim_gid</dt>
<dd>
<p>

This variable contains the numerical value of the Exim group id.
</p>
</dd>

<dt>$exim_path</dt>
<dd>
<p>

This variable contains the path to the Exim binary.
</p>
</dd>

<dt>$exim_uid</dt>
<dd>
<p>

This variable contains the numerical value of the Exim user id.
</p>
</dd>

<dt>$found_extension</dt>
<dd>
<p>

This variable is available when Exim is compiled with the
content-scanning extension and the obsolete <span class="docbook_option">demime</span> condition. For details,
see section <a href="ch41.html#SECTdemimecond" title="41. Content scanning at ACL time">41.6</a>.
</p>
</dd>

<dt>$header_&lt;<span class="docbook_emphasis">name</span>&gt;</dt>
<dd>
<p>
This is not strictly an expansion variable. It is expansion syntax for
inserting the message header line with the given name. Note that the name must
be terminated by colon or white space, because it may contain a wide variety of
characters. Note also that braces must <span class="docbook_emphasis">not</span> be used.
</p>
</dd>

<dt>$home</dt>
<dd>
<p>

When the <span class="docbook_option">check_local_user</span> option is set for a router, the user’s home
directory is placed in $home when the check succeeds. In particular, this
means it is set during the running of users’ filter files. A router may also
explicitly set a home directory for use by a transport; this can be overridden
by a setting on the transport itself.
</p>
<p>
When running a filter test via the <span class="docbook_option">-bf</span> option, $home is set to the value
of the environment variable HOME.
</p>
</dd>

<dt>$host</dt>
<dd>
<p>

If a router assigns an address to a transport (any transport), and passes a
list of hosts with the address, the value of $host when the transport starts
to run is the name of the first host on the list. Note that this applies both
to local and remote transports.
</p>
<p>


For the <span class="docbook_command">smtp</span> transport, if there is more than one host, the value of
$host changes as the transport works its way through the list. In
particular, when the <span class="docbook_command">smtp</span> transport is expanding its options for encryption
using TLS, or for specifying a transport filter (see chapter
<a href="ch24.html" title="24. Generic options for transports">24</a>), $host contains the name of the host to which it
is connected.
</p>
<p>
When used in the client part of an authenticator configuration (see chapter
<a href="ch33.html" title="33. SMTP authentication">33</a>), $host contains the name of the server to which the
client is connected.
</p>
</dd>

<dt>$host_address</dt>
<dd>
<p>

This variable is set to the remote host’s IP address whenever $host is set
for a remote connection. It is also set to the IP address that is being checked
when the <span class="docbook_option">ignore_target_hosts</span> option is being processed.
</p>
</dd>

<dt>$host_data</dt>
<dd>
<p>

If a <span class="docbook_option">hosts</span> condition in an ACL is satisfied by means of a lookup, the
result of the lookup is made available in the $host_data variable. This
allows you, for example, to do things like this:
</p>
<div class="docbook_literallayout"><pre>
deny  hosts = net-lsearch;/some/file
message = $host_data
</pre></div>
</dd>

<dt>$host_lookup_deferred</dt>
<dd>
<p>


This variable normally contains “0”, as does $host_lookup_failed. When a
message comes from a remote host and there is an attempt to look up the host’s
name from its IP address, and the attempt is not successful, one of these
variables is set to “1”.
</p>
<ul>
<li>
<p>
If the lookup receives a definite negative response (for example, a DNS lookup
succeeded, but no records were found), $host_lookup_failed is set to “1”.
</p>
</li>
<li>
<p>
If there is any kind of problem during the lookup, such that Exim cannot
tell whether or not the host name is defined (for example, a timeout for a DNS
lookup), $host_lookup_deferred is set to “1”.
</p>
</li>
</ul>
<p>
Looking up a host’s name from its IP address consists of more than just a
single reverse lookup. Exim checks that a forward lookup of at least one of the
names it receives from a reverse lookup yields the original IP address. If this
is not the case, Exim does not accept the looked up name(s), and
$host_lookup_failed is set to “1”. Thus, being able to find a name from an
IP address (for example, the existence of a PTR record in the DNS) is not
sufficient on its own for the success of a host name lookup. If the reverse
lookup succeeds, but there is a lookup problem such as a timeout when checking
the result, the name is not accepted, and $host_lookup_deferred is set to
“1”. See also $sender_host_name.
</p>
</dd>

<dt>$host_lookup_failed</dt>
<dd>
<p>

See $host_lookup_deferred.
</p>
</dd>

<dt>$inode</dt>
<dd>
<p>

The only time this variable is set is while expanding the <span class="docbook_option">directory_file</span>
option in the <span class="docbook_command">appendfile</span> transport. The variable contains the inode number
of the temporary file which is about to be renamed. It can be used to construct
a unique name for the file.
</p>
</dd>

<dt>$interface_address</dt>
<dd>
<p>

This is an obsolete name for $received_ip_address.
</p>
</dd>

<dt>$interface_port</dt>
<dd>
<p>

This is an obsolete name for $received_port.
</p>
</dd>

<dt>$item</dt>
<dd>
<p>

This variable is used during the expansion of <span class="docbook_emphasis">forall</span> and <span class="docbook_emphasis">forany</span>
conditions (see section <a href="ch11.html#SECTexpcond" title="11. String expansions">11.7</a>), and <span class="docbook_emphasis">filter</span>, <span class="docbook_emphasis">map</span>, and
<span class="docbook_emphasis">reduce</span> items (see section <a href="ch11.html#SECTexpcond" title="11. String expansions">11.7</a>). In other circumstances, it is
empty.
</p>
</dd>

<dt>$ldap_dn</dt>
<dd>
<p>

This variable, which is available only when Exim is compiled with LDAP support,
contains the DN from the last entry in the most recently successful LDAP
lookup.
</p>
</dd>

<dt>$load_average</dt>
<dd>
<p>

This variable contains the system load average, multiplied by 1000 so that it
is an integer. For example, if the load average is 0.21, the value of the
variable is 210. The value is recomputed every time the variable is referenced.
</p>
</dd>

<dt>$local_part</dt>
<dd>
<p>

When an address is being routed, or delivered on its own, this
variable contains the local part. When a number of addresses are being
delivered together (for example, multiple RCPT commands in an SMTP
session), $local_part is not set.
</p>
<p>
Global address rewriting happens when a message is received, so the value of
$local_part during routing and delivery is the value after rewriting.
$local_part is set during user filtering, but not during system filtering,
because a message may have many recipients and the system filter is called just
once.
</p>
<p>


If a local part prefix or suffix has been recognized, it is not included in the
value of $local_part during routing and subsequent delivery. The values of
any prefix or suffix are in $local_part_prefix and
$local_part_suffix, respectively.
</p>
<p>
When a message is being delivered to a file, pipe, or autoreply transport as a
result of aliasing or forwarding, $local_part is set to the local part of
the parent address, not to the file name or command (see $address_file and
$address_pipe).
</p>
<p>
When an ACL is running for a RCPT command, $local_part contains the
local part of the recipient address.
</p>
<p>
When a rewrite item is being processed (see chapter <a href="ch31.html" title="31. Address rewriting">31</a>),
$local_part contains the local part of the address that is being rewritten;
it can be used in the expansion of the replacement address, for example.
</p>
<p>
In all cases, all quoting is removed from the local part. For example, for both
the addresses
</p>
<div class="docbook_literallayout"><pre>
"abc:xyz"@test.example
abc\:xyz@test.example
</pre></div>
<p>
the value of $local_part is
</p>
<div class="docbook_literallayout"><pre>
abc:xyz
</pre></div>
<p>
If you use $local_part to create another address, you should always wrap it
inside a quoting operator. For example, in a <span class="docbook_command">redirect</span> router you could
have:
</p>
<div class="docbook_literallayout"><pre>
data = ${quote_local_part:$local_part}@new.domain.example
</pre></div>
<p>
<span class="docbook_emphasis">Note</span>: The value of $local_part is normally lower cased. If you want
to process local parts in a case-dependent manner in a router, you can set the
<span class="docbook_option">caseful_local_part</span> option (see chapter <a href="ch15.html" title="15. Generic options for routers">15</a>).
</p>
</dd>

<dt>$local_part_data</dt>
<dd>
<p>

When the <span class="docbook_option">local_parts</span> option on a router matches a local part by means of a
lookup, the data read by the lookup is available during the running of the
router as $local_part_data. In addition, if the driver routes the address
to a transport, the value is available in that transport. If the transport is
handling multiple addresses, the value from the first address is used.
</p>
<p>
$local_part_data is also set when the <span class="docbook_option">local_parts</span> condition in an ACL
matches a local part by means of a lookup. The data read by the lookup is
available during the rest of the ACL statement. In all other situations, this
variable expands to nothing.
</p>
</dd>

<dt>$local_part_prefix</dt>
<dd>
<p>

When an address is being routed or delivered, and a
specific prefix for the local part was recognized, it is available in this
variable, having been removed from $local_part.
</p>
</dd>

<dt>$local_part_suffix</dt>
<dd>
<p>

When an address is being routed or delivered, and a
specific suffix for the local part was recognized, it is available in this
variable, having been removed from $local_part.
</p>
</dd>

<dt>$local_scan_data</dt>
<dd>
<p>

This variable contains the text returned by the <span class="docbook_function">local_scan()</span> function when
a message is received. See chapter <a href="ch42.html" title="42. Adding a local scan function to Exim">42</a> for more details.
</p>
</dd>

<dt>$local_user_gid</dt>
<dd>
<p>

See $local_user_uid.
</p>
</dd>

<dt>$local_user_uid</dt>
<dd>
<p>

This variable and $local_user_gid are set to the uid and gid after the
<span class="docbook_option">check_local_user</span> router precondition succeeds. This means that their values
are available for the remaining preconditions (<span class="docbook_option">senders</span>, <span class="docbook_option">require_files</span>,
and <span class="docbook_option">condition</span>), for the <span class="docbook_option">address_data</span> expansion, and for any
router-specific expansions. At all other times, the values in these variables
are <code class="docbook_literal">(uid_t)(-1)</code> and <code class="docbook_literal">(gid_t)(-1)</code>, respectively.
</p>
</dd>

<dt>$localhost_number</dt>
<dd>
<p>

This contains the expanded value of the
<span class="docbook_option">localhost_number</span> option. The expansion happens after the main options have
been read.
</p>
</dd>

<dt>$log_inodes</dt>
<dd>
<p>

The number of free inodes in the disk partition where Exim’s
log files are being written. The value is recalculated whenever the variable is
referenced. If the relevant file system does not have the concept of inodes,
the value of is -1. See also the <span class="docbook_option">check_log_inodes</span> option.
</p>
</dd>

<dt>$log_space</dt>
<dd>
<p>

The amount of free space (as a number of kilobytes) in the disk
partition where Exim’s log files are being written. The value is recalculated
whenever the variable is referenced. If the operating system does not have the
ability to find the amount of free space (only true for experimental systems),
the space value is -1. See also the <span class="docbook_option">check_log_space</span> option.
</p>
</dd>

<dt>$mailstore_basename</dt>
<dd>
<p>

This variable is set only when doing deliveries in “mailstore” format in the
<span class="docbook_command">appendfile</span> transport. During the expansion of the <span class="docbook_option">mailstore_prefix</span>,
<span class="docbook_option">mailstore_suffix</span>, <span class="docbook_option">message_prefix</span>, and <span class="docbook_option">message_suffix</span> options, it
contains the basename of the files that are being written, that is, the name
without the “.tmp”, “.env”, or “.msg” suffix. At all other times, this
variable is empty.
</p>
</dd>

<dt>$malware_name</dt>
<dd>
<p>

This variable is available when Exim is compiled with the
content-scanning extension. It is set to the name of the virus that was found
when the ACL <span class="docbook_option">malware</span> condition is true (see section <a href="ch41.html#SECTscanvirus" title="41. Content scanning at ACL time">41.1</a>).
</p>
</dd>

<dt>$max_received_linelength</dt>
<dd>
<p>



This variable contains the number of bytes in the longest line that was
received as part of the message, not counting the line termination
character(s).
</p>
</dd>

<dt>$message_age</dt>
<dd>
<p>


This variable is set at the start of a delivery attempt to contain the number
of seconds since the message was received. It does not change during a single
delivery attempt.
</p>
</dd>

<dt>$message_body</dt>
<dd>
<p>





This variable contains the initial portion of a message’s body while it is
being delivered, and is intended mainly for use in filter files. The maximum
number of characters of the body that are put into the variable is set by the
<span class="docbook_option">message_body_visible</span> configuration option; the default is 500.
</p>
<p>

By default, newlines are converted into spaces in $message_body, to make it
easier to search for phrases that might be split over a line break. However,
this can be disabled by setting <span class="docbook_option">message_body_newlines</span> to be true. Binary
zeros are always converted into spaces.
</p>
</dd>

<dt>$message_body_end</dt>
<dd>
<p>



This variable contains the final portion of a message’s
body while it is being delivered. The format and maximum size are as for
$message_body.
</p>
</dd>

<dt>$message_body_size</dt>
<dd>
<p>



When a message is being delivered, this variable contains the size of the body
in bytes. The count starts from the character after the blank line that
separates the body from the header. Newlines are included in the count. See
also $message_size, $body_linecount, and $body_zerocount.
</p>
</dd>

<dt>$message_exim_id</dt>
<dd>
<p>

When a message is being received or delivered, this variable contains the
unique message id that is generated and used by Exim to identify the message.
An id is not created for a message until after its header has been successfully
received. <span class="docbook_emphasis">Note</span>: This is <span class="docbook_emphasis">not</span> the contents of the <span class="docbook_emphasis">Message-ID:</span> header
line; it is the local id that Exim assigns to the message, for example:
<code class="docbook_literal">1BXTIK-0001yO-VA</code>.
</p>
</dd>

<dt>$message_headers</dt>
<dd>
<p>

This variable contains a concatenation of all the header lines when a message
is being processed, except for lines added by routers or transports. The header
lines are separated by newline characters. Their contents are decoded in the
same way as a header line that is inserted by <span class="docbook_option">bheader</span>.
</p>
</dd>

<dt>$message_headers_raw</dt>
<dd>
<p>

This variable is like $message_headers except that no processing of the
contents of header lines is done.
</p>
</dd>

<dt>$message_id</dt>
<dd>
<p>
This is an old name for $message_exim_id, which is now deprecated.
</p>
</dd>

<dt>$message_linecount</dt>
<dd>
<p>

This variable contains the total number of lines in the header and body of the
message. Compare $body_linecount, which is the count for the body only.
During the DATA and content-scanning ACLs, $message_linecount contains the
number of lines received. Before delivery happens (that is, before filters,
routers, and transports run) the count is increased to include the
<span class="docbook_emphasis">Received:</span> header line that Exim standardly adds, and also any other header
lines that are added by ACLs. The blank line that separates the message header
from the body is not counted. Here is an example of the use of this variable in
a DATA ACL:
</p>
<div class="docbook_literallayout"><pre>
deny message   = Too many lines in message header
     condition = \
      ${if &lt;{250}{${eval:$message_linecount - $body_linecount}}}
</pre></div>
<p>
In the MAIL and RCPT ACLs, the value is zero because at that stage the
message has not yet been received.
</p>
</dd>

<dt>$message_size</dt>
<dd>
<p>



When a message is being processed, this variable contains its size in bytes. In
most cases, the size includes those headers that were received with the
message, but not those (such as <span class="docbook_emphasis">Envelope-to:</span>) that are added to individual
deliveries as they are written. However, there is one special case: during the
expansion of the <span class="docbook_option">maildir_tag</span> option in the <span class="docbook_command">appendfile</span> transport while
doing a delivery in maildir format, the value of $message_size is the
precise size of the file that has been written. See also
$message_body_size, $body_linecount, and $body_zerocount.
</p>
<p>

While running a per message ACL (mail/rcpt/predata), $message_size
contains the size supplied on the MAIL command, or -1 if no size was given. The
value may not, of course, be truthful.
</p>
</dd>

<dt>$mime_<span class="docbook_emphasis">xxx</span>
</dt>
<dd>
<p>
A number of variables whose names start with $mime are
available when Exim is compiled with the content-scanning extension. For
details, see section <a href="ch41.html#SECTscanmimepart" title="41. Content scanning at ACL time">41.4</a>.
</p>
</dd>

<dt>$n0 – $n9</dt>
<dd>
<p>
These variables are counters that can be incremented by means
of the <span class="docbook_option">add</span> command in filter files.
</p>
</dd>

<dt>$original_domain</dt>
<dd>
<p>


When a top-level address is being processed for delivery, this contains the
same value as $domain. However, if a “child” address (for example,
generated by an alias, forward, or filter file) is being processed, this
variable contains the domain of the original address (lower cased). This
differs from $parent_domain only when there is more than one level of
aliasing or forwarding. When more than one address is being delivered in a
single transport run, $original_domain is not set.
</p>
<p>
If a new address is created by means of a <span class="docbook_option">deliver</span> command in a system
filter, it is set up with an artificial “parent” address. This has the local
part <span class="docbook_emphasis">system-filter</span> and the default qualify domain.
</p>
</dd>

<dt>$original_local_part</dt>
<dd>
<p>


When a top-level address is being processed for delivery, this contains the
same value as $local_part, unless a prefix or suffix was removed from the
local part, because $original_local_part always contains the full local
part. When a “child” address (for example, generated by an alias, forward, or
filter file) is being processed, this variable contains the full local part of
the original address.
</p>
<p>
If the router that did the redirection processed the local part
case-insensitively, the value in $original_local_part is in lower case.
This variable differs from $parent_local_part only when there is more than
one level of aliasing or forwarding. When more than one address is being
delivered in a single transport run, $original_local_part is not set.
</p>
<p>
If a new address is created by means of a <span class="docbook_option">deliver</span> command in a system
filter, it is set up with an artificial “parent” address. This has the local
part <span class="docbook_emphasis">system-filter</span> and the default qualify domain.
</p>
</dd>

<dt>$originator_gid</dt>
<dd>
<p>




This variable contains the value of $caller_gid that was set when the
message was received. For messages received via the command line, this is the
gid of the sending user. For messages received by SMTP over TCP/IP, this is
normally the gid of the Exim user.
</p>
</dd>

<dt>$originator_uid</dt>
<dd>
<p>




The value of $caller_uid that was set when the message was received. For
messages received via the command line, this is the uid of the sending user.
For messages received by SMTP over TCP/IP, this is normally the uid of the Exim
user.
</p>
</dd>

<dt>$parent_domain</dt>
<dd>
<p>

This variable is similar to $original_domain (see
above), except that it refers to the immediately preceding parent address.
</p>
</dd>

<dt>$parent_local_part</dt>
<dd>
<p>

This variable is similar to $original_local_part
(see above), except that it refers to the immediately preceding parent address.
</p>
</dd>

<dt>$pid</dt>
<dd>
<p>


This variable contains the current process id.
</p>
</dd>

<dt>$pipe_addresses</dt>
<dd>
<p>



This is not an expansion variable, but is mentioned here because the string
<code class="docbook_literal">$pipe_addresses</code> is handled specially in the command specification for the
<span class="docbook_command">pipe</span> transport (chapter <a href="ch29.html" title="29. The pipe transport">29</a>) and in transport filters
(described under <span class="docbook_option">transport_filter</span> in chapter <a href="ch24.html" title="24. Generic options for transports">24</a>).
It cannot be used in general expansion strings, and provokes an “unknown
variable” error if encountered.
</p>
</dd>

<dt>$primary_hostname</dt>
<dd>
<p>

This variable contains the value set by <span class="docbook_option">primary_hostname</span> in the
configuration file, or read by the <span class="docbook_function">uname()</span> function. If <span class="docbook_function">uname()</span> returns
a single-component name, Exim calls <span class="docbook_function">gethostbyname()</span> (or
<span class="docbook_function">getipnodebyname()</span> where available) in an attempt to acquire a fully
qualified host name. See also $smtp_active_hostname.
</p>
</dd>

<dt>$prvscheck_address</dt>
<dd>
<p>
This variable is used in conjunction with the <span class="docbook_option">prvscheck</span> expansion item,
which is described in sections <a href="ch11.html#SECTexpansionitems" title="11. String expansions">11.5</a> and
<a href="ch40.html#SECTverifyPRVS" title="40. Access control lists">40.48</a>.
</p>
</dd>

<dt>$prvscheck_keynum</dt>
<dd>
<p>
This variable is used in conjunction with the <span class="docbook_option">prvscheck</span> expansion item,
which is described in sections <a href="ch11.html#SECTexpansionitems" title="11. String expansions">11.5</a> and
<a href="ch40.html#SECTverifyPRVS" title="40. Access control lists">40.48</a>.
</p>
</dd>

<dt>$prvscheck_result</dt>
<dd>
<p>
This variable is used in conjunction with the <span class="docbook_option">prvscheck</span> expansion item,
which is described in sections <a href="ch11.html#SECTexpansionitems" title="11. String expansions">11.5</a> and
<a href="ch40.html#SECTverifyPRVS" title="40. Access control lists">40.48</a>.
</p>
</dd>

<dt>$qualify_domain</dt>
<dd>
<p>

The value set for the <span class="docbook_option">qualify_domain</span> option in the configuration file.
</p>
</dd>

<dt>$qualify_recipient</dt>
<dd>
<p>

The value set for the <span class="docbook_option">qualify_recipient</span> option in the configuration file,
or if not set, the value of $qualify_domain.
</p>
</dd>

<dt>$rcpt_count</dt>
<dd>
<p>

When a message is being received by SMTP, this variable contains the number of
RCPT commands received for the current message. If this variable is used in a
RCPT ACL, its value includes the current command.
</p>
</dd>

<dt>$rcpt_defer_count</dt>
<dd>
<p>


When a message is being received by SMTP, this variable contains the number of
RCPT commands in the current message that have previously been rejected with a
temporary (4<span class="docbook_emphasis">xx</span>) response.
</p>
</dd>

<dt>$rcpt_fail_count</dt>
<dd>
<p>

When a message is being received by SMTP, this variable contains the number of
RCPT commands in the current message that have previously been rejected with a
permanent (5<span class="docbook_emphasis">xx</span>) response.
</p>
</dd>

<dt>$received_count</dt>
<dd>
<p>

This variable contains the number of <span class="docbook_emphasis">Received:</span> header lines in the message,
including the one added by Exim (so its value is always greater than zero). It
is available in the DATA ACL, the non-SMTP ACL, and while routing and
delivering.
</p>
</dd>

<dt>$received_for</dt>
<dd>
<p>

If there is only a single recipient address in an incoming message, this
variable contains that address when the <span class="docbook_emphasis">Received:</span> header line is being
built. The value is copied after recipient rewriting has happened, but before
the <span class="docbook_function">local_scan()</span> function is run.
</p>
</dd>

<dt>$received_ip_address</dt>
<dd>
<p>

As soon as an Exim server starts processing an incoming TCP/IP connection, this
variable is set to the address of the local IP interface, and $received_port
is set to the local port number. (The remote IP address and port are in
$sender_host_address and $sender_host_port.) When testing with <span class="docbook_option">-bh</span>,
the port value is -1 unless it has been set using the <span class="docbook_option">-oMi</span> command line
option.
</p>
<p>
As well as being useful in ACLs (including the “connect” ACL), these variable
could be used, for example, to make the file name for a TLS certificate depend
on which interface and/or port is being used for the incoming connection. The
values of $received_ip_address and $received_port are saved with any
messages that are received, thus making these variables available at delivery
time.
</p>
<p>
<span class="docbook_emphasis">Note:</span> There are no equivalent variables for outgoing connections, because
the values are unknown (unless they are explicitly set by options of the
<span class="docbook_command">smtp</span> transport).
</p>
</dd>

<dt>$received_port</dt>
<dd>
<p>

See $received_ip_address.
</p>
</dd>

<dt>$received_protocol</dt>
<dd>
<p>

When a message is being processed, this variable contains the name of the
protocol by which it was received. Most of the names used by Exim are defined
by RFCs 821, 2821, and 3848. They start with “smtp” (the client used HELO) or
“esmtp” (the client used EHLO). This can be followed by “s” for secure
(encrypted) and/or “a” for authenticated. Thus, for example, if the protocol
is set to “esmtpsa”, the message was received over an encrypted SMTP
connection and the client was successfully authenticated.
</p>
<p>
Exim uses the protocol name “smtps” for the case when encryption is
automatically set up on connection without the use of STARTTLS (see
<span class="docbook_option">tls_on_connect_ports</span>), and the client uses HELO to initiate the
encrypted SMTP session. The name “smtps” is also used for the rare situation
where the client initially uses EHLO, sets up an encrypted connection using
STARTTLS, and then uses HELO afterwards.
</p>
<p>
The <span class="docbook_option">-oMr</span> option provides a way of specifying a custom protocol name for
messages that are injected locally by trusted callers. This is commonly used to
identify messages that are being re-injected after some kind of scanning.
</p>
</dd>

<dt>$received_time</dt>
<dd>
<p>

This variable contains the date and time when the current message was received,
as a number of seconds since the start of the Unix epoch.
</p>
</dd>

<dt>$recipient_data</dt>
<dd>
<p>

This variable is set after an indexing lookup success in an ACL <span class="docbook_option">recipients</span>
condition. It contains the data from the lookup, and the value remains set
until the next <span class="docbook_option">recipients</span> test. Thus, you can do things like this:
</p>
<div class="docbook_literallayout"><pre>
<code class="docbook_literal">require recipients  = cdb*@;/some/file</code>
<code class="docbook_literal">deny    </code><span class="docbook_emphasis">some further test involving</span> <code class="docbook_literal">$recipient_data</code>
</pre></div>
<p>
<span class="docbook_emphasis">Warning</span>: This variable is set only when a lookup is used as an indexing
method in the address list, using the semicolon syntax as in the example above.
The variable is not set for a lookup that is used as part of the string
expansion that all such lists undergo before being interpreted.
</p>
</dd>

<dt>$recipient_verify_failure</dt>
<dd>
<p>

In an ACL, when a recipient verification fails, this variable contains
information about the failure. It is set to one of the following words:
</p>
<ul>
<li>
<p>
“qualify”: The address was unqualified (no domain), and the message
was neither local nor came from an exempted host.
</p>
</li>
<li>
<p>
“route”: Routing failed.
</p>
</li>
<li>
<p>
“mail”: Routing succeeded, and a callout was attempted; rejection occurred at
or before the MAIL command (that is, on initial connection, HELO, or
MAIL).
</p>
</li>
<li>
<p>
“recipient”: The RCPT command in a callout was rejected.
</p>
</li>
<li>
<p>
“postmaster”: The postmaster check in a callout was rejected.
</p>
</li>
</ul>
<p>
The main use of this variable is expected to be to distinguish between
rejections of MAIL and rejections of RCPT.
</p>
</dd>

<dt>$recipients</dt>
<dd>
<p>

This variable contains a list of envelope recipients for a message. A comma and
a space separate the addresses in the replacement text. However, the variable
is not generally available, to prevent exposure of Bcc recipients in
unprivileged users’ filter files. You can use $recipients only in these
cases:
</p>
<ol>
<li>
<p>
In a system filter file.
</p>
</li>
<li>
<p>
In the ACLs associated with the DATA command and with non-SMTP messages, that
is, the ACLs defined by <span class="docbook_option">acl_smtp_predata</span>, <span class="docbook_option">acl_smtp_data</span>,
<span class="docbook_option">acl_smtp_mime</span>, <span class="docbook_option">acl_not_smtp_start</span>, <span class="docbook_option">acl_not_smtp</span>, and
<span class="docbook_option">acl_not_smtp_mime</span>.
</p>
</li>
<li>
<p>
From within a <span class="docbook_function">local_scan()</span> function.
</p>
</li>
</ol>
</dd>

<dt>$recipients_count</dt>
<dd>
<p>

When a message is being processed, this variable contains the number of
envelope recipients that came with the message. Duplicates are not excluded
from the count. While a message is being received over SMTP, the number
increases for each accepted recipient. It can be referenced in an ACL.
</p>
</dd>

<dt>$regex_match_string</dt>
<dd>
<p>

This variable is set to contain the matching regular expression after a
<span class="docbook_option">regex</span> ACL condition has matched (see section <a href="ch41.html#SECTscanregex" title="41. Content scanning at ACL time">41.5</a>).
</p>
</dd>

<dt>$reply_address</dt>
<dd>
<p>

When a message is being processed, this variable contains the contents of the
<span class="docbook_emphasis">Reply-To:</span> header line if one exists and it is not empty, or otherwise the
contents of the <span class="docbook_emphasis">From:</span> header line. Apart from the removal of leading
white space, the value is not processed in any way. In particular, no RFC 2047
decoding or character code translation takes place.
</p>
</dd>

<dt>$return_path</dt>
<dd>
<p>

When a message is being delivered, this variable contains the return path –
the sender field that will be sent as part of the envelope. It is not enclosed
in &lt;&gt; characters. At the start of routing an address, $return_path has the
same value as $sender_address, but if, for example, an incoming message to a
mailing list has been expanded by a router which specifies a different address
for bounce messages, $return_path subsequently contains the new bounce
address, whereas $sender_address always contains the original sender address
that was received with the message. In other words, $sender_address contains
the incoming envelope sender, and $return_path contains the outgoing
envelope sender.
</p>
</dd>

<dt>$return_size_limit</dt>
<dd>
<p>

This is an obsolete name for $bounce_return_size_limit.
</p>
</dd>

<dt>$runrc</dt>
<dd>
<p>


This variable contains the return code from a command that is run by the
<span class="docbook_option">${run...}</span> expansion item. <span class="docbook_emphasis">Warning</span>: In a router or transport, you cannot
assume the order in which option values are expanded, except for those
preconditions whose order of testing is documented. Therefore, you cannot
reliably expect to set $runrc by the expansion of one option, and use it in
another.
</p>
</dd>

<dt>$self_hostname</dt>
<dd>
<p>


When an address is routed to a supposedly remote host that turns out to be the
local host, what happens is controlled by the <span class="docbook_option">self</span> generic router option.
One of its values causes the address to be passed to another router. When this
happens, $self_hostname is set to the name of the local host that the
original router encountered. In other circumstances its contents are null.
</p>
</dd>

<dt>$sender_address</dt>
<dd>
<p>

When a message is being processed, this variable contains the sender’s address
that was received in the message’s envelope. The case of letters in the address
is retained, in both the local part and the domain. For bounce messages, the
value of this variable is the empty string. See also $return_path.
</p>
</dd>

<dt>$sender_address_data</dt>
<dd>
<p>


If $address_data is set when the routers are called from an ACL to verify a
sender address, the final value is preserved in $sender_address_data, to
distinguish it from data from a recipient address. The value does not persist
after the end of the current ACL statement. If you want to preserve it for
longer, you can save it in an ACL variable.
</p>
</dd>

<dt>$sender_address_domain</dt>
<dd>
<p>

The domain portion of $sender_address.
</p>
</dd>

<dt>$sender_address_local_part</dt>
<dd>
<p>

The local part portion of $sender_address.
</p>
</dd>

<dt>$sender_data</dt>
<dd>
<p>

This variable is set after a lookup success in an ACL <span class="docbook_option">senders</span> condition or
in a router <span class="docbook_option">senders</span> option. It contains the data from the lookup, and the
value remains set until the next <span class="docbook_option">senders</span> test. Thus, you can do things like
this:
</p>
<div class="docbook_literallayout"><pre>
<code class="docbook_literal">require senders      = cdb*@;/some/file</code>
<code class="docbook_literal">deny    </code><span class="docbook_emphasis">some further test involving</span> <code class="docbook_literal">$sender_data</code>
</pre></div>
<p>
<span class="docbook_emphasis">Warning</span>: This variable is set only when a lookup is used as an indexing
method in the address list, using the semicolon syntax as in the example above.
The variable is not set for a lookup that is used as part of the string
expansion that all such lists undergo before being interpreted.
</p>
</dd>

<dt>$sender_fullhost</dt>
<dd>
<p>

When a message is received from a remote host, this variable contains the host
name and IP address in a single string. It ends with the IP address in square
brackets, followed by a colon and a port number if the logging of ports is
enabled. The format of the rest of the string depends on whether the host
issued a HELO or EHLO SMTP command, and whether the host name was verified by
looking up its IP address. (Looking up the IP address can be forced by the
<span class="docbook_option">host_lookup</span> option, independent of verification.) A plain host name at the
start of the string is a verified host name; if this is not present,
verification either failed or was not requested. A host name in parentheses is
the argument of a HELO or EHLO command. This is omitted if it is identical to
the verified host name or to the host’s IP address in square brackets.
</p>
</dd>

<dt>$sender_helo_name</dt>
<dd>
<p>

When a message is received from a remote host that has issued a HELO or EHLO
command, the argument of that command is placed in this variable. It is also
set if HELO or EHLO is used when a message is received using SMTP locally via
the <span class="docbook_option">-bs</span> or <span class="docbook_option">-bS</span> options.
</p>
</dd>

<dt>$sender_host_address</dt>
<dd>
<p>

When a message is received from a remote host, this variable contains that
host’s IP address. For locally submitted messages, it is empty.
</p>
</dd>

<dt>$sender_host_authenticated</dt>
<dd>
<p>

This variable contains the name (not the public name) of the authenticator
driver that successfully authenticated the client from which the message was
received. It is empty if there was no successful authentication. See also
$authenticated_id.
</p>
</dd>

<dt>$sender_host_name</dt>
<dd>
<p>

When a message is received from a remote host, this variable contains the
host’s name as obtained by looking up its IP address. For messages received by
other means, this variable is empty.
</p>
<p>

If the host name has not previously been looked up, a reference to
$sender_host_name triggers a lookup (for messages from remote hosts).
A looked up name is accepted only if it leads back to the original IP address
via a forward lookup. If either the reverse or the forward lookup fails to find
any data, or if the forward lookup does not yield the original IP address,
$sender_host_name remains empty, and $host_lookup_failed is set to “1”.
</p>
<p>

However, if either of the lookups cannot be completed (for example, there is a
DNS timeout), $host_lookup_deferred is set to “1”, and
$host_lookup_failed remains set to “0”.
</p>
<p>
Once $host_lookup_failed is set to “1”, Exim does not try to look up the
host name again if there is a subsequent reference to $sender_host_name
in the same Exim process, but it does try again if $host_lookup_deferred
is set to “1”.
</p>
<p>
Exim does not automatically look up every calling host’s name. If you want
maximum efficiency, you should arrange your configuration so that it avoids
these lookups altogether. The lookup happens only if one or more of the
following are true:
</p>
<ul>
<li>
<p>
A string containing $sender_host_name is expanded.
</p>
</li>
<li>
<p>
The calling host matches the list in <span class="docbook_option">host_lookup</span>. In the default
configuration, this option is set to *, so it must be changed if lookups are
to be avoided. (In the code, the default for <span class="docbook_option">host_lookup</span> is unset.)
</p>
</li>
<li>
<p>
Exim needs the host name in order to test an item in a host list. The items
that require this are described in sections <a href="ch10.html#SECThoslispatnam" title="10. Domain, host, address, and local part lists">10.13</a> and
<a href="ch10.html#SECThoslispatnamsk" title="10. Domain, host, address, and local part lists">10.16</a>.
</p>
</li>
<li>
<p>
The calling host matches <span class="docbook_option">helo_try_verify_hosts</span> or <span class="docbook_option">helo_verify_hosts</span>.
In this case, the host name is required to compare with the name quoted in any
EHLO or HELO commands that the client issues.
</p>
</li>
<li>
<p>
The remote host issues a EHLO or HELO command that quotes one of the
domains in <span class="docbook_option">helo_lookup_domains</span>. The default value of this option is
</p>
<div class="docbook_literallayout"><pre>
  helo_lookup_domains = @ : @[]
</pre></div>
<p>
which causes a lookup if a remote host (incorrectly) gives the server’s name or
IP address in an EHLO or HELO command.
</p>
</li>
</ul>
</dd>

<dt>$sender_host_port</dt>
<dd>
<p>

When a message is received from a remote host, this variable contains the port
number that was used on the remote host.
</p>
</dd>

<dt>$sender_ident</dt>
<dd>
<p>

When a message is received from a remote host, this variable contains the
identification received in response to an RFC 1413 request. When a message has
been received locally, this variable contains the login name of the user that
called Exim.
</p>
</dd>

<dt>$sender_rate_<span class="docbook_emphasis">xxx</span>
</dt>
<dd>
<p>
A number of variables whose names begin $sender_rate_ are set as part of the
<span class="docbook_option">ratelimit</span> ACL condition. Details are given in section
<a href="ch40.html#SECTratelimiting" title="40. Access control lists">40.36</a>.
</p>
</dd>

<dt>$sender_rcvhost</dt>
<dd>
<p>



This is provided specifically for use in <span class="docbook_emphasis">Received:</span> headers. It starts with
either the verified host name (as obtained from a reverse DNS lookup) or, if
there is no verified host name, the IP address in square brackets. After that
there may be text in parentheses. When the first item is a verified host name,
the first thing in the parentheses is the IP address in square brackets,
followed by a colon and a port number if port logging is enabled. When the
first item is an IP address, the port is recorded as “port=<span class="docbook_emphasis">xxxx</span>” inside
the parentheses.
</p>
<p>
There may also be items of the form “helo=<span class="docbook_emphasis">xxxx</span>” if HELO or EHLO
was used and its argument was not identical to the real host name or IP
address, and “ident=<span class="docbook_emphasis">xxxx</span>” if an RFC 1413 ident string is available. If
all three items are present in the parentheses, a newline and tab are inserted
into the string, to improve the formatting of the <span class="docbook_emphasis">Received:</span> header.
</p>
</dd>

<dt>$sender_verify_failure</dt>
<dd>
<p>

In an ACL, when a sender verification fails, this variable contains information
about the failure. The details are the same as for
$recipient_verify_failure.
</p>
</dd>

<dt>$sending_ip_address</dt>
<dd>
<p>

This variable is set whenever an outgoing SMTP connection to another host has
been set up. It contains the IP address of the local interface that is being
used. This is useful if a host that has more than one IP address wants to take
on different personalities depending on which one is being used. For incoming
connections, see $received_ip_address.
</p>
</dd>

<dt>$sending_port</dt>
<dd>
<p>

This variable is set whenever an outgoing SMTP connection to another host has
been set up. It contains the local port that is being used. For incoming
connections, see $received_port.
</p>
</dd>

<dt>$smtp_active_hostname</dt>
<dd>
<p>

During an incoming SMTP session, this variable contains the value of the active
host name, as specified by the <span class="docbook_option">smtp_active_hostname</span> option. The value of
$smtp_active_hostname is saved with any message that is received, so its
value can be consulted during routing and delivery.
</p>
</dd>

<dt>$smtp_command</dt>
<dd>
<p>

During the processing of an incoming SMTP command, this variable contains the
entire command. This makes it possible to distinguish between HELO and EHLO in
the HELO ACL, and also to distinguish between commands such as these:
</p>
<div class="docbook_literallayout"><pre>
MAIL FROM:&lt;&gt;
MAIL FROM: &lt;&gt;
</pre></div>
<p>
For a MAIL command, extra parameters such as SIZE can be inspected. For a RCPT
command, the address in $smtp_command is the original address before any
rewriting, whereas the values in $local_part and $domain are taken from
the address after SMTP-time rewriting.
</p>
</dd>

<dt>$smtp_command_argument</dt>
<dd>
<p>


While an ACL is running to check an SMTP command, this variable contains the
argument, that is, the text that follows the command name, with leading white
space removed. Following the introduction of $smtp_command, this variable is
somewhat redundant, but is retained for backwards compatibility.
</p>
</dd>

<dt>$smtp_count_at_connection_start</dt>
<dd>
<p>

This variable is set greater than zero only in processes spawned by the Exim
daemon for handling incoming SMTP connections. The name is deliberately long,
in order to emphasize what the contents are. When the daemon accepts a new
connection, it increments this variable. A copy of the variable is passed to
the child process that handles the connection, but its value is fixed, and
never changes. It is only an approximation of how many incoming connections
there actually are, because many other connections may come and go while a
single connection is being processed. When a child process terminates, the
daemon decrements its copy of the variable.
</p>
</dd>

<dt>$sn0 – $sn9</dt>
<dd>
<p>
These variables are copies of the values of the $n0 – $n9 accumulators
that were current at the end of the system filter file. This allows a system
filter file to set values that can be tested in users’ filter files. For
example, a system filter could set a value indicating how likely it is that a
message is junk mail.
</p>
</dd>

<dt>$spam_<span class="docbook_emphasis">xxx</span>
</dt>
<dd>
<p>
A number of variables whose names start with $spam are available when Exim
is compiled with the content-scanning extension. For details, see section
<a href="ch41.html#SECTscanspamass" title="41. Content scanning at ACL time">41.2</a>.
</p>
</dd>

<dt>$spool_directory</dt>
<dd>
<p>

The name of Exim’s spool directory.
</p>
</dd>

<dt>$spool_inodes</dt>
<dd>
<p>

The number of free inodes in the disk partition where Exim’s spool files are
being written. The value is recalculated whenever the variable is referenced.
If the relevant file system does not have the concept of inodes, the value of
is -1. See also the <span class="docbook_option">check_spool_inodes</span> option.
</p>
</dd>

<dt>$spool_space</dt>
<dd>
<p>

The amount of free space (as a number of kilobytes) in the disk partition where
Exim’s spool files are being written. The value is recalculated whenever the
variable is referenced. If the operating system does not have the ability to
find the amount of free space (only true for experimental systems), the space
value is -1. For example, to check in an ACL that there is at least 50
megabytes free on the spool, you could write:
</p>
<div class="docbook_literallayout"><pre>
condition = ${if &gt; {$spool_space}{50000}}
</pre></div>
<p>
See also the <span class="docbook_option">check_spool_space</span> option.
</p>
</dd>

<dt>$thisaddress</dt>
<dd>
<p>

This variable is set only during the processing of the <span class="docbook_option">foranyaddress</span>
command in a filter file. Its use is explained in the description of that
command, which can be found in the separate document entitled <span class="docbook_emphasis">Exim’s
interfaces to mail filtering</span>.
</p>
</dd>

<dt>$tls_certificate_verified</dt>
<dd>
<p>

This variable is set to “1” if a TLS certificate was verified when the
message was received, and “0” otherwise.
</p>
</dd>

<dt>$tls_cipher</dt>
<dd>
<p>

When a message is received from a remote host over an encrypted SMTP
connection, this variable is set to the cipher suite that was negotiated, for
example DES-CBC3-SHA. In other circumstances, in particular, for message
received over unencrypted connections, the variable is empty. Testing
$tls_cipher for emptiness is one way of distinguishing between encrypted and
non-encrypted connections during ACL processing.
</p>
<p>
The $tls_cipher variable retains its value during message delivery, except
when an outward SMTP delivery takes place via the <span class="docbook_command">smtp</span> transport. In this
case, $tls_cipher is cleared before any outgoing SMTP connection is made,
and then set to the outgoing cipher suite if one is negotiated. See chapter
<a href="ch39.html" title="39. Encrypted SMTP connections using TLS/SSL">39</a> for details of TLS support and chapter <a href="ch30.html" title="30. The smtp transport">30</a> for
details of the <span class="docbook_command">smtp</span> transport.
</p>
</dd>

<dt>$tls_peerdn</dt>
<dd>
<p>

When a message is received from a remote host over an encrypted SMTP
connection, and Exim is configured to request a certificate from the client,
the value of the Distinguished Name of the certificate is made available in the
$tls_peerdn during subsequent processing. Like $tls_cipher, the
value is retained during message delivery, except during outbound SMTP
deliveries.
</p>
</dd>

<dt>$tod_bsdinbox</dt>
<dd>
<p>

The time of day and the date, in the format required for BSD-style mailbox
files, for example: Thu Oct 17 17:14:09 1995.
</p>
</dd>

<dt>$tod_epoch</dt>
<dd>
<p>

The time and date as a number of seconds since the start of the Unix epoch.
</p>
</dd>

<dt>$tod_full</dt>
<dd>
<p>

A full version of the time and date, for example: Wed, 16 Oct 1995 09:51:40
+0100. The timezone is always given as a numerical offset from UTC, with
positive values used for timezones that are ahead (east) of UTC, and negative
values for those that are behind (west).
</p>
</dd>

<dt>$tod_log</dt>
<dd>
<p>

The time and date in the format used for writing Exim’s log files, for example:
1995-10-12 15:32:29, but without a timezone.
</p>
</dd>

<dt>$tod_logfile</dt>
<dd>
<p>

This variable contains the date in the format yyyymmdd. This is the format that
is used for datestamping log files when <span class="docbook_option">log_file_path</span> contains the <code class="docbook_literal">%D</code>
flag.
</p>
</dd>

<dt>$tod_zone</dt>
<dd>
<p>

This variable contains the numerical value of the local timezone, for example:
-0500.
</p>
</dd>

<dt>$tod_zulu</dt>
<dd>
<p>

This variable contains the UTC date and time in “Zulu” format, as specified
by ISO 8601, for example: 20030221154023Z.
</p>
</dd>

<dt>$value</dt>
<dd>
<p>

This variable contains the result of an expansion lookup, extraction operation,
or external command, as described above. It is also used during a
<span class="docbook_emphasis">reduce</span> expansion.
</p>
</dd>

<dt>$version_number</dt>
<dd>
<p>

The version number of Exim.
</p>
</dd>

<dt>$warn_message_delay</dt>
<dd>
<p>

This variable is set only during the creation of a message warning about a
delivery delay. Details of its use are explained in section <a href="ch46.html#SECTcustwarn" title="46. Customizing bounce and warning messages">46.2</a>.
</p>
</dd>

<dt>$warn_message_recipients</dt>
<dd>
<p>

This variable is set only during the creation of a message warning about a
delivery delay. Details of its use are explained in section <a href="ch46.html#SECTcustwarn" title="46. Customizing bounce and warning messages">46.2</a>.
</p>
</dd>
</dl>
<p>

</p>
</div>
</div>
<a class="previous_page" href="ch10.html">&lt;-previous</a><a class="next_page" href="ch12.html">next-&gt;</a>
</div></div>
<iframe id="branding" name="branding" src="../../../../branding/branding.html" height="0" frameborder="no" scrolling="no"></iframe><div id="footer">Website design by <a href="https://secure.grepular.com/">Mike Cardwell</a>, of <a href="http://cardwellit.com/">Cardwell IT Ltd.</a>
</div>
<div class="left_bar"></div>
<div class="right_bar"></div>
<div id="toc">
<ul class="hidden"></ul>
<img src="../../../../doc/contents.png" width="16" height="155">
</div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script><script type="text/javascript" src="../../../../common.js"></script><script type="text/javascript" src="../../../../doc/chapter.js"></script>
</body>
</html>