New Features in Exim
--------------------

This file contains descriptions of new features that have been added to Exim,
but have not yet made it into the main manual (which is most conveniently
updated when there is a relatively large batch of changes). The doc/ChangeLog
file contains a listing of all changes, including bug fixes.


Version 4.31
------------

 1. The support for maildirsize files has been completely re-written, in the
    light of a number of problems with the previous contributed implementation.
    In particular:

    . If the quota is zero, the maildirsize file is maintained, but no quota is
      imposed.

    . If the maildir directory does not exist, it is created before any attempt
      to write a maildirsize file.

    . The quota value in the file is just a cache; if the quota is changed in
      the transport, the new value overrides.

    . A regular expression is available for excluding directories from the
      count. This is set by the maildir_quota_directory_regex option, whose
      default value is

        maildir_quota_directory_regex = ^(?:cur|new|\..*)$

      which includes the cur and new directories, and any maildir++ folders,
      which are directories whose names begin with a dot. If you want to
      exclude the Trash folder from the count (as some sites do), you need to
      change this setting to

        maildir_quota_directory_regex = ^(?:cur|new|\.(?!Trash).*)$

      which uses a negative lookahead in the regex to exclude the directory
      whose name is .Trash. This option (maildir_quota_directory_regex) is used
      only when maildir_use_size_file is set.

 2. John Jetmore's "exipick" utility has been added to the distribution. It
    lists messages from the queue according to a variety of criteria. For
    details, run "exipick --help".

 3. If GnuTLS is used, version 1.0.0. or greater is required. The format for
    the display of Distinguished Names now uses commas instead of slashes for
    separators, in accordance with RFC 2253.

 4. The TLS code now supports CRLs. There is a global option tls_crl and an
    identically named option for the smtp transport. In each case, the value is
    expanded and must point to a file that contains a CRL in PEM format.

 5. The dnslookup router now supports the use of SRV records (see RFC 2782) in
    addition to MX and address records. The support is disabled by default. To
    enable SRV support, you need to set the check_srv option to the name of
    the service required. For example,

      check_srv = smtp

    looks for SRV records that refer to the normal smtp service. The option is
    expanded, so the service name can vary from message to message or address
    to address. This might be helpful if SRV records are being used for a
    submission service. If the expansion is forced to fail, the check_srv
    option is ignored, and the router proceeds to look for MX records in the
    normal way.

    When the expansion succeeds, the router searches first for SRV records for
    the given service (it assumes TCP protocol). A single SRV record with the
    host name "." indicates "no such service for this domain"; if this is
    encountered, the router declines. If other kinds of SRV record are found,
    they are used to construct a host list for delivery according to the rules
    of RFC 2782. MX records are not sought in this case.

    However, when no SRV records are found, MX records (and address records)
    are sought in the traditional way. In other words, SRV records take
    precedence over MX records, just as MX records take precedence over address
    records. Note that this behaviour is not sanctioned by RFC 2782, though a
    previous draft RFC defined it. It is apparently believed that MX records
    are sufficient for email and that SRV records should not be used for this
    purpose. However, SRV records to have an additional "weight" feature which
    some people might find useful when trying to split an SMTP load between
    hosts of different power.

    The mx_domains option, which used to mean "these domains must have MX
    records" is extended to mean "these domains must have either MX or SRV
    records". Perhaps at some future time I will rename it.

 6. There is a new logging option called "outgoing_port". It causes the port
    number to be added to delivery log lines (those containing => tags)
    following the IP address. This option is not included in the default
    setting, because for most "ordinary" configurations, the port number is
    always 25 (the SMTP port).

 7. There's a new expansion operator, ${eval10. It works like ${eval, except
    that it assumes all numbers are decimal, even if they start with a leading
    zero. This can be useful when processing numbers extracted from dates or
    times, which often do have leading zeros.

 8. The redirect router has a new option called qualify_domain. If this is set
    and an unqualified address (one without a domain) is generated, it is
    qualified with the domain specified by expanding this string, instead of
    the global setting in qualify_recipient. If the expansion fails, the router
    declines. If you want to revert to the default, you can have the expansion
    generate $qualify_recipient.

 9. exigrep's output now also includes lines that are not related to any
    particular message, but which do match the pattern.

10. There is a new global option called write_rejectlog, which defaults true.
    If it is set false, Exim no longer writes anything to the reject log.

11. There is a new log selector called return_path_on_delivery, which causes
    the return path to be included in delivery and bounce lines, using the tag
    "P=". Compare sender_on_delivery, which adds the original envelope sender
    address tagged with "F=".



Version 4.30
------------

The documentation is up-to-date for the 4.30 release. What follows here is a
brief list of the new features that have been added since 4.20.

 1. New expansion operator: ${quote_local_part. The ${quote operator now quotes
    empty strings. New expansion conditions: eqi, isip, isip4, isip6.

 2. New option -t<n> for exigrep.

 3. New configuration options/features: .include_if_exists, host_lookup_order,
    transport_filter_timeout, smtp_max_synprot_errors, tcp_nodelay,
    bounce_return_body, tls_remember_esmtp, hosts_avoid_esmtp,
    rcpt_include_affixes, queue_only_override, syslog_duplication,
    acl_smtp_mailauth, process_log_path, extra_local_interfaces. If
    received_header_text expands to an empty string, no Received: header line
    is added to the message.

 4. New variables: $received_count, $local_user_uid, $local_user_gid,
    $mailstore_basename. The $sender_host_variable now automatically does a
    lookup when referenced. The $acl_xxx variables are now saved with
    messages so are available at delivery time.

 5. Exim maildir support now includes support for maildirsize files.

 6. Some new error conditions are now recognizable in retry rules:

      timeout_A           any timeout for a host not obtained from an MX record
      timeout_connect_A   ditto, for connection timeouts only
      timeout_MX          any timeout for a host obtained from an MX record
      timeout_connect_MX  ditto, for connection timeouts only

 7. The "port" option of the smtp transport is now expanded.

 8. New ACL features: "logwrite" modifier; log_message modifier is used when
    "discard" triggers. The feature for contraining the result of dnslists
    lookup is considerably extended.

 9. Custom header lines can now be added to messages sent by "mail" or
    "vacation" in filter files, by means of the "extra_headers" argument.

10. If the definition of the Exim user in Local/Makefile is given in the form

      EXIM_USER=ref:exim

    the name is bound into the binary, instead of being looked up at build
    time.

11. New build-time options FIXED_NEVER_USERS, ALT_CONFIG_PREFIX,
    ALT_CONFIG_ROOT_ONLY, DISABLE_D_OPTION.

12. An LDAP query can now be preceded by "dereference=" to set the dereferenc-
    ing parameter for alias values.

13. The functions Exim::debug_write() and Exim::log_write() are now available
    for use in embedded Perl.

14. Support for lookups in Interbase databases has been added, courtesy of
    Ard Biesheuvel.

15. The new lookup type nwildlsearch is like wildlsearch, except that the key
    strings in the file are not string-expanded.

16. New log selector: smtp_incomplete_transaction.

17. When an ACL is read dynamically from a file (or anywhere else), the lines
    are now processed in the same way as lines in the Exim configuration file.

18. Command line options: -ti is equivalent to -t -i; -Ooption=value is
    ignored; -bhc is like -bh but does callouts.

19. When execve() failed while trying to run a command in a pipe transport,
    Exim was returning EX_UNAVAILBLE (69) from the subprocess. However, this
    could be confused with a return value of 69 from the command itself. This
    has been changed to 127, the value the shell returns if it is asked to run
    a non-existent command.

20. New eximstats option: -nt.

21. The way that the $h_ (and $header_) expansions work has been changed by the
    addition of RFC 2047 decoding.

22. There is now support for Sieve filters (RFC 3028).

23. The smtp_printf() function is now available for (careful) use in
    local_scan() functions.

24. Following a discussion on the list, the rules by which Exim recognises line
    endings on incoming messages have been changed. The -dropcr and drop_cr
    options are now no-ops, retained only for backwards compatibility. The
    following line terminators are recognized: LF CRLF CR.

25. An item in a manualroute/queryprogram list of hosts can be followed by /MX
    to mean "those hosts to which this MX resolves".

26. Exim now has support for Cyrus saslauthd authentication. This works in a
    similar way to Cyrus pwcheck authentication (which is now deprecated).

27. The way daemon_smtp_port, local_interfaces, and -oX interact has been
    extended, compatibily I hope. A new option called extra_local_interfaces
    has been added.

****
