Previous   Next   Contents       (Exim 4.20 Specification)

20. The queryprogram router

The queryprogram router routes an address by running an external command and acting on its output. This is an expensive way to route, and is intended mainly for use in lightly-loaded systems, or for performing experiments. However, if it is possible to use the pre~con~dition options (domains, local_parts, etc) to skip this router for most addresses, it could sensibly be used in special cases, even on a busy host. There are the following private options:


command

Type:  string, expanded
Default:  unset

This option must be set. It specifies the command that is to be run. The command is split up into a command name and arguments, and then each is expanded separately (exactly as for a pipe transport, described in chapter 28).


command_group

Type:  string
Default:  unset

This option specifies a gid to be set when running the command. It must be set if command_user specifies a numerical uid. If it begins with a digit, it is interpreted as the numerical value of the gid. Otherwise it is looked up using getgrnam().


command_user

Type:  string
Default:  unset

This option must be set. It specifies the uid which is set when running the command. If it begins with a digit it is interpreted as the numerical value of the uid. Otherwise, it is looked up using getpwnam() to obtain a value for the uid and, if command_group is not set, a value for the gid also.


current_directory

Type:  string
Default:  /

This option specifies an absolute path which is made the current directory before running the command.


timeout

Type:  time
Default:  1h

If the command does not complete within the timeout period, its process group is killed and the message is frozen. A value of zero time specifies no timeout.



The standard output of the command is connected to a pipe, which is read when the command terminates. It should consist of a single line of output, containing up to five fields, separated by white space. The first field is one of the following words (case-insensitive):

When the first word is accept, the remainder of the line consists of a number of keyed data values, as follows (split into two lines here, to fit on the page):

  ACCEPT TRANSPORT=<transport> HOSTS=<host list>
   LOOKUP=byname|bydns DATA=<text>

The data items can be given in any order, and all are optional. If no transport is included, the transport specified by the generic transport option is used. The host list and lookup type are needed only if the transport is an smtp transport that does not itself have a host list.

If the lookup type is not specified, Exim behaves as follows: First, a DNS lookup is done. If this yields anything other than HOST_NOT_FOUND, that result is used. Otherwise, Exim goes on to try a call to getipnodebyname() or gethostbyname(), and the result of the lookup is the result of that call.

If the DATA field is set, its value is placed in the $address_data variable. For example, this return line

  accept hosts=x1.y.example:x2.y.example data="rule1"

routes the address to the default transport, with a host list containing two hosts. When the transport runs, the string ``rule1'' is in $address_data.


Previous  Next  Contents       (Exim 4.20 Specification)