Re: [exim] Filter apparently being ignored in exim4.43.

Top Page
Delete this message
Reply to this message
Author: Bevis R W King
Date:  
To: exim-users
Subject: Re: [exim] Filter apparently being ignored in exim4.43.
On Mon, 2004-11-29 at 10:10 +0000, Philip Hazel wrote:
> That's far too late in the delivery process. You need to look much
> further up in the debug output to see when it made the decision to do
> that delivery. What happened when it read the filter file? DID it read
> the filter file? Are your routers in the right order (filtering one
> before normal delivery one)?


OK, that's useful - it has choosen to skip the userforward director for
some reason... as in here:

9096 system_aliases router declined for brwk@???
9096 --------> userforward router <--------
9096 local_part=brwk domain=bevteccom.co.uk
9096 userforward router skipped: verify 2 0 0
9096 --------> localuser router <--------

The order of the routers in the exim.conf seems right. I enclose both
the exim.conf and the full log of a couple of messages arriving for
reference.

Thanks.

Regards, Bevis.
######################################################################
#                  Runtime configuration file for Exim               #
######################################################################



# This is a default configuration file which will operate correctly in
# uncomplicated installations. Please see the manual for a complete list
# of all the runtime configuration options that can be included in a
# configuration file. There are many more than are mentioned here. The
# manual is in the file doc/spec.txt in the Exim distribution as a plain
# ASCII file. Other formats (PostScript, Texinfo, HTML, PDF) are available
# from the Exim ftp sites. The manual is also online at the Exim web sites.


# This file is divided into several parts, all but the first of which are
# headed by a line starting with the word "begin". Only those parts that
# are required need to be present. Blank lines, and lines starting with #
# are ignored.


########### IMPORTANT ########## IMPORTANT ########### IMPORTANT ###########
#                                                                          #
# Whenever you change Exim's configuration file, you *must* remember to    #
# HUP the Exim daemon, because it will not pick up the new configuration   #
# until you do. However, any other Exim processes that are started, for    #
# example, a process started by an MUA in order to send a message, will    #
# see the new configuration as soon as it is in place.                     #
#                                                                          #
# You do not need to HUP the daemon for changes in auxiliary files that    #
# are referenced from this file. They are read every time they are used.   #
#                                                                          #
# It is usually a good idea to test a new configuration for syntactic      #
# correctness before installing it (for example, by running the command    #
# "exim -C /config/file.new -bV").                                         #
#                                                                          #
########### IMPORTANT ########## IMPORTANT ########### IMPORTANT ###########




######################################################################
#                    MAIN CONFIGURATION SETTINGS                     #
######################################################################


# Specify your host's canonical name here. This should normally be the fully
# qualified "official" name of your host. If this option is not set, the
# uname() function is called to obtain the name. In many cases this does
# the right thing and you need not set anything explicitly.

# primary_hostname =


# The next three settings create two lists of domains and one list of hosts.
# These lists are referred to later in this configuration using the syntax
# +local_domains, +relay_to_domains, and +relay_from_hosts, respectively. They
# are all colon-separated lists:

domainlist local_domains = bevteccom.co.uk : \
    bevteccom.com : \
    budd-rdc.org : \
    budd-rdc.com : \
    tehenga.free-online.co.uk
domainlist relay_to_domains =
hostlist   relay_from_hosts = 127.0.0.1 : \
    cyane.bevteccom.co.uk : \
    callisto.bevteccom.co.uk : \
    livia.bevteccom.co.uk : \
    xena.bevteccom.co.uk : \
    gabrielle.bevteccom.co.uk : \
    callisto-w.bevteccom.co.uk


# Most straightforward access control requirements can be obtained by
# appropriate settings of the above options. In more complicated situations, you
# may need to modify the Access Control List (ACL) which appears later in this
# file.

# The first setting specifies your local domains, for example:
#
# domainlist local_domains = my.first.domain : my.second.domain
#
# You can use "@" to mean "the name of the local host", as in the default
# setting above. This is the name that is specified by primary_hostname,
# as specified above (or defaulted). If you do not want to do any local
# deliveries, remove the "@" from the setting above. If you want to accept mail
# addressed to your host's literal IP address, for example, mail addressed to
# "user@???", you can add "@[]" as an item in the local domains
# list. You also need to uncomment "allow_domain_literals" below. This is not
# recommended for today's Internet.

# The second setting specifies domains for which your host is an incoming relay.
# If you are not doing any relaying, you should leave the list empty. However,
# if your host is an MX backup or gateway of some kind for some domains, you
# must set relay_to_domains to match those domains. For example:
#
# domainlist relay_to_domains = *.myco.com : my.friend.org
#
# This will allow any host to relay through your host to those domains.
# See the section of the manual entitled "Control of relaying" for more
# information.

# The third setting specifies hosts that can use your host as an outgoing relay
# to any other host on the Internet. Such a setting commonly refers to a
# complete local network as well as the localhost. For example:
#
# hostlist relay_from_hosts = 127.0.0.1 : 192.168.0.0/16
#
# The "/16" is a bit mask (CIDR notation), not a number of hosts. Note that you
# have to include 127.0.0.1 if you want to allow processes on your host to send
# SMTP mail by using the loopback address. A number of MUAs use this method of
# sending mail.


# All three of these lists may contain many different kinds of item, including
# wildcarded names, regular expressions, and file lookups. See the reference
# manual for details. The lists above are used in the access control list for
# incoming messages. The name of this ACL is defined here:

acl_smtp_rcpt = acl_check_rcpt

# You should not change that setting until you understand how ACLs work.

# The following ACL entries are used if you want to do content scanning with
# the exiscan-acl patch. When you uncomment one of these lines, you must also
# review the respective entries in the ACL section further below.

# acl_smtp_mime = acl_check_mime
# acl_smtp_data = acl_check_content

# This configuration variable defines the virus scanner that is used with
# the 'malware' ACL condition of the exiscan acl-patch. If you do not use
# virus scanning, leave it commented. Please read doc/exiscan-acl-readme.txt
# for a list of supported scanners.

# av_scanner = sophie:/var/run/sophie

# The following setting is only needed if you use the 'spam' ACL condition
# of the exiscan-acl patch. It specifies on which host and port the SpamAssassin
# "spamd" daemon is listening. If you do not use this condition, or you use
# the default of "127.0.0.1 783", you can omit this option.

# spamd_address = 127.0.0.1 783

# Specify the domain you want to be added to all unqualified addresses
# here. An unqualified address is one that does not contain an "@" character
# followed by a domain. For example, "caesar@???" is a fully qualified
# address, but the string "caesar" (i.e. just a login name) is an unqualified
# email address. Unqualified addresses are accepted only from local callers by
# default. See the recipient_unqualified_hosts option if you want to permit
# unqualified addresses from remote sources. If this option is not set, the
# primary_hostname value is used for qualification.

# qualify_domain =
qualify_domain = bevteccom.co.uk


# If you want unqualified recipient addresses to be qualified with a different
# domain to unqualified sender addresses, specify the recipient domain here.
# If this option is not set, the qualify_domain value is used.

# qualify_recipient =


# The following line must be uncommented if you want Exim to recognize
# addresses of the form "user@???" that is, with a "domain literal"
# (an IP address) instead of a named domain. The RFCs still require this form,
# but it makes little sense to permit mail to be sent to specific hosts by
# their IP address in the modern Internet. This ancient format has been used
# by those seeking to abuse hosts by using them for unwanted relaying. If you
# really do want to support domain literals, uncomment the following line, and
# see also the "domain_literal" router below.

# allow_domain_literals


# No deliveries will ever be run under the uids of these users (a colon-
# separated list). An attempt to do so causes a panic error to be logged, and
# the delivery to be deferred. This is a paranoic safety catch. There is an
# even stronger safety catch in the form of the FIXED_NEVER_USERS setting
# in the configuration for building Exim. The list of users that it specifies
# is built into the binary, and cannot be changed. The option below just adds
# additional users to the list. The default for FIXED_NEVER_USERS is "root",
# but just to be absolutely sure, the default here is also "root".

# Note that the default setting means you cannot deliver mail addressed to root
# as if it were a normal user. This isn't usually a problem, as most sites have
# an alias for root that redirects such mail to a human administrator.

never_users = root


# The setting below causes Exim to do a reverse DNS lookup on all incoming
# IP calls, in order to get the true host name. If you feel this is too
# expensive, you can specify the networks for which a lookup is done, or
# remove the setting entirely.

host_lookup = *


# The settings below, which are actually the same as the defaults in the
# code, cause Exim to make RFC 1413 (ident) callbacks for all incoming SMTP
# calls. You can limit the hosts to which these calls are made, and/or change
# the timeout that is used. If you set the timeout to zero, all RFC 1413 calls
# are disabled. RFC 1413 calls are cheap and can provide useful information
# for tracing problem messages, but some hosts and firewalls have problems
# with them. This can result in a timeout instead of an immediate refused
# connection, leading to delays on starting up an SMTP session.

rfc1413_hosts = *
rfc1413_query_timeout = 30s


# By default, Exim expects all envelope addresses to be fully qualified, that
# is, they must contain both a local part and a domain. If you want to accept
# unqualified addresses (just a local part) from certain hosts, you can specify
# these hosts by setting one or both of
#
# sender_unqualified_hosts =
# recipient_unqualified_hosts =
#
# to control sender and recipient addresses, respectively. When this is done,
# unqualified addresses are qualified using the settings of qualify_domain
# and/or qualify_recipient (see above).


# If you want Exim to support the "percent hack" for certain domains,
# uncomment the following line and provide a list of domains. The "percent
# hack" is the feature by which mail addressed to x%y@z (where z is one of
# the domains listed) is locally rerouted to x@y and sent on. If z is not one
# of the "percent hack" domains, x%y is treated as an ordinary local part. This
# hack is rarely needed nowadays; you should not enable it unless you are sure
# that you really need it.
#
# percent_hack_domains =
#
# As well as setting this option you will also need to remove the test
# for local parts containing % in the ACL definition below.


# When Exim can neither deliver a message nor return it to sender, it "freezes"
# the delivery error message (aka "bounce message"). There are also other
# circumstances in which messages get frozen. They will stay on the queue for
# ever unless one of the following options is set.

# This option unfreezes frozen bounce messages after two days, tries
# once more to deliver them, and ignores any delivery failures.

ignore_bounce_errors_after = 2d

# This option cancels (removes) frozen messages that are older than a week.

timeout_frozen_after = 7d



######################################################################
#                       ACL CONFIGURATION                            #
#         Specifies access control lists for incoming SMTP mail      #
######################################################################


begin acl

# This access control list is used for every RCPT command in an incoming
# SMTP message. The tests are run in order until the address is either
# accepted or denied.

acl_check_rcpt:

# Accept if the source is local SMTP (i.e. not over TCP/IP). We do this by
# testing for an empty sending host field.

accept hosts = :

#############################################################################
# The following section of the ACL is concerned with local parts that contain
# @ or % or ! or / or | or dots in unusual places.
#
# The characters other than dots are rarely found in genuine local parts, but
# are often tried by people looking to circumvent relaying restrictions.
# Therefore, although they are valid in local parts, these rules lock them
# out, as a precaution.
#
# Empty components (two dots in a row) are not valid in RFC 2822, but Exim
# allows them because they have been encountered. (Consider local parts
# constructed as "firstinitial.secondinitial.familyname" when applied to
# someone like me, who has no second initial.) However, a local part starting
# with a dot or containing /../ can cause trouble if it is used as part of a
# file name (e.g. for a mailing list). This is also true for local parts that
# contain slashes. A pipe symbol can also be troublesome if the local part is
# incorporated unthinkingly into a shell command line.
#
# Two different rules are used. The first one is stricter, and is applied to
# messages that are addressed to one of the local domains handled by this
# host. It blocks local parts that begin with a dot or contain @ % ! / or |.
# If you have local accounts that include these characters, you will have to
# modify this rule.

  deny    message       = Restricted characters in address
          domains       = +local_domains
          local_parts   = ^[.] : ^.*[@%!/|]


# The second rule applies to all other domains, and is less strict. This
# allows your own users to send outgoing messages to sites that use slashes
# and vertical bars in their local parts. It blocks local parts that begin
# with a dot, slash, or vertical bar, but allows these characters within the
# local part. However, the sequence /../ is barred. The use of @ % and ! is
# blocked, as before. The motivation here is to prevent your users (or
# your users' viruses) from mounting certain kinds of attack on remote sites.

  deny    message       = Restricted characters in address
          domains       = !+local_domains
          local_parts   = ^[./|] : ^.*[@%!] : ^.*/\\.\\./
  #############################################################################


# Accept mail to postmaster in any local domain, regardless of the source,
# and without verifying the sender.

  accept  local_parts   = postmaster
          domains       = +local_domains


# Deny unless the sender address can be verified.

  require verify        = sender


  #############################################################################
  # There are no checks on DNS "black" lists because the domains that contain
  # these lists are changing all the time. However, here are two examples of
  # how you could get Exim to perform a DNS black list lookup at this point.
  # The first one denies, while the second just warns.
  #
  # deny    message       = rejected because $sender_host_address is in a black list at $dnslist_domain\n$dnslist_text
  #         dnslists      = black.list.example
  #
  # warn    message       = X-Warning: $sender_host_address is in a black list at $dnslist_domain
  #         log_message   = found in $dnslist_domain
  #         dnslists      = black.list.example
  #############################################################################


# Accept if the address is in a local domain, but only if the recipient can
# be verified. Otherwise deny. The "endpass" line is the border between
# passing on to the next ACL statement (if tests above it fail) or denying
# access (if tests below it fail).

  accept  domains       = +local_domains
          endpass
          verify        = recipient


# Accept if the address is in a domain for which we are relaying, but again,
# only if the recipient can be verified.

  accept  domains       = +relay_to_domains
          endpass
          verify        = recipient


# If control reaches this point, the domain is neither in +local_domains
# nor in +relay_to_domains.

# Accept if the message comes from one of the hosts for which we are an
# outgoing relay. Recipient verification is omitted here, because in many
# cases the clients are dumb MUAs that don't cope well with SMTP error
# responses. If you are actually relaying out from MTAs, you should probably
# add recipient verification here.

  accept  hosts         = +relay_from_hosts


# Accept if the message arrived over an authenticated connection, from
# any host. Again, these messages are usually from MUAs, so recipient
# verification is omitted.

accept authenticated = *

# Reaching the end of the ACL causes a "deny", but we might as well give
# an explicit message.

  deny    message       = relay not permitted



# These access control lists are used for content scanning with the exiscan-acl
# patch. You must also uncomment the entries for acl_smtp_data and acl_smtp_mime
# (scroll up), otherwise the ACLs will not be used. IMPORTANT: the default entries here
# should be treated as EXAMPLES. You MUST read the file doc/exiscan-acl-spec.txt
# to fully understand what you are doing ...

acl_check_mime:

# Decode MIME parts to disk. This will support virus scanners later.
warn decode = default

  # File extension filtering.
  deny message = Blacklisted file extension detected
       condition = ${if match \
                        {${lc:$mime_filename}} \
                        {\N(\.exe|\.pif|\.bat|\.scr|\.lnk|\.com)$\N} \
                     {1}{0}}


  # Reject messages that carry chinese character sets.
  # WARNING: This is an EXAMPLE.
  deny message = Sorry, noone speaks chinese here
       condition = ${if eq{$mime_charset}{gb2312}{1}{0}}


accept

acl_check_content:

  # Reject virus infested messages.
  deny  message = This message contains malware ($malware_name)
        malware = *


  # Always add X-Spam-Score and X-Spam-Report headers, using SA system-wide settings
  # (user "nobody"), no matter if over threshold or not.
  warn  message = X-Spam-Score: $spam_score ($spam_bar)
        spam = nobody:true
  warn  message = X-Spam-Report: $spam_report
        spam = nobody:true


  # Add X-Spam-Flag if spam is over system-wide threshold
  warn message = X-Spam-Flag: YES
       spam = nobody


  # Reject spam messages with score over 10, using an extra condition.
  deny  message = This message scored $spam_score points. Congratulations!
        spam = nobody:true
        condition = ${if >{$spam_score_int}{100}{1}{0}}


# finally accept all the rest
accept


######################################################################
#                      ROUTERS CONFIGURATION                         #
#               Specifies how addresses are handled                  #
######################################################################
#     THE ORDER IN WHICH THE ROUTERS ARE DEFINED IS IMPORTANT!       #
# An address is passed to each router in turn until it is accepted.  #
######################################################################


begin routers

# This router routes to remote hosts over SMTP by explicit IP address,
# when an email address is given in "domain literal" form, for example,
# <user@???>. The RFCs require this facility. However, it is
# little-known these days, and has been exploited by evil people seeking
# to abuse SMTP relays. Consequently it is commented out in the default
# configuration. If you uncomment this router, you also need to uncomment
# allow_domain_literals above, so that Exim can recognize the syntax of
# domain literal addresses.

# domain_literal:
# driver = ipliteral
# domains = ! +local_domains
# transport = remote_smtp


# This router routes addresses that are not in local domains by doing a DNS
# lookup on the domain name. Any domain that resolves to 0.0.0.0 or to a
# loopback interface address (127.0.0.0/8) is treated as if it had no DNS
# entry. Note that 0.0.0.0 is the same as 0.0.0.0/32, which is commonly treated
# as the local host inside the network stack. It is not 0.0.0.0/0, the default
# route. If the DNS lookup fails, no further routers are tried because of
# the no_more setting, and consequently the address is unrouteable.

dnslookup:
driver = dnslookup
domains = ! +local_domains
transport = remote_smtp
ignore_target_hosts = 0.0.0.0 : 127.0.0.0/8
no_more


# The remaining routers handle addresses in the local domain(s).


# This router handles aliasing using a linearly searched alias file with the
# name SYSTEM_ALIASES_FILE. When this configuration is installed automatically,
# the name gets inserted into this file from whatever is set in Exim's
# build-time configuration. The default path is the traditional /etc/aliases.
# If you install this configuration by hand, you need to specify the correct
# path in the "data" setting below.
#
##### NB You must ensure that the alias file exists. It used to be the case
##### NB that every Unix had that file, because it was the Sendmail default.
##### NB These days, there are systems that don't have it. Your aliases
##### NB file should at least contain an alias for "postmaster".
#
# If any of your aliases expand to pipes or files, you will need to set
# up a user and a group for these deliveries to run under. You can do
# this by uncommenting the "user" option below (changing the user name
# as appropriate) and adding a "group" option if necessary. Alternatively, you
# can specify "user" on the transports that are used. Note that the transports
# listed below are the same as are used for .forward files; you might want
# to set up different ones for pipe and file deliveries from aliases.

system_aliases:
driver = redirect
allow_fail
allow_defer
data = ${lookup{$local_part}lsearch{/etc/exim/mail.aliases}}
# user = exim
file_transport = address_file
pipe_transport = address_pipe


# This router handles forwarding using traditional .forward files in users'
# home directories. If you want it also to allow mail filtering when a forward
# file starts with the string "# Exim filter" or "# Sieve filter", uncomment
# the "allow_filter" option.

# If you want this router to treat local parts with suffixes introduced by "-"
# or "+" characters as if the suffixes did not exist, uncomment the two local_
# part_suffix options. Then, for example, xxxx-foo@??? will be treated
# in the same way as xxxx@??? by this router. You probably want to make
# the same change to the localuser router.

# The no_verify setting means that this router is skipped when Exim is
# verifying addresses. Similarly, no_expn means that this router is skipped if
# Exim is processing an EXPN command.

# The check_ancestor option means that if the forward file generates an
# address that is an ancestor of the current one, the current one gets
# passed on instead. This covers the case where A is aliased to B and B
# has a .forward file pointing to A.

# The three transports specified at the end are those that are used when
# forwarding generates a direct delivery to a file, or to a pipe, or sets
# up an auto-reply, respectively.

userforward:
driver = redirect
check_local_user
# local_part_suffix = +* : -*
# local_part_suffix_optional
file = $home/.forward
allow_filter
directory_transport = local_delivery
no_verify
no_expn
check_ancestor
file_transport = address_file
pipe_transport = address_pipe
reply_transport = address_reply


# This router matches local user mailboxes. If the router fails, the error
# message is "Unknown user".

# If you want this router to treat local parts with suffixes introduced by "-"
# or "+" characters as if the suffixes did not exist, uncomment the two local_
# part_suffix options. Then, for example, xxxx-foo@??? will be treated
# in the same way as xxxx@??? by this router.

localuser:
driver = accept
check_local_user
# local_part_suffix = +* : -*
# local_part_suffix_optional
transport = local_delivery
cannot_route_message = Unknown user



######################################################################
#                      TRANSPORTS CONFIGURATION                      #
######################################################################
#                       ORDER DOES NOT MATTER                        #
#     Only one appropriate transport is called for each delivery.    #
######################################################################


# A transport is used only when referenced from a router that successfully
# handles an address.

begin transports


# This transport is used for delivering messages over SMTP connections.

remote_smtp:
driver = smtp


# This transport is used for local delivery to user mailboxes in traditional
# BSD mailbox format. By default it will be run under the uid and gid of the
# local user, and requires the sticky bit to be set on the /var/mail directory.
# Some systems use the alternative approach of running mail deliveries under a
# particular group instead of using the sticky bit. The commented options below
# show how this can be done.

local_delivery:
driver = appendfile
# file = /var/mail/$local_part
directory = ${home}/.maildir
delivery_date_add
envelope_to_add
maildir_format
return_path_add
# group = mail
# mode = 0660


# This transport is used for handling pipe deliveries generated by alias or
# .forward files. If the pipe generates any standard output, it is returned
# to the sender of the message as a delivery error. Set return_fail_output
# instead of return_output if you want this to happen only when the pipe fails
# to complete normally. You can set different transports for aliases and
# forwards if you want to - see the references to address_pipe in the routers
# section above.

address_pipe:
driver = pipe
return_output


# This transport is used for handling deliveries directly to files that are
# generated by aliasing or forwarding.

address_file:
driver = appendfile
delivery_date_add
envelope_to_add
return_path_add


# This transport is used for handling autoreplies generated by the filtering
# option of the userforward router.

address_reply:
driver = autoreply


# This transport is used to deliver local mail to cyrus IMAP server via UNIX
# socket.
#
#local_delivery:
# driver = lmtp
# command = "/usr/lib/cyrus-imapd/deliver -l"
# batch_max = 20
# user = cyrus


######################################################################
#                      RETRY CONFIGURATION                           #
######################################################################


begin retry

# This single retry rule applies to all domains and all errors. It specifies
# retries every 15 minutes for 2 hours, then increasing retry intervals,
# starting at 1 hour and increasing each time by a factor of 1.5, up to 16
# hours, then retries every 6 hours until 4 days have passed since the first
# failed delivery.

# Address or Domain    Error       Retries
# -----------------    -----       -------


*                      *           F,2h,15m; G,16h,1h,1.5; F,4d,6h




######################################################################
#                      REWRITE CONFIGURATION                         #
######################################################################


# There are no rewriting specifications in this default configuration file.

begin rewrite



######################################################################
#                   AUTHENTICATION CONFIGURATION                     #
######################################################################


# There are no authenticator specifications in this default configuration file.

begin authenticators



######################################################################
#                   CONFIGURATION FOR local_scan()                   #
######################################################################


# If you have built Exim to include a local_scan() function that contains
# tables for private options, you can define those options here. Remember to
# uncomment the "begin" line. It is commented by default because it provokes
# an error with Exim binaries that are not built with LOCAL_SCAN_HAS_OPTIONS
# set in the Local/Makefile.

# begin local_scan


# End of Exim configuration file
Exim version 4.43 uid=0 gid=0 pid=8238 D=fbb95cfd
Berkeley DB: Sleepycat Software: Berkeley DB 4.2.52: (September 21, 2004)
Support for: iconv() IPv6 PAM Perl TCPwrappers OpenSSL
Lookups: lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmnz dnsdb dsearch ldap ldapdn ldapm nis nis0 nisplus passwd
Authenticators: cram_md5 cyrus_sasl plaintext spa
Routers: accept dnslookup ipliteral manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore/mbx autoreply lmtp pipe smtp
Fixed never_users: 0
changed uid/gid: forcing real = effective
  uid=0 gid=0 pid=8238
  auxiliary group list: <none>
configuration file is /etc/exim/exim.conf
log selectors = 00000ffc 00010400
trusted user
admin user
originator: uid=0 gid=0 login=root name=root
 8238 listening on all interfaces (IPv6) port 25
 8238 listening on all interfaces (IPv4) port 25
 8238 pid written to /var/run/exim.pid
 8238 changed uid/gid: running as a daemon
 8238   uid=93 gid=93 pid=8238
 8238   auxiliary group list: 93
 8238 LOG: MAIN
 8238   exim 4.43 daemon started: pid=8238, -q10m, listening for SMTP on port 25 (IPv6 and IPv4)
 8238 set_process_info:  8238 daemon: -q10m, listening for SMTP on port 25 (IPv6 and IPv4)
 8238 daemon running with uid=93 gid=93 euid=93 egid=93
 8238 SIGALRM received
 8240 Starting queue-runner: pid 8240
 8240 exec /usr/sbin/exim -q
 8238 1 queue-runner process running
 8238 Listening...
 8238 child 8240 ended: status=0x0
 8238 0 queue-runner processes now running
 8238 Listening...
 8238 SIGALRM received
 8815 Starting queue-runner: pid 8815
 8815 exec /usr/sbin/exim -q
 8238 1 queue-runner process running
 8238 Listening...
 8238 child 8815 ended: status=0x0
 8238 0 queue-runner processes now running
 8238 Listening...
 8238 Connection request from 66.94.237.24 port 32936
 8238 search_tidyup called
 9096 host in rfc1413_hosts? yes (matched "*")
 9096 doing ident callback
 8238 1 SMTP accept process running
 8238 Listening...
 9096 ident connection to 66.94.237.24 failed: Connection timed out
 9096 sender_fullhost = [66.94.237.24]
 9096 sender_rcvhost = [66.94.237.24]
 9096 Process 9096 is handling incoming connection from [66.94.237.24]
 9096 host in host_lookup? yes (matched "*")
 9096 looking up host name for 66.94.237.24
 9096 DNS lookup of 24.237.94.66.in-addr.arpa (PTR) succeeded
 9096 IP address lookup yielded n13a.bulk.scd.yahoo.com
 9096 gethostbyname2(af=inet6) returned 4 (NO_DATA)
 9096 gethostbyname2 looked up these IP addresses:
 9096   name=n13a.bulk.scd.yahoo.com address=66.94.237.24
 9096 checking addresses for n13a.bulk.scd.yahoo.com
 9096   66.94.237.24 OK
 9096 sender_fullhost = n13a.bulk.scd.yahoo.com [66.94.237.24]
 9096 sender_rcvhost = n13a.bulk.scd.yahoo.com ([66.94.237.24])
 9096 set_process_info:  9096 handling incoming connection from n13a.bulk.scd.yahoo.com [66.94.237.24]
 9096 host in host_reject_connection? no (option unset)
 9096 host in sender_unqualified_hosts? no (option unset)
 9096 host in recipient_unqualified_hosts? no (option unset)
 9096 host in helo_verify_hosts? no (option unset)
 9096 host in helo_try_verify_hosts? no (option unset)
 9096 host in helo_accept_junk_hosts? no (option unset)
 9096 SMTP>> 220 gabrielle.bevteccom.co.uk ESMTP Exim 4.43 Mon, 29 Nov 2004 11:10:25 +0000
 9096 Process 9096 is ready for new message
 9096 smtp_setup_msg entered
 9096 SMTP<< HELO n13a.bulk.scd.yahoo.com
 9096 sender_fullhost = n13a.bulk.scd.yahoo.com [66.94.237.24]
 9096 sender_rcvhost = n13a.bulk.scd.yahoo.com ([66.94.237.24])
 9096 set_process_info:  9096 handling incoming connection from n13a.bulk.scd.yahoo.com [66.94.237.24]
 9096 SMTP>> 250 gabrielle.bevteccom.co.uk Hello n13a.bulk.scd.yahoo.com [66.94.237.24]
 9096 SMTP<< MAIL FROM:<sentto-10105033-33915-1101726594-list-demodellers=bevteccom.co.uk@???>
 9096 SMTP>> 250 OK
 9096 SMTP<< RCPT TO:<list-demodellers@???>
 9096 using ACL "acl_check_rcpt"
 9096 processing "accept"
 9096 check hosts = :
 9096 host in ":"? no (end of list)
 9096 accept: condition test failed
 9096 processing "deny"
 9096 check domains = +local_domains
 9096 bevteccom.co.uk in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? yes (matched "bevteccom.co.uk")
 9096 bevteccom.co.uk in "+local_domains"? yes (matched "+local_domains")
 9096 check local_parts = ^[.] : ^.*[@%!/|]
 9096 list-demodellers in "^[.] : ^.*[@%!/|]"? no (end of list)
 9096 deny: condition test failed
 9096 processing "deny"
 9096 check domains = !+local_domains
 9096 cached yes match for +local_domains
 9096 cached lookup data = NULL
 9096 bevteccom.co.uk in "!+local_domains"? no (matched "!+local_domains" - cached)
 9096 deny: condition test failed
 9096 processing "accept"
 9096 check local_parts = postmaster
 9096 list-demodellers in "postmaster"? no (end of list)
 9096 accept: condition test failed
 9096 processing "require"
 9096 check verify = sender
 9096 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9096 Verifying sentto-10105033-33915-1101726594-list-demodellers=bevteccom.co.uk@???
 9096 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9096 Considering sentto-10105033-33915-1101726594-list-demodellers=bevteccom.co.uk@???
 9096 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9096 routing sentto-10105033-33915-1101726594-list-demodellers=bevteccom.co.uk@???
 9096 --------> dnslookup router <--------
 9096 local_part=sentto-10105033-33915-1101726594-list-demodellers=bevteccom.co.uk domain=returns.groups.yahoo.com
 9096 checking domains
 9096 returns.groups.yahoo.com in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? no (end of list)
 9096 returns.groups.yahoo.com in "! +local_domains"? yes (end of list)
 9096 calling dnslookup router
 9096 dnslookup router called for sentto-10105033-33915-1101726594-list-demodellers=bevteccom.co.uk@???
 9096   domain = returns.groups.yahoo.com
 9096 DNS lookup of returns.groups.yahoo.com (MX) succeeded
 9096 discarded duplicate host rtn3.grp.scd.yahoo.com (MX=10)
 9096 discarded duplicate host rtn4.grp.scd.yahoo.com (MX=10)
 9096 66.218.66.210 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9096 66.218.66.211 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9096 66.218.66.212 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9096 66.218.66.213 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9096 66.218.66.214 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9096 66.218.66.215 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9096 66.218.67.202 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9096 66.218.67.203 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9096 DNS lookup of rtn1.grp.scd.yahoo.com (AAAA) gave NO_DATA
 9096 returning DNS_NODATA
 9096 DNS lookup of rtn1.grp.scd.yahoo.com (A) succeeded
 9096 66.218.66.208 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9096 DNS lookup of rtn2.grp.scd.yahoo.com (AAAA) gave NO_DATA
 9096 returning DNS_NODATA
 9096 DNS lookup of rtn2.grp.scd.yahoo.com (A) succeeded
 9096 66.218.66.209 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9096 fully qualified name = returns.groups.yahoo.com
 9096 host_find_bydns yield = HOST_FOUND (2); returned hosts:
 9096   rtn7.grp.scd.yahoo.com 66.218.66.214 MX=1 
 9096   rtn6.grp.scd.yahoo.com 66.218.66.213 MX=1 
 9096   rtn4.grp.scd.yahoo.com 66.218.66.211 MX=1 
 9096   rtn8.grp.scd.yahoo.com 66.218.66.215 MX=1 
 9096   rtn5.grp.scd.yahoo.com 66.218.66.212 MX=1 
 9096   rtn9.grp.scd.yahoo.com 66.218.67.202 MX=1 
 9096   rtn3.grp.scd.yahoo.com 66.218.66.210 MX=1 
 9096   rtn10.grp.scd.yahoo.com 66.218.67.203 MX=1 
 9096   rtn1.grp.scd.yahoo.com 66.218.66.208 MX=10 
 9096   rtn2.grp.scd.yahoo.com 66.218.66.209 MX=10 
 9096 set transport remote_smtp
 9096 queued for remote_smtp transport: local_part = sentto-10105033-33915-1101726594-list-demodellers=bevteccom.co.uk
 9096 domain = returns.groups.yahoo.com
 9096   errors_to=NULL
 9096   domain_data=NULL localpart_data=NULL
 9096 routed by dnslookup router
 9096   envelope to: sentto-10105033-33915-1101726594-list-demodellers=bevteccom.co.uk@???
 9096   transport: remote_smtp
 9096   host rtn7.grp.scd.yahoo.com [66.218.66.214] MX=1
 9096   host rtn6.grp.scd.yahoo.com [66.218.66.213] MX=1
 9096   host rtn4.grp.scd.yahoo.com [66.218.66.211] MX=1
 9096   host rtn8.grp.scd.yahoo.com [66.218.66.215] MX=1
 9096   host rtn5.grp.scd.yahoo.com [66.218.66.212] MX=1
 9096   host rtn9.grp.scd.yahoo.com [66.218.67.202] MX=1
 9096   host rtn3.grp.scd.yahoo.com [66.218.66.210] MX=1
 9096   host rtn10.grp.scd.yahoo.com [66.218.67.203] MX=1
 9096   host rtn1.grp.scd.yahoo.com [66.218.66.208] MX=10
 9096   host rtn2.grp.scd.yahoo.com [66.218.66.209] MX=10
 9096 ----------- end verify ------------
 9096 sender sentto-10105033-33915-1101726594-list-demodellers=bevteccom.co.uk@??? verified ok
 9096 require: condition test succeeded
 9096 processing "accept"
 9096 check domains = +local_domains
 9096 cached yes match for +local_domains
 9096 cached lookup data = NULL
 9096 bevteccom.co.uk in "+local_domains"? yes (matched "+local_domains" - cached)
 9096 check verify = recipient
 9096 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9096 Verifying list-demodellers@???
 9096 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9096 Considering list-demodellers@???
 9096 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9096 routing list-demodellers@???
 9096 --------> dnslookup router <--------
 9096 local_part=list-demodellers domain=bevteccom.co.uk
 9096 checking domains
 9096 cached yes match for +local_domains
 9096 cached lookup data = NULL
 9096 bevteccom.co.uk in "! +local_domains"? no (matched "! +local_domains" - cached)
 9096 dnslookup router skipped: domains mismatch
 9096 --------> system_aliases router <--------
 9096 local_part=list-demodellers domain=bevteccom.co.uk
 9096 calling system_aliases router
 9096 rda_interpret (string): ${lookup{$local_part}lsearch{/etc/exim/mail.aliases}}
 9096 search_open: lsearch "/etc/exim/mail.aliases"
 9096 search_find: file="/etc/exim/mail.aliases"
 9096   key="list-demodellers" partial=-1 affix=NULL starflags=0
 9096 LRU list:
 9096   :/etc/exim/mail.aliases
 9096   End
 9096 internal_search_find: file="/etc/exim/mail.aliases"
 9096   type=lsearch key="list-demodellers"
 9096 file lookup required for list-demodellers
 9096   in /etc/exim/mail.aliases
 9096 lookup yielded: brwk
 9096 expanded: brwk
 9096 file is not a filter file
 9096 parse_forward_list: brwk
 9096 extract item: brwk
 9096 system_aliases router generated brwk@???
 9096   errors_to=NULL transport=NULL
 9096   uid=unset gid=unset home=NULL
 9096 routed by system_aliases router
 9096   envelope to: list-demodellers@???
 9096   transport: <none>
 9096 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9096 Considering brwk@???
 9096 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9096 routing brwk@???
 9096 --------> dnslookup router <--------
 9096 local_part=brwk domain=bevteccom.co.uk
 9096 checking domains
 9096 bevteccom.co.uk in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? yes (matched "bevteccom.co.uk")
 9096 bevteccom.co.uk in "! +local_domains"? no (matched "! +local_domains")
 9096 dnslookup router skipped: domains mismatch
 9096 --------> system_aliases router <--------
 9096 local_part=brwk domain=bevteccom.co.uk
 9096 calling system_aliases router
 9096 rda_interpret (string): ${lookup{$local_part}lsearch{/etc/exim/mail.aliases}}
 9096 search_open: lsearch "/etc/exim/mail.aliases"
 9096   cached open
 9096 search_find: file="/etc/exim/mail.aliases"
 9096   key="brwk" partial=-1 affix=NULL starflags=0
 9096 LRU list:
 9096   :/etc/exim/mail.aliases
 9096   End
 9096 internal_search_find: file="/etc/exim/mail.aliases"
 9096   type=lsearch key="brwk"
 9096 file lookup required for brwk
 9096   in /etc/exim/mail.aliases
 9096 lookup failed
 9096 expanded: 
 9096 file is not a filter file
 9096 parse_forward_list: 
 9096 system_aliases router declined for brwk@???
 9096 --------> userforward router <--------
 9096 local_part=brwk domain=bevteccom.co.uk
 9096 userforward router skipped: verify 2 0 0
 9096 --------> localuser router <--------
 9096 local_part=brwk domain=bevteccom.co.uk
 9096 checking for local user
 9096 calling localuser router
 9096 localuser router called for brwk@???
 9096   domain = bevteccom.co.uk
 9096 set transport local_delivery
 9096 queued for local_delivery transport: local_part = brwk
 9096 domain = bevteccom.co.uk
 9096   errors_to=NULL
 9096   domain_data=NULL localpart_data=NULL
 9096 routed by localuser router
 9096   envelope to: brwk@???
 9096   transport: local_delivery
 9096 ----------- end verify ------------
 9096 accept: condition test succeeded
 9096 SMTP>> 250 Accepted
 9096 SMTP<< DATA
 9096 SMTP>> 354 Enter message, ending with "." on a line by itself
 9096 search_tidyup called
 9096 host in ignore_fromline_hosts? no (option unset)
 9096 >>Headers received:
 9096 Received: from [66.218.66.59] by n13.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 11:09:54 -0000
 9096 Received: from [66.218.66.95] by mailer8.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 11:09:54 -0000
 9096 X-Yahoo-Newman-Property: groups-email
 9096 X-Sender: fatcontroller@???
 9096 X-Apparently-To: demodellers@???
 9096 Received: (qmail 59221 invoked from network); 29 Nov 2004 11:09:53 -0000
 9096 Received: from unknown (66.218.66.167)
 9096   by m7.grp.scd.yahoo.com with QMQP; 29 Nov 2004 11:09:53 -0000
 9096 Received: from unknown (HELO n19a.bulk.scd.yahoo.com) (66.94.237.48)
 9096   by mta6.grp.scd.yahoo.com with SMTP; 29 Nov 2004 11:09:52 -0000
 9096 Received: from [66.218.69.1] by n19.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 11:07:28 -0000
 9096 Received: from [66.218.67.168] by mailer1.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 11:07:28 -0000
 9096 To: demodellers@???
 9096 Message-ID: <coevrq+tqmj@???>
 9096 In-Reply-To: <codrj5+lk21@???>
 9096 User-Agent: eGroups-EW/0.82
 9096 X-Mailer: Yahoo Groups Message Poster
 9096 X-eGroups-Remote-IP: 66.94.237.48
 9096 From: "scarletcontroller" <fatcontroller@???>
 9096 X-Originating-IP: 80.176.85.27
 9096 X-Yahoo-Profile: scarletcontroller
 9096 MIME-Version: 1.0
 9096 Mailing-List: list demodellers@???; contact demodellers-owner@???
 9096 Delivered-To: mailing list demodellers@???
 9096 Precedence: bulk
 9096 List-Unsubscribe: <mailto:demodellers-unsubscribe@yahoogroups.com>
 9096 Date: Mon, 29 Nov 2004 11:06:34 -0000
 9096 Subject: [demodellers] Re: Valley tractors
 9096 Reply-To: demodellers@???
 9096 Content-Type: text/plain; charset=ISO-8859-1
 9096 Content-Transfer-Encoding: 7bit
 9096 
 9096 rewrite_one_header: type=T:
 9096   To: demodellers@???
 9096 rewrite_one_header: type=F:
 9096   From: "scarletcontroller" <fatcontroller@???>
 9096 rewrite_one_header: type=R:
 9096   Reply-To: demodellers@???
 9096 search_tidyup called
 9096 >>Headers after rewriting and local additions:
 9096 P Received: from [66.218.66.59] by n13.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 11:09:54 -0000
 9096 P Received: from [66.218.66.95] by mailer8.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 11:09:54 -0000
 9096   X-Yahoo-Newman-Property: groups-email
 9096   X-Sender: fatcontroller@???
 9096   X-Apparently-To: demodellers@???
 9096 P Received: (qmail 59221 invoked from network); 29 Nov 2004 11:09:53 -0000
 9096 P Received: from unknown (66.218.66.167)
 9096   by m7.grp.scd.yahoo.com with QMQP; 29 Nov 2004 11:09:53 -0000
 9096 P Received: from unknown (HELO n19a.bulk.scd.yahoo.com) (66.94.237.48)
 9096   by mta6.grp.scd.yahoo.com with SMTP; 29 Nov 2004 11:09:52 -0000
 9096 P Received: from [66.218.69.1] by n19.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 11:07:28 -0000
 9096 P Received: from [66.218.67.168] by mailer1.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 11:07:28 -0000
 9096 T To: demodellers@???
 9096 I Message-ID: <coevrq+tqmj@???>
 9096   In-Reply-To: <codrj5+lk21@???>
 9096   User-Agent: eGroups-EW/0.82
 9096   X-Mailer: Yahoo Groups Message Poster
 9096   X-eGroups-Remote-IP: 66.94.237.48
 9096 F From: "scarletcontroller" <fatcontroller@???>
 9096   X-Originating-IP: 80.176.85.27
 9096   X-Yahoo-Profile: scarletcontroller
 9096   MIME-Version: 1.0
 9096   Mailing-List: list demodellers@???; contact demodellers-owner@???
 9096   Delivered-To: mailing list demodellers@???
 9096   Precedence: bulk
 9096   List-Unsubscribe: <mailto:demodellers-unsubscribe@yahoogroups.com>
 9096   Date: Mon, 29 Nov 2004 11:06:34 -0000
 9096   Subject: [demodellers] Re: Valley tractors
 9096 R Reply-To: demodellers@???
 9096   Content-Type: text/plain; charset=ISO-8859-1
 9096   Content-Transfer-Encoding: 7bit
 9096 
 9096 Data file written for message 1CYjQJ-0002Mi-2Q
 9096 >>Generated Received: header line
 9096 P Received: from n13a.bulk.scd.yahoo.com ([66.94.237.24])
 9096     by gabrielle.bevteccom.co.uk with smtp (Exim 4.43)
 9096     id 1CYjQJ-0002Mi-2Q
 9096     for list-demodellers@???; Mon, 29 Nov 2004 11:10:27 +0000
 9096 calling local_scan(); timeout=300
 9096 local_scan() returned 0 NULL
 9096 Writing spool header file
 9096 Size of headers = 1802
 9096 LOG: MAIN
 9096   <= sentto-10105033-33915-1101726594-list-demodellers=bevteccom.co.uk@??? H=n13a.bulk.scd.yahoo.com [66.94.237.24] P=smtp S=4018 id=coevrq+tqmj@???
 9096 SMTP>> 250 OK id=1CYjQJ-0002Mi-2Q
 9096 search_tidyup called
 9096 Sender: sentto-10105033-33915-1101726594-list-demodellers=bevteccom.co.uk@???
 9096 Recipients:
 9096   list-demodellers@???
 9097 exec /usr/sbin/exim -d=0xfbbd5cfd -Mc 1CYjQJ-0002Mi-2Q
 9096 forked delivery process 9097
 9096 Process 9096 is ready for new message
 9096 smtp_setup_msg entered
 9097 Exim version 4.43 uid=93 gid=93 pid=9097 D=fbbd5cfd
Berkeley DB: Sleepycat Software: Berkeley DB 4.2.52: (September 21, 2004)
Support for: iconv() IPv6 PAM Perl TCPwrappers OpenSSL
Lookups: lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmnz dnsdb dsearch ldap ldapdn ldapm nis nis0 nisplus passwd
Authenticators: cram_md5 cyrus_sasl plaintext spa
Routers: accept dnslookup ipliteral manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore/mbx autoreply lmtp pipe smtp
Fixed never_users: 0
 9097 changed uid/gid: forcing real = effective
 9097   uid=0 gid=93 pid=9097
 9097   auxiliary group list: <none>
 9097 configuration file is /etc/exim/exim.conf
 9097 log selectors = 00000ffc 00010400
 9097 trusted user
 9097 admin user
 9097 skipping ACL configuration - not needed
 9097 set_process_info:  9097 delivering specified messages
 9097 set_process_info:  9097 delivering 1CYjQJ-0002Mi-2Q
 9097 reading spool file 1CYjQJ-0002Mi-2Q-H
 9097 user=root uid=0 gid=0 sender=sentto-10105033-33915-1101726594-list-demodellers=bevteccom.co.uk@???
 9097 sender_fullhost = n13a.bulk.scd.yahoo.com [66.94.237.24]
 9097 sender_rcvhost = n13a.bulk.scd.yahoo.com ([66.94.237.24])
 9097 sender_local=0 ident=unset
 9097 Non-recipients:
 9097 Empty Tree
 9097 ---- End of tree ----
 9097 recipients_count=1
 9097 body_linecount=81 message_linecount=35
 9097 Delivery address list:
 9097   list-demodellers@??? 
 9097 locking /var/spool/exim/db/retry.lockfile
 9097 locked /var/spool/exim/db/retry.lockfile
 9097 opened hints database /var/spool/exim/db/retry: flags=0
 9097 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9097 Considering: list-demodellers@???
 9097 unique = list-demodellers@???
 9097 dbfn_read: key=R:bevteccom.co.uk
 9097 dbfn_read: key=R:list-demodellers@???
 9097 no domain retry record
 9097 no address retry record
 9097 list-demodellers@???: queued for routing
 9097 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9097 routing list-demodellers@???
 9097 --------> dnslookup router <--------
 9097 local_part=list-demodellers domain=bevteccom.co.uk
 9097 checking domains
 9097 bevteccom.co.uk in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? yes (matched "bevteccom.co.uk")
 9097 bevteccom.co.uk in "! +local_domains"? no (matched "! +local_domains")
 9097 dnslookup router skipped: domains mismatch
 9097 --------> system_aliases router <--------
 9097 local_part=list-demodellers domain=bevteccom.co.uk
 9097 calling system_aliases router
 9097 rda_interpret (string): ${lookup{$local_part}lsearch{/etc/exim/mail.aliases}}
 9097 search_open: lsearch "/etc/exim/mail.aliases"
 9097 search_find: file="/etc/exim/mail.aliases"
 9097   key="list-demodellers" partial=-1 affix=NULL starflags=0
 9097 LRU list:
 9097   :/etc/exim/mail.aliases
 9097   End
 9097 internal_search_find: file="/etc/exim/mail.aliases"
 9097   type=lsearch key="list-demodellers"
 9097 file lookup required for list-demodellers
 9097   in /etc/exim/mail.aliases
 9097 lookup yielded: brwk
 9097 expanded: brwk
 9097 file is not a filter file
 9097 parse_forward_list: brwk
 9097 extract item: brwk
 9097 system_aliases router generated brwk@???
 9097   errors_to=NULL transport=NULL
 9097   uid=unset gid=unset home=NULL
 9097 routed by system_aliases router
 9097   envelope to: list-demodellers@???
 9097   transport: <none>
 9097 locking /var/spool/exim/db/retry.lockfile
 9097 locked /var/spool/exim/db/retry.lockfile
 9097 opened hints database /var/spool/exim/db/retry: flags=0
 9097 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9097 Considering: brwk@???
 9097 unique = brwk@???
 9097 dbfn_read: key=R:bevteccom.co.uk
 9097 dbfn_read: key=R:brwk@???
 9097 no domain retry record
 9097 no address retry record
 9097 brwk@???: queued for routing
 9097 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9097 routing brwk@???
 9097 --------> dnslookup router <--------
 9097 local_part=brwk domain=bevteccom.co.uk
 9097 checking domains
 9097 bevteccom.co.uk in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? yes (matched "bevteccom.co.uk")
 9097 bevteccom.co.uk in "! +local_domains"? no (matched "! +local_domains")
 9097 dnslookup router skipped: domains mismatch
 9097 --------> system_aliases router <--------
 9097 local_part=brwk domain=bevteccom.co.uk
 9097 calling system_aliases router
 9097 rda_interpret (string): ${lookup{$local_part}lsearch{/etc/exim/mail.aliases}}
 9097 search_open: lsearch "/etc/exim/mail.aliases"
 9097   cached open
 9097 search_find: file="/etc/exim/mail.aliases"
 9097   key="brwk" partial=-1 affix=NULL starflags=0
 9097 LRU list:
 9097   :/etc/exim/mail.aliases
 9097   End
 9097 internal_search_find: file="/etc/exim/mail.aliases"
 9097   type=lsearch key="brwk"
 9097 file lookup required for brwk
 9097   in /etc/exim/mail.aliases
 9097 lookup failed
 9097 expanded: 
 9097 file is not a filter file
 9097 parse_forward_list: 
 9097 system_aliases router declined for brwk@???
 9097 --------> userforward router <--------
 9097 local_part=brwk domain=bevteccom.co.uk
 9097 checking for local user
 9097 calling userforward router
 9097 rda_interpret (file): $home/.forward
 9097 expanded: /home/gabrielle/users/brwk/.forward
 9098 changed uid/gid: userforward router (recipient is brwk@???)
 9098   uid=13002 gid=13010 pid=9098
 9098   auxiliary group list: <none>
 9098 turned off address rewrite logging (not root or exim in this process)
 9098 2197 bytes read from /home/gabrielle/users/brwk/.forward
 9098 data is an Exim filter program
 9098 Filter: start of processing
 9098 Filter: end of processing
 9097 rda_interpret: subprocess yield=0 error=NULL
 9097 set transport local_delivery
 9097 userforward router generated /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/
 9097   pipe, file, or autoreply
 9097   errors_to=NULL transport=local_delivery
 9097   uid=13002 gid=13010 home=\N/home/gabrielle/users/brwk\N
 9097 routed by userforward router
 9097   envelope to: brwk@???
 9097   transport: <none>
 9097 locking /var/spool/exim/db/retry.lockfile
 9097 locked /var/spool/exim/db/retry.lockfile
 9097 opened hints database /var/spool/exim/db/retry: flags=0
 9097 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9097 Considering: /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/
 9097 unique = /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/:brwk@???
 9097 queued for local_delivery transport
 9097 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9097 After routing:
 9097   Local deliveries:
 9097     /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/
 9097   Remote deliveries:
 9097   Failed addresses:
 9097   Deferred addresses:
 9097 search_tidyup called
 9097 >>>>>>>>>>>>>>>> Local deliveries >>>>>>>>>>>>>>>>
 9097 --------> /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/ <--------
 9097 locking /var/spool/exim/db/retry.lockfile
 9097 locked /var/spool/exim/db/retry.lockfile
 9097 opened hints database /var/spool/exim/db/retry: flags=0
 9097 dbfn_read: key=T:/home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/:brwk@???
 9097 no retry record exists
 9097 search_tidyup called
 9099 changed uid/gid: local delivery to /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/ </home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/> transport=local_delivery
 9099   uid=13002 gid=13010 pid=9099
 9099   auxiliary group list: <none>
 9099   home=/home/gabrielle/users/brwk current=/home/gabrielle/users/brwk
 9099 set_process_info:  9099 delivering 1CYjQJ-0002Mi-2Q to /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/ using local_delivery
 9099 appendfile transport entered
 9099 appendfile: mode=600 notify_comsat=0 quota=0 warning=0
 9099   directory=/home/gabrielle/users/brwk/.maildir format=maildir
 9099   message_prefix=null
 9099   message_suffix=null
 9099   maildir_use_size_file=no
 9099 ensuring maildir directories exist in /home/gabrielle/users/brwk/.maildir
 9099 delivering in maildir format in /home/gabrielle/users/brwk/.maildir
 9099 writing to file tmp/1101726627.H608583P9099.gabrielle.bevteccom.co.uk
 9099 writing data block fd=7 size=4217 timeout=0
 9099 renaming temporary file
 9099 renamed tmp/1101726627.H608583P9099.gabrielle.bevteccom.co.uk as new/1101726627.H608583P9099.gabrielle.bevteccom.co.uk
 9099 appendfile yields 0 with errno=0 more_errno=0
 9097 journalling /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/:brwk@???
 9099 search_tidyup called
 9097 local_delivery transport returned OK for /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/
 9097 post-process /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/ (0)
 9097 /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/ delivered
 9097 brwk@???: children all complete
 9097 list-demodellers@???: children all complete
 9097 LOG: MAIN
 9097   => /home/gabrielle/users/brwk/.maildir (brwk@???) <list-demodellers@???> R=userforward T=local_delivery
 9097 >>>>>>>>>>>>>>>> deliveries are done >>>>>>>>>>>>>>>>
 9097 changed uid/gid: post-delivery tidying
 9097   uid=93 gid=93 pid=9097
 9097   auxiliary group list: <none>
 9097 set_process_info:  9097 tidying up after delivering 1CYjQJ-0002Mi-2Q
 9097 Processing retry items
 9097 Succeeded addresses:
 9097 /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/: no retry items
 9097 brwk@???: no retry items
 9097 list-demodellers@???: no retry items
 9097 brwk@???: no retry items
 9097 list-demodellers@???: no retry items
 9097 list-demodellers@???: no retry items
 9097 Failed addresses:
 9097 Deferred addresses:
 9097 end of retry processing
 9097 LOG: MAIN
 9097   Completed
 9097 end delivery of 1CYjQJ-0002Mi-2Q
 9097 search_tidyup called
 9097 search_tidyup called
 9097 >>>>>>>>>>>>>>>> Exim pid=9097 terminating with rc=0 >>>>>>>>>>>>>>>>
 9096 SMTP<< QUIT
 9096 SMTP>> 221 gabrielle.bevteccom.co.uk closing connection
 9096 LOG: smtp_connection MAIN
 9096   SMTP connection from n13a.bulk.scd.yahoo.com [66.94.237.24] closed by QUIT
 9096 search_tidyup called
 8238 child 9096 ended: status=0x0
 8238 0 SMTP accept processes now running
 8238 Listening...
 8238 Connection request from 131.111.8.41 port 3014
 8238 search_tidyup called
 9100 host in rfc1413_hosts? yes (matched "*")
 9100 doing ident callback
 8238 1 SMTP accept process running
 8238 Listening...
 9100 ident connection to 131.111.8.41 failed: Connection refused
 9100 sender_fullhost = [131.111.8.41]
 9100 sender_rcvhost = [131.111.8.41]
 9100 Process 9100 is handling incoming connection from [131.111.8.41]
 9100 host in host_lookup? yes (matched "*")
 9100 looking up host name for 131.111.8.41
 9100 DNS lookup of 41.8.111.131.in-addr.arpa (PTR) succeeded
 9100 IP address lookup yielded sesame.csx.cam.ac.uk
 9100 gethostbyname2 looked up these IP addresses:
 9100   name=sesame.csx.cam.ac.uk address=2001:630:200:8080:20e:cff:fe09:a58a
 9100   name=sesame.csx.cam.ac.uk address=131.111.8.41
 9100 checking addresses for sesame.csx.cam.ac.uk
 9100   2001:630:200:8080:20e:cff:fe09:a58a
 9100   131.111.8.41 OK
 9100 sender_fullhost = sesame.csx.cam.ac.uk [131.111.8.41]
 9100 sender_rcvhost = sesame.csx.cam.ac.uk ([131.111.8.41])
 9100 set_process_info:  9100 handling incoming connection from sesame.csx.cam.ac.uk [131.111.8.41]
 9100 host in host_reject_connection? no (option unset)
 9100 host in sender_unqualified_hosts? no (option unset)
 9100 host in recipient_unqualified_hosts? no (option unset)
 9100 host in helo_verify_hosts? no (option unset)
 9100 host in helo_try_verify_hosts? no (option unset)
 9100 host in helo_accept_junk_hosts? no (option unset)
 9100 SMTP>> 220 gabrielle.bevteccom.co.uk ESMTP Exim 4.43 Mon, 29 Nov 2004 11:10:32 +0000
 9100 Process 9100 is ready for new message
 9100 smtp_setup_msg entered
 9100 SMTP<< EHLO sesame.csx.cam.ac.uk
 9100 sender_fullhost = sesame.csx.cam.ac.uk [131.111.8.41]
 9100 sender_rcvhost = sesame.csx.cam.ac.uk ([131.111.8.41])
 9100 set_process_info:  9100 handling incoming connection from sesame.csx.cam.ac.uk [131.111.8.41]
 9100 host in pipelining_advertise_hosts? yes (matched "*")
 9100 host in tls_advertise_hosts? no (option unset)
 9100 SMTP>> 250-gabrielle.bevteccom.co.uk Hello sesame.csx.cam.ac.uk [131.111.8.41]
 9100 250-SIZE 52428800
 9100 250-PIPELINING
 9100 250 HELP
 9100 SMTP<< MAIL FROM:<exim-users-bounces+brwk=bevteccom.co.uk@???> SIZE=4279
 9100 spool directory /var/spool/exim space = 939375 blocks; inodes = 521356; check_space = 0K (0 blocks); inodes = 0; msg_size = 9279 (2 blocks)
 9100 SMTP>> 250 OK
 9100 SMTP<< RCPT TO:<brwk@???>
 9100 using ACL "acl_check_rcpt"
 9100 processing "accept"
 9100 check hosts = :
 9100 host in ":"? no (end of list)
 9100 accept: condition test failed
 9100 processing "deny"
 9100 check domains = +local_domains
 9100 bevteccom.co.uk in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? yes (matched "bevteccom.co.uk")
 9100 bevteccom.co.uk in "+local_domains"? yes (matched "+local_domains")
 9100 check local_parts = ^[.] : ^.*[@%!/|]
 9100 brwk in "^[.] : ^.*[@%!/|]"? no (end of list)
 9100 deny: condition test failed
 9100 processing "deny"
 9100 check domains = !+local_domains
 9100 cached yes match for +local_domains
 9100 cached lookup data = NULL
 9100 bevteccom.co.uk in "!+local_domains"? no (matched "!+local_domains" - cached)
 9100 deny: condition test failed
 9100 processing "accept"
 9100 check local_parts = postmaster
 9100 brwk in "postmaster"? no (end of list)
 9100 accept: condition test failed
 9100 processing "require"
 9100 check verify = sender
 9100 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9100 Verifying exim-users-bounces+brwk=bevteccom.co.uk@???
 9100 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9100 Considering exim-users-bounces+brwk=bevteccom.co.uk@???
 9100 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9100 routing exim-users-bounces+brwk=bevteccom.co.uk@???
 9100 --------> dnslookup router <--------
 9100 local_part=exim-users-bounces+brwk=bevteccom.co.uk domain=exim.org
 9100 checking domains
 9100 exim.org in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? no (end of list)
 9100 exim.org in "! +local_domains"? yes (end of list)
 9100 calling dnslookup router
 9100 dnslookup router called for exim-users-bounces+brwk=bevteccom.co.uk@???
 9100   domain = exim.org
 9100 DNS lookup of exim.org (MX) succeeded
 9100 131.111.8.41 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9100 2001:630:200:8080:20e:cff:fe09:a58a in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9100 fully qualified name = exim.org
 9100 host_find_bydns yield = HOST_FOUND (2); returned hosts:
 9100   sesame.csx.cam.ac.uk 2001:630:200:8080:20e:cff:fe09:a58a MX=5 
 9100   sesame.csx.cam.ac.uk 131.111.8.41 MX=5 
 9100 set transport remote_smtp
 9100 queued for remote_smtp transport: local_part = exim-users-bounces+brwk=bevteccom.co.uk
 9100 domain = exim.org
 9100   errors_to=NULL
 9100   domain_data=NULL localpart_data=NULL
 9100 routed by dnslookup router
 9100   envelope to: exim-users-bounces+brwk=bevteccom.co.uk@???
 9100   transport: remote_smtp
 9100   host sesame.csx.cam.ac.uk [2001:630:200:8080:20e:cff:fe09:a58a] MX=5
 9100   host sesame.csx.cam.ac.uk [131.111.8.41] MX=5
 9100 ----------- end verify ------------
 9100 sender exim-users-bounces+brwk=bevteccom.co.uk@??? verified ok
 9100 require: condition test succeeded
 9100 processing "accept"
 9100 check domains = +local_domains
 9100 cached yes match for +local_domains
 9100 cached lookup data = NULL
 9100 bevteccom.co.uk in "+local_domains"? yes (matched "+local_domains" - cached)
 9100 check verify = recipient
 9100 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9100 Verifying brwk@???
 9100 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9100 Considering brwk@???
 9100 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9100 routing brwk@???
 9100 --------> dnslookup router <--------
 9100 local_part=brwk domain=bevteccom.co.uk
 9100 checking domains
 9100 cached yes match for +local_domains
 9100 cached lookup data = NULL
 9100 bevteccom.co.uk in "! +local_domains"? no (matched "! +local_domains" - cached)
 9100 dnslookup router skipped: domains mismatch
 9100 --------> system_aliases router <--------
 9100 local_part=brwk domain=bevteccom.co.uk
 9100 calling system_aliases router
 9100 rda_interpret (string): ${lookup{$local_part}lsearch{/etc/exim/mail.aliases}}
 9100 search_open: lsearch "/etc/exim/mail.aliases"
 9100 search_find: file="/etc/exim/mail.aliases"
 9100   key="brwk" partial=-1 affix=NULL starflags=0
 9100 LRU list:
 9100   :/etc/exim/mail.aliases
 9100   End
 9100 internal_search_find: file="/etc/exim/mail.aliases"
 9100   type=lsearch key="brwk"
 9100 file lookup required for brwk
 9100   in /etc/exim/mail.aliases
 9100 lookup failed
 9100 expanded: 
 9100 file is not a filter file
 9100 parse_forward_list: 
 9100 system_aliases router declined for brwk@???
 9100 --------> userforward router <--------
 9100 local_part=brwk domain=bevteccom.co.uk
 9100 userforward router skipped: verify 2 0 0
 9100 --------> localuser router <--------
 9100 local_part=brwk domain=bevteccom.co.uk
 9100 checking for local user
 9100 calling localuser router
 9100 localuser router called for brwk@???
 9100   domain = bevteccom.co.uk
 9100 set transport local_delivery
 9100 queued for local_delivery transport: local_part = brwk
 9100 domain = bevteccom.co.uk
 9100   errors_to=NULL
 9100   domain_data=NULL localpart_data=NULL
 9100 routed by localuser router
 9100   envelope to: brwk@???
 9100   transport: local_delivery
 9100 ----------- end verify ------------
 9100 accept: condition test succeeded
 9100 SMTP>> 250 Accepted
 9100 SMTP<< DATA
 9100 SMTP>> 354 Enter message, ending with "." on a line by itself
 9100 search_tidyup called
 9100 host in ignore_fromline_hosts? no (option unset)
 9100 >>Headers received:
 9100 Received: from [::1] (port=2829 helo=sesame.csx.cam.ac.uk)
 9100     by sesame.csx.cam.ac.uk with esmtp (Exim 4.42)
 9100     id 1CYjNZ-000HVO-1F; Mon, 29 Nov 2004 11:07:37 +0000
 9100 Received: from postman4.arcor-online.net ([151.189.20.158]:56300
 9100     helo=postman.arcor.de) by sesame.csx.cam.ac.uk with esmtp (Exim 4.42)
 9100     id 1CYjNU-000HV5-IY
 9100     for exim-users@???; Mon, 29 Nov 2004 11:07:34 +0000
 9100 Received: from server.linau.de (pD9FB2B39.dip.t-dialin.net [217.251.43.57])
 9100     (authenticated bits=0)
 9100     by postman.arcor.de (8.13.0.PreAlpha4/8.13.0.PreAlpha4) with ESMTP id
 9100     iATB7Uax023758
 9100     (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO)
 9100     for <exim-users@???>; Mon, 29 Nov 2004 12:07:31 +0100 (MET)
 9100 Received: from christian by server.linau.de with local (Exim 4.34)
 9100     id 1CYjMi-0000rJ-Ey
 9100     for <exim-users@???>; Mon, 29 Nov 2004 12:06:44 +0100
 9100 Date: Mon, 29 Nov 2004 12:06:44 +0100
 9100 From: Christian Schmidt <christian@???>
 9100 To: exim-users@???
 9100 Subject: Re: [exim] Meta: Debian and Exim
 9100 Message-ID: <20041129110644.GF2494@???>
 9100 Mail-Followup-To: exim-users@???
 9100 References: <008101c4d5e6$d59f5580$0a01a8c0@pbdesktop>
 9100 Mime-Version: 1.0
 9100 Content-Type: text/plain; charset=us-ascii
 9100 Content-Disposition: inline
 9100 In-Reply-To: <008101c4d5e6$d59f5580$0a01a8c0@pbdesktop>
 9100 X-PGP-KeyID: 62C169D6 
 9100 X-Wishes: No HTML Mails, please!
 9100 User-Agent: Mutt/1.5.6+20040722i
 9100 X-Spam-Score: -4.8 (----)
 9100 X-BeenThere: exim-users@???
 9100 X-Mailman-Version: 2.1.5
 9100 Precedence: list
 9100 List-Id: A user list for the exim MTA <exim-users.exim.org>
 9100 List-Unsubscribe: <http://www.exim.org/mailman/listinfo/exim-users>,
 9100     <mailto:exim-users-request@exim.org?subject=unsubscribe>
 9100 List-Archive: <http://www.exim.org/mail-archives/exim-users>
 9100 List-Post: <mailto:exim-users@exim.org>
 9100 List-Help: <mailto:exim-users-request@exim.org?subject=help>
 9100 List-Subscribe: <http://www.exim.org/mailman/listinfo/exim-users>,
 9100     <mailto:exim-users-request@exim.org?subject=subscribe>
 9100 Sender: exim-users-bounces@???
 9100 Errors-To: exim-users-bounces+brwk=bevteccom.co.uk@???
 9100 
 9100 rewrite_one_header: type=F:
 9100   From: Christian Schmidt <christian@???>
 9100 rewrite_one_header: type=T:
 9100   To: exim-users@???
 9100 rewrite_one_header: type=S:
 9100   Sender: exim-users-bounces@???
 9100 search_tidyup called
 9100 >>Headers after rewriting and local additions:
 9100 P Received: from [::1] (port=2829 helo=sesame.csx.cam.ac.uk)
 9100     by sesame.csx.cam.ac.uk with esmtp (Exim 4.42)
 9100     id 1CYjNZ-000HVO-1F; Mon, 29 Nov 2004 11:07:37 +0000
 9100 P Received: from postman4.arcor-online.net ([151.189.20.158]:56300
 9100     helo=postman.arcor.de) by sesame.csx.cam.ac.uk with esmtp (Exim 4.42)
 9100     id 1CYjNU-000HV5-IY
 9100     for exim-users@???; Mon, 29 Nov 2004 11:07:34 +0000
 9100 P Received: from server.linau.de (pD9FB2B39.dip.t-dialin.net [217.251.43.57])
 9100     (authenticated bits=0)
 9100     by postman.arcor.de (8.13.0.PreAlpha4/8.13.0.PreAlpha4) with ESMTP id
 9100     iATB7Uax023758
 9100     (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO)
 9100     for <exim-users@???>; Mon, 29 Nov 2004 12:07:31 +0100 (MET)
 9100 P Received: from christian by server.linau.de with local (Exim 4.34)
 9100     id 1CYjMi-0000rJ-Ey
 9100     for <exim-users@???>; Mon, 29 Nov 2004 12:06:44 +0100
 9100   Date: Mon, 29 Nov 2004 12:06:44 +0100
 9100 F From: Christian Schmidt <christian@???>
 9100 T To: exim-users@???
 9100   Subject: Re: [exim] Meta: Debian and Exim
 9100 I Message-ID: <20041129110644.GF2494@???>
 9100   Mail-Followup-To: exim-users@???
 9100   References: <008101c4d5e6$d59f5580$0a01a8c0@pbdesktop>
 9100   Mime-Version: 1.0
 9100   Content-Type: text/plain; charset=us-ascii
 9100   Content-Disposition: inline
 9100   In-Reply-To: <008101c4d5e6$d59f5580$0a01a8c0@pbdesktop>
 9100   X-PGP-KeyID: 62C169D6 
 9100   X-Wishes: No HTML Mails, please!
 9100   User-Agent: Mutt/1.5.6+20040722i
 9100   X-Spam-Score: -4.8 (----)
 9100   X-BeenThere: exim-users@???
 9100   X-Mailman-Version: 2.1.5
 9100   Precedence: list
 9100   List-Id: A user list for the exim MTA <exim-users.exim.org>
 9100   List-Unsubscribe: <http://www.exim.org/mailman/listinfo/exim-users>,
 9100     <mailto:exim-users-request@exim.org?subject=unsubscribe>
 9100   List-Archive: <http://www.exim.org/mail-archives/exim-users>
 9100   List-Post: <mailto:exim-users@exim.org>
 9100   List-Help: <mailto:exim-users-request@exim.org?subject=help>
 9100   List-Subscribe: <http://www.exim.org/mailman/listinfo/exim-users>,
 9100     <mailto:exim-users-request@exim.org?subject=subscribe>
 9100 S Sender: exim-users-bounces@???
 9100   Errors-To: exim-users-bounces+brwk=bevteccom.co.uk@???
 9100 
 9100 Data file written for message 1CYjQO-0002Mm-F8
 9100 >>Generated Received: header line
 9100 P Received: from sesame.csx.cam.ac.uk ([131.111.8.41])
 9100     by gabrielle.bevteccom.co.uk with esmtp (Exim 4.43)
 9100     id 1CYjQO-0002Mm-F8
 9100     for brwk@???; Mon, 29 Nov 2004 11:10:32 +0000
 9100 calling local_scan(); timeout=300
 9100 local_scan() returned 0 NULL
 9100 Writing spool header file
 9100 Size of headers = 2224
 9100 LOG: MAIN
 9100   <= exim-users-bounces+brwk=bevteccom.co.uk@??? H=sesame.csx.cam.ac.uk [131.111.8.41] P=esmtp S=3387 id=20041129110644.GF2494@???
 9100 SMTP>> 250 OK id=1CYjQO-0002Mm-F8
 9100 search_tidyup called
 9100 Sender: exim-users-bounces+brwk=bevteccom.co.uk@???
 9100 Recipients:
 9100   brwk@???
 9101 exec /usr/sbin/exim -d=0xfbbd5cfd -Mc 1CYjQO-0002Mm-F8
 9101 Exim version 4.43 uid=93 gid=93 pid=9101 D=fbbd5cfd
Berkeley DB: Sleepycat Software: Berkeley DB 4.2.52: (September 21, 2004)
Support for: iconv() IPv6 PAM Perl TCPwrappers OpenSSL
Lookups: lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmnz dnsdb dsearch ldap ldapdn ldapm nis nis0 nisplus passwd
Authenticators: cram_md5 cyrus_sasl plaintext spa
Routers: accept dnslookup ipliteral manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore/mbx autoreply lmtp pipe smtp
Fixed never_users: 0
 9101 changed uid/gid: forcing real = effective
 9101   uid=0 gid=93 pid=9101
 9101   auxiliary group list: <none>
 9101 configuration file is /etc/exim/exim.conf
 9101 log selectors = 00000ffc 00010400
 9101 trusted user
 9101 admin user
 9101 skipping ACL configuration - not needed
 9101 set_process_info:  9101 delivering specified messages
 9101 set_process_info:  9101 delivering 1CYjQO-0002Mm-F8
 9101 reading spool file 1CYjQO-0002Mm-F8-H
 9101 user=root uid=0 gid=0 sender=exim-users-bounces+brwk=bevteccom.co.uk@???
 9101 sender_fullhost = sesame.csx.cam.ac.uk [131.111.8.41]
 9101 sender_rcvhost = sesame.csx.cam.ac.uk ([131.111.8.41])
 9101 sender_local=0 ident=unset
 9101 Non-recipients:
 9101 Empty Tree
 9101 ---- End of tree ----
 9101 recipients_count=1
 9101 body_linecount=31 message_linecount=48
 9101 Delivery address list:
 9101   brwk@??? 
 9101 locking /var/spool/exim/db/retry.lockfile
 9101 locked /var/spool/exim/db/retry.lockfile
 9101 opened hints database /var/spool/exim/db/retry: flags=0
 9101 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9101 Considering: brwk@???
 9101 unique = brwk@???
 9101 dbfn_read: key=R:bevteccom.co.uk
 9101 dbfn_read: key=R:brwk@???
 9101 no domain retry record
 9101 no address retry record
 9101 brwk@???: queued for routing
 9101 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9101 routing brwk@???
 9101 --------> dnslookup router <--------
 9101 local_part=brwk domain=bevteccom.co.uk
 9101 checking domains
 9101 bevteccom.co.uk in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? yes (matched "bevteccom.co.uk")
 9101 bevteccom.co.uk in "! +local_domains"? no (matched "! +local_domains")
 9101 dnslookup router skipped: domains mismatch
 9101 --------> system_aliases router <--------
 9101 local_part=brwk domain=bevteccom.co.uk
 9101 calling system_aliases router
 9101 rda_interpret (string): ${lookup{$local_part}lsearch{/etc/exim/mail.aliases}}
 9101 search_open: lsearch "/etc/exim/mail.aliases"
 9101 search_find: file="/etc/exim/mail.aliases"
 9101   key="brwk" partial=-1 affix=NULL starflags=0
 9101 LRU list:
 9101   :/etc/exim/mail.aliases
 9101   End
 9101 internal_search_find: file="/etc/exim/mail.aliases"
 9101   type=lsearch key="brwk"
 9101 file lookup required for brwk
 9101   in /etc/exim/mail.aliases
 9101 lookup failed
 9101 expanded: 
 9101 file is not a filter file
 9101 parse_forward_list: 
 9101 system_aliases router declined for brwk@???
 9101 --------> userforward router <--------
 9101 local_part=brwk domain=bevteccom.co.uk
 9101 checking for local user
 9101 calling userforward router
 9101 rda_interpret (file): $home/.forward
 9101 expanded: /home/gabrielle/users/brwk/.forward
 9102 changed uid/gid: userforward router (recipient is brwk@???)
 9102   uid=13002 gid=13010 pid=9102
 9102   auxiliary group list: <none>
 9102 turned off address rewrite logging (not root or exim in this process)
 9102 2197 bytes read from /home/gabrielle/users/brwk/.forward
 9102 data is an Exim filter program
 9102 Filter: start of processing
 9102 Filter: end of processing
 9101 rda_interpret: subprocess yield=0 error=NULL
 9101 set transport local_delivery
 9101 userforward router generated /home/gabrielle/users/brwk/.maildir/
 9101   pipe, file, or autoreply
 9101   errors_to=NULL transport=local_delivery
 9101   uid=13002 gid=13010 home=\N/home/gabrielle/users/brwk\N
 9101 routed by userforward router
 9101   envelope to: brwk@???
 9101   transport: <none>
 9101 locking /var/spool/exim/db/retry.lockfile
 9101 locked /var/spool/exim/db/retry.lockfile
 9101 opened hints database /var/spool/exim/db/retry: flags=0
 9101 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9101 Considering: /home/gabrielle/users/brwk/.maildir/
 9101 unique = /home/gabrielle/users/brwk/.maildir/:brwk@???
 9101 queued for local_delivery transport
 9101 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9101 After routing:
 9101   Local deliveries:
 9101     /home/gabrielle/users/brwk/.maildir/
 9101   Remote deliveries:
 9101   Failed addresses:
 9101   Deferred addresses:
 9101 search_tidyup called
 9101 >>>>>>>>>>>>>>>> Local deliveries >>>>>>>>>>>>>>>>
 9101 --------> /home/gabrielle/users/brwk/.maildir/ <--------
 9101 locking /var/spool/exim/db/retry.lockfile
 9101 locked /var/spool/exim/db/retry.lockfile
 9101 opened hints database /var/spool/exim/db/retry: flags=0
 9101 dbfn_read: key=T:/home/gabrielle/users/brwk/.maildir/:brwk@???
 9101 no retry record exists
 9101 search_tidyup called
 9103 changed uid/gid: local delivery to /home/gabrielle/users/brwk/.maildir/ </home/gabrielle/users/brwk/.maildir/> transport=local_delivery
 9103   uid=13002 gid=13010 pid=9103
 9103   auxiliary group list: <none>
 9103   home=/home/gabrielle/users/brwk current=/home/gabrielle/users/brwk
 9103 set_process_info:  9103 delivering 1CYjQO-0002Mm-F8 to /home/gabrielle/users/brwk/.maildir/ using local_delivery
 9103 appendfile transport entered
 9103 appendfile: mode=600 notify_comsat=0 quota=0 warning=0
 9103   directory=/home/gabrielle/users/brwk/.maildir format=maildir
 9103   message_prefix=null
 9103   message_suffix=null
 9103   maildir_use_size_file=no
 9103 ensuring maildir directories exist in /home/gabrielle/users/brwk/.maildir
 9103 delivering in maildir format in /home/gabrielle/users/brwk/.maildir
 9103 writing to file tmp/1101726632.H634038P9103.gabrielle.bevteccom.co.uk
 9103 writing data block fd=7 size=3532 timeout=0
 9100 forked delivery process 9101
 9100 Process 9100 is ready for new message
 9100 smtp_setup_msg entered
 9103 renaming temporary file
 9103 renamed tmp/1101726632.H634038P9103.gabrielle.bevteccom.co.uk as new/1101726632.H634038P9103.gabrielle.bevteccom.co.uk
 9103 appendfile yields 0 with errno=0 more_errno=0
 9101 journalling /home/gabrielle/users/brwk/.maildir/:brwk@???
 9103 search_tidyup called
 9101 local_delivery transport returned OK for /home/gabrielle/users/brwk/.maildir/
 9101 post-process /home/gabrielle/users/brwk/.maildir/ (0)
 9101 /home/gabrielle/users/brwk/.maildir/ delivered
 9101 brwk@???: children all complete
 9101 LOG: MAIN
 9101   => /home/gabrielle/users/brwk/.maildir <brwk@???> R=userforward T=local_delivery
 9101 >>>>>>>>>>>>>>>> deliveries are done >>>>>>>>>>>>>>>>
 9101 changed uid/gid: post-delivery tidying
 9101   uid=93 gid=93 pid=9101
 9101   auxiliary group list: <none>
 9101 set_process_info:  9101 tidying up after delivering 1CYjQO-0002Mm-F8
 9101 Processing retry items
 9101 Succeeded addresses:
 9101 /home/gabrielle/users/brwk/.maildir/: no retry items
 9101 brwk@???: no retry items
 9101 brwk@???: no retry items
 9101 Failed addresses:
 9101 Deferred addresses:
 9101 end of retry processing
 9101 LOG: MAIN
 9101   Completed
 9101 end delivery of 1CYjQO-0002Mm-F8
 9101 search_tidyup called
 9101 search_tidyup called
 9101 >>>>>>>>>>>>>>>> Exim pid=9101 terminating with rc=0 >>>>>>>>>>>>>>>>
 9100 SMTP<< QUIT
 9100 SMTP>> 221 gabrielle.bevteccom.co.uk closing connection
 9100 LOG: smtp_connection MAIN
 9100   SMTP connection from sesame.csx.cam.ac.uk [131.111.8.41] closed by QUIT
 9100 search_tidyup called
 8238 child 9100 ended: status=0x0
 8238 0 SMTP accept processes now running
 8238 Listening...
 8238 Connection request from 195.82.125.30 port 34904
 8238 search_tidyup called
 9104 host in rfc1413_hosts? yes (matched "*")
 9104 doing ident callback
 8238 1 SMTP accept process running
 8238 Listening...
 9104 ident connection to 195.82.125.30 failed: Connection refused
 9104 sender_fullhost = [195.82.125.30]
 9104 sender_rcvhost = [195.82.125.30]
 9104 Process 9104 is handling incoming connection from [195.82.125.30]
 9104 host in host_lookup? yes (matched "*")
 9104 looking up host name for 195.82.125.30
 9104 DNS lookup of 30.125.82.195.in-addr.arpa (PTR) succeeded
 9104 IP address lookup yielded mailhub-node1.mailbox.net.uk
 9104   alias calvin.mailbox.net.uk
 9104   alias relay-1.mailbox.co.uk
 9104   alias relay-1.mailbox.net.uk
 9104 gethostbyname2(af=inet6) returned 4 (NO_DATA)
 9104 gethostbyname2 looked up these IP addresses:
 9104   name=mailhub-node1.mailbox.net.uk address=195.82.125.30
 9104 checking addresses for mailhub-node1.mailbox.net.uk
 9104   195.82.125.30 OK
 9104 gethostbyname2(af=inet6) returned 4 (NO_DATA)
 9104 gethostbyname2 looked up these IP addresses:
 9104   name=calvin.mailbox.net.uk address=195.82.125.30
 9104 checking addresses for calvin.mailbox.net.uk
 9104   195.82.125.30 OK
 9104 gethostbyname2(af=inet6) returned 4 (NO_DATA)
 9104 gethostbyname2 looked up these IP addresses:
 9104   name=relay-1.mailbox.co.uk address=195.82.125.30
 9104 checking addresses for relay-1.mailbox.co.uk
 9104   195.82.125.30 OK
 9104 gethostbyname2(af=inet6) returned 4 (NO_DATA)
 9104 gethostbyname2 looked up these IP addresses:
 9104   name=relay-1.mailbox.net.uk address=195.82.125.30
 9104 checking addresses for relay-1.mailbox.net.uk
 9104   195.82.125.30 OK
 9104 sender_fullhost = mailhub-node1.mailbox.net.uk [195.82.125.30]
 9104 sender_rcvhost = mailhub-node1.mailbox.net.uk ([195.82.125.30])
 9104 set_process_info:  9104 handling incoming connection from mailhub-node1.mailbox.net.uk [195.82.125.30]
 9104 host in host_reject_connection? no (option unset)
 9104 host in sender_unqualified_hosts? no (option unset)
 9104 host in recipient_unqualified_hosts? no (option unset)
 9104 host in helo_verify_hosts? no (option unset)
 9104 host in helo_try_verify_hosts? no (option unset)
 9104 host in helo_accept_junk_hosts? no (option unset)
 9104 SMTP>> 220 gabrielle.bevteccom.co.uk ESMTP Exim 4.43 Mon, 29 Nov 2004 11:10:38 +0000
 9104 Process 9104 is ready for new message
 9104 smtp_setup_msg entered
 9104 SMTP<< EHLO mailhub-node1.mailbox.net.uk
 9104 sender_fullhost = mailhub-node1.mailbox.net.uk [195.82.125.30]
 9104 sender_rcvhost = mailhub-node1.mailbox.net.uk ([195.82.125.30])
 9104 set_process_info:  9104 handling incoming connection from mailhub-node1.mailbox.net.uk [195.82.125.30]
 9104 host in pipelining_advertise_hosts? yes (matched "*")
 9104 host in tls_advertise_hosts? no (option unset)
 9104 SMTP>> 250-gabrielle.bevteccom.co.uk Hello mailhub-node1.mailbox.net.uk [195.82.125.30]
 9104 250-SIZE 52428800
 9104 250-PIPELINING
 9104 250 HELP
 9104 SMTP<< MAIL FROM:<sentto-10105033-33914-1101725622-list-demodellers=bevteccom.co.uk@???> SIZE=4342
 9104 spool directory /var/spool/exim space = 939375 blocks; inodes = 521356; check_space = 0K (0 blocks); inodes = 0; msg_size = 9342 (2 blocks)
 9104 SMTP>> 250 OK
 9104 SMTP<< RCPT TO:<list-demodellers@???>
 9104 using ACL "acl_check_rcpt"
 9104 processing "accept"
 9104 check hosts = :
 9104 host in ":"? no (end of list)
 9104 accept: condition test failed
 9104 processing "deny"
 9104 check domains = +local_domains
 9104 bevteccom.co.uk in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? yes (matched "bevteccom.co.uk")
 9104 bevteccom.co.uk in "+local_domains"? yes (matched "+local_domains")
 9104 check local_parts = ^[.] : ^.*[@%!/|]
 9104 list-demodellers in "^[.] : ^.*[@%!/|]"? no (end of list)
 9104 deny: condition test failed
 9104 processing "deny"
 9104 check domains = !+local_domains
 9104 cached yes match for +local_domains
 9104 cached lookup data = NULL
 9104 bevteccom.co.uk in "!+local_domains"? no (matched "!+local_domains" - cached)
 9104 deny: condition test failed
 9104 processing "accept"
 9104 check local_parts = postmaster
 9104 list-demodellers in "postmaster"? no (end of list)
 9104 accept: condition test failed
 9104 processing "require"
 9104 check verify = sender
 9104 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9104 Verifying sentto-10105033-33914-1101725622-list-demodellers=bevteccom.co.uk@???
 9104 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9104 Considering sentto-10105033-33914-1101725622-list-demodellers=bevteccom.co.uk@???
 9104 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9104 routing sentto-10105033-33914-1101725622-list-demodellers=bevteccom.co.uk@???
 9104 --------> dnslookup router <--------
 9104 local_part=sentto-10105033-33914-1101725622-list-demodellers=bevteccom.co.uk domain=returns.groups.yahoo.com
 9104 checking domains
 9104 returns.groups.yahoo.com in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? no (end of list)
 9104 returns.groups.yahoo.com in "! +local_domains"? yes (end of list)
 9104 calling dnslookup router
 9104 dnslookup router called for sentto-10105033-33914-1101725622-list-demodellers=bevteccom.co.uk@???
 9104   domain = returns.groups.yahoo.com
 9104 DNS lookup of returns.groups.yahoo.com (MX) succeeded
 9104 discarded duplicate host rtn3.grp.scd.yahoo.com (MX=10)
 9104 discarded duplicate host rtn4.grp.scd.yahoo.com (MX=10)
 9104 66.218.66.210 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9104 66.218.66.211 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9104 66.218.66.212 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9104 66.218.66.213 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9104 66.218.66.214 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9104 66.218.66.215 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9104 66.218.67.202 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9104 66.218.67.203 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9104 DNS lookup of rtn2.grp.scd.yahoo.com (AAAA) gave NO_DATA
 9104 returning DNS_NODATA
 9104 DNS lookup of rtn2.grp.scd.yahoo.com (A) succeeded
 9104 66.218.66.209 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9104 DNS lookup of rtn1.grp.scd.yahoo.com (AAAA) gave NO_DATA
 9104 returning DNS_NODATA
 9104 DNS lookup of rtn1.grp.scd.yahoo.com (A) succeeded
 9104 66.218.66.208 in "0.0.0.0 : 127.0.0.0/8"? no (end of list)
 9104 fully qualified name = returns.groups.yahoo.com
 9104 host_find_bydns yield = HOST_FOUND (2); returned hosts:
 9104   rtn10.grp.scd.yahoo.com 66.218.67.203 MX=1 
 9104   rtn5.grp.scd.yahoo.com 66.218.66.212 MX=1 
 9104   rtn4.grp.scd.yahoo.com 66.218.66.211 MX=1 
 9104   rtn7.grp.scd.yahoo.com 66.218.66.214 MX=1 
 9104   rtn3.grp.scd.yahoo.com 66.218.66.210 MX=1 
 9104   rtn6.grp.scd.yahoo.com 66.218.66.213 MX=1 
 9104   rtn8.grp.scd.yahoo.com 66.218.66.215 MX=1 
 9104   rtn9.grp.scd.yahoo.com 66.218.67.202 MX=1 
 9104   rtn2.grp.scd.yahoo.com 66.218.66.209 MX=10 
 9104   rtn1.grp.scd.yahoo.com 66.218.66.208 MX=10 
 9104 set transport remote_smtp
 9104 queued for remote_smtp transport: local_part = sentto-10105033-33914-1101725622-list-demodellers=bevteccom.co.uk
 9104 domain = returns.groups.yahoo.com
 9104   errors_to=NULL
 9104   domain_data=NULL localpart_data=NULL
 9104 routed by dnslookup router
 9104   envelope to: sentto-10105033-33914-1101725622-list-demodellers=bevteccom.co.uk@???
 9104   transport: remote_smtp
 9104   host rtn10.grp.scd.yahoo.com [66.218.67.203] MX=1
 9104   host rtn5.grp.scd.yahoo.com [66.218.66.212] MX=1
 9104   host rtn4.grp.scd.yahoo.com [66.218.66.211] MX=1
 9104   host rtn7.grp.scd.yahoo.com [66.218.66.214] MX=1
 9104   host rtn3.grp.scd.yahoo.com [66.218.66.210] MX=1
 9104   host rtn6.grp.scd.yahoo.com [66.218.66.213] MX=1
 9104   host rtn8.grp.scd.yahoo.com [66.218.66.215] MX=1
 9104   host rtn9.grp.scd.yahoo.com [66.218.67.202] MX=1
 9104   host rtn2.grp.scd.yahoo.com [66.218.66.209] MX=10
 9104   host rtn1.grp.scd.yahoo.com [66.218.66.208] MX=10
 9104 ----------- end verify ------------
 9104 sender sentto-10105033-33914-1101725622-list-demodellers=bevteccom.co.uk@??? verified ok
 9104 require: condition test succeeded
 9104 processing "accept"
 9104 check domains = +local_domains
 9104 cached yes match for +local_domains
 9104 cached lookup data = NULL
 9104 bevteccom.co.uk in "+local_domains"? yes (matched "+local_domains" - cached)
 9104 check verify = recipient
 9104 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9104 Verifying list-demodellers@???
 9104 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9104 Considering list-demodellers@???
 9104 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9104 routing list-demodellers@???
 9104 --------> dnslookup router <--------
 9104 local_part=list-demodellers domain=bevteccom.co.uk
 9104 checking domains
 9104 cached yes match for +local_domains
 9104 cached lookup data = NULL
 9104 bevteccom.co.uk in "! +local_domains"? no (matched "! +local_domains" - cached)
 9104 dnslookup router skipped: domains mismatch
 9104 --------> system_aliases router <--------
 9104 local_part=list-demodellers domain=bevteccom.co.uk
 9104 calling system_aliases router
 9104 rda_interpret (string): ${lookup{$local_part}lsearch{/etc/exim/mail.aliases}}
 9104 search_open: lsearch "/etc/exim/mail.aliases"
 9104 search_find: file="/etc/exim/mail.aliases"
 9104   key="list-demodellers" partial=-1 affix=NULL starflags=0
 9104 LRU list:
 9104   :/etc/exim/mail.aliases
 9104   End
 9104 internal_search_find: file="/etc/exim/mail.aliases"
 9104   type=lsearch key="list-demodellers"
 9104 file lookup required for list-demodellers
 9104   in /etc/exim/mail.aliases
 9104 lookup yielded: brwk
 9104 expanded: brwk
 9104 file is not a filter file
 9104 parse_forward_list: brwk
 9104 extract item: brwk
 9104 system_aliases router generated brwk@???
 9104   errors_to=NULL transport=NULL
 9104   uid=unset gid=unset home=NULL
 9104 routed by system_aliases router
 9104   envelope to: list-demodellers@???
 9104   transport: <none>
 9104 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9104 Considering brwk@???
 9104 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9104 routing brwk@???
 9104 --------> dnslookup router <--------
 9104 local_part=brwk domain=bevteccom.co.uk
 9104 checking domains
 9104 bevteccom.co.uk in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? yes (matched "bevteccom.co.uk")
 9104 bevteccom.co.uk in "! +local_domains"? no (matched "! +local_domains")
 9104 dnslookup router skipped: domains mismatch
 9104 --------> system_aliases router <--------
 9104 local_part=brwk domain=bevteccom.co.uk
 9104 calling system_aliases router
 9104 rda_interpret (string): ${lookup{$local_part}lsearch{/etc/exim/mail.aliases}}
 9104 search_open: lsearch "/etc/exim/mail.aliases"
 9104   cached open
 9104 search_find: file="/etc/exim/mail.aliases"
 9104   key="brwk" partial=-1 affix=NULL starflags=0
 9104 LRU list:
 9104   :/etc/exim/mail.aliases
 9104   End
 9104 internal_search_find: file="/etc/exim/mail.aliases"
 9104   type=lsearch key="brwk"
 9104 file lookup required for brwk
 9104   in /etc/exim/mail.aliases
 9104 lookup failed
 9104 expanded: 
 9104 file is not a filter file
 9104 parse_forward_list: 
 9104 system_aliases router declined for brwk@???
 9104 --------> userforward router <--------
 9104 local_part=brwk domain=bevteccom.co.uk
 9104 userforward router skipped: verify 2 0 0
 9104 --------> localuser router <--------
 9104 local_part=brwk domain=bevteccom.co.uk
 9104 checking for local user
 9104 calling localuser router
 9104 localuser router called for brwk@???
 9104   domain = bevteccom.co.uk
 9104 set transport local_delivery
 9104 queued for local_delivery transport: local_part = brwk
 9104 domain = bevteccom.co.uk
 9104   errors_to=NULL
 9104   domain_data=NULL localpart_data=NULL
 9104 routed by localuser router
 9104   envelope to: brwk@???
 9104   transport: local_delivery
 9104 ----------- end verify ------------
 9104 accept: condition test succeeded
 9104 SMTP>> 250 Accepted
 9104 SMTP<< DATA
 9104 SMTP>> 354 Enter message, ending with "." on a line by itself
 9104 search_tidyup called
 9104 host in ignore_fromline_hosts? no (option unset)
 9104 >>Headers received:
 9104 Received: from [66.94.237.20] (helo=n12a.bulk.scd.yahoo.com)
 9104     by mailhub-node1.mailbox.net.uk with smtp (Exim 3.36 #1)
 9104     id 1CYjA8-0003A4-00
 9104     for list-demodellers@???; Mon, 29 Nov 2004 10:53:44 +0000
 9104 Received: from [66.218.66.58] by n12.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 10:53:42 -0000
 9104 Received: from [66.218.67.198] by mailer7.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 10:53:42 -0000
 9104 X-Yahoo-Newman-Property: groups-email
 9104 X-Sender: jim@???
 9104 X-Apparently-To: demodellers@???
 9104 Received: (qmail 29633 invoked from network); 29 Nov 2004 10:53:41 -0000
 9104 Received: from unknown (66.218.66.218)
 9104   by m5.grp.scd.yahoo.com with QMQP; 29 Nov 2004 10:53:41 -0000
 9104 Received: from unknown (HELO n6a.bulk.scd.yahoo.com) (66.94.237.40)
 9104   by mta3.grp.scd.yahoo.com with SMTP; 29 Nov 2004 10:53:41 -0000
 9104 Received: from [66.218.66.59] by n6.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 10:52:55 -0000
 9104 Received: from [66.218.66.122] by mailer8.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 10:52:55 -0000
 9104 To: demodellers@???
 9104 Message-ID: <coev27+gd16@???>
 9104 In-Reply-To: <coen7m+3d0n@???>
 9104 User-Agent: eGroups-EW/0.82
 9104 X-Mailer: Yahoo Groups Message Poster
 9104 X-eGroups-Remote-IP: 66.94.237.40
 9104 From: "jim smith-wright" <jim@???>
 9104 X-Originating-IP: 80.177.115.15
 9104 X-Yahoo-Profile: jimsmithwright
 9104 MIME-Version: 1.0
 9104 Mailing-List: list demodellers@???; contact demodellers-owner@???
 9104 Delivered-To: mailing list demodellers@???
 9104 Precedence: bulk
 9104 List-Unsubscribe: <mailto:demodellers-unsubscribe@yahoogroups.com>
 9104 Date: Mon, 29 Nov 2004 10:52:55 -0000
 9104 Subject: [demodellers] Re: Help! Coach couplings
 9104 Reply-To: demodellers@???
 9104 Content-Type: text/plain; charset=ISO-8859-1
 9104 Content-Transfer-Encoding: 7bit
 9104 
 9104 rewrite_one_header: type=T:
 9104   To: demodellers@???
 9104 rewrite_one_header: type=F:
 9104   From: "jim smith-wright" <jim@???>
 9104 rewrite_one_header: type=R:
 9104   Reply-To: demodellers@???
 9104 search_tidyup called
 9104 >>Headers after rewriting and local additions:
 9104 P Received: from [66.94.237.20] (helo=n12a.bulk.scd.yahoo.com)
 9104     by mailhub-node1.mailbox.net.uk with smtp (Exim 3.36 #1)
 9104     id 1CYjA8-0003A4-00
 9104     for list-demodellers@???; Mon, 29 Nov 2004 10:53:44 +0000
 9104 P Received: from [66.218.66.58] by n12.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 10:53:42 -0000
 9104 P Received: from [66.218.67.198] by mailer7.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 10:53:42 -0000
 9104   X-Yahoo-Newman-Property: groups-email
 9104   X-Sender: jim@???
 9104   X-Apparently-To: demodellers@???
 9104 P Received: (qmail 29633 invoked from network); 29 Nov 2004 10:53:41 -0000
 9104 P Received: from unknown (66.218.66.218)
 9104   by m5.grp.scd.yahoo.com with QMQP; 29 Nov 2004 10:53:41 -0000
 9104 P Received: from unknown (HELO n6a.bulk.scd.yahoo.com) (66.94.237.40)
 9104   by mta3.grp.scd.yahoo.com with SMTP; 29 Nov 2004 10:53:41 -0000
 9104 P Received: from [66.218.66.59] by n6.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 10:52:55 -0000
 9104 P Received: from [66.218.66.122] by mailer8.bulk.scd.yahoo.com with NNFMP; 29 Nov 2004 10:52:55 -0000
 9104 T To: demodellers@???
 9104 I Message-ID: <coev27+gd16@???>
 9104   In-Reply-To: <coen7m+3d0n@???>
 9104   User-Agent: eGroups-EW/0.82
 9104   X-Mailer: Yahoo Groups Message Poster
 9104   X-eGroups-Remote-IP: 66.94.237.40
 9104 F From: "jim smith-wright" <jim@???>
 9104   X-Originating-IP: 80.177.115.15
 9104   X-Yahoo-Profile: jimsmithwright
 9104   MIME-Version: 1.0
 9104   Mailing-List: list demodellers@???; contact demodellers-owner@???
 9104   Delivered-To: mailing list demodellers@???
 9104   Precedence: bulk
 9104   List-Unsubscribe: <mailto:demodellers-unsubscribe@yahoogroups.com>
 9104   Date: Mon, 29 Nov 2004 10:52:55 -0000
 9104   Subject: [demodellers] Re: Help! Coach couplings
 9104 R Reply-To: demodellers@???
 9104   Content-Type: text/plain; charset=ISO-8859-1
 9104   Content-Transfer-Encoding: 7bit
 9104 
 9104 Data file written for message 1CYjQU-0002Mq-8G
 9104 >>Generated Received: header line
 9104 P Received: from mailhub-node1.mailbox.net.uk ([195.82.125.30])
 9104     by gabrielle.bevteccom.co.uk with esmtp (Exim 4.43)
 9104     id 1CYjQU-0002Mq-8G
 9104     for list-demodellers@???; Mon, 29 Nov 2004 11:10:38 +0000
 9104 calling local_scan(); timeout=300
 9104 local_scan() returned 0 NULL
 9104 Writing spool header file
 9104 Size of headers = 1999
 9104 LOG: MAIN
 9104   <= sentto-10105033-33914-1101725622-list-demodellers=bevteccom.co.uk@??? H=mailhub-node1.mailbox.net.uk [195.82.125.30] P=esmtp S=3441 id=coev27+gd16@???
 9104 SMTP>> 250 OK id=1CYjQU-0002Mq-8G
 9104 search_tidyup called
 9104 Sender: sentto-10105033-33914-1101725622-list-demodellers=bevteccom.co.uk@???
 9104 Recipients:
 9104   list-demodellers@???
 9105 exec /usr/sbin/exim -d=0xfbbd5cfd -Mc 1CYjQU-0002Mq-8G
 9105 Exim version 4.43 uid=93 gid=93 pid=9105 D=fbbd5cfd
Berkeley DB: Sleepycat Software: Berkeley DB 4.2.52: (September 21, 2004)
Support for: iconv() IPv6 PAM Perl TCPwrappers OpenSSL
Lookups: lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmnz dnsdb dsearch ldap ldapdn ldapm nis nis0 nisplus passwd
Authenticators: cram_md5 cyrus_sasl plaintext spa
Routers: accept dnslookup ipliteral manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore/mbx autoreply lmtp pipe smtp
Fixed never_users: 0
 9105 changed uid/gid: forcing real = effective
 9105   uid=0 gid=93 pid=9105
 9105   auxiliary group list: <none>
 9105 configuration file is /etc/exim/exim.conf
 9105 log selectors = 00000ffc 00010400
 9105 trusted user
 9105 admin user
 9105 skipping ACL configuration - not needed
 9105 set_process_info:  9105 delivering specified messages
 9105 set_process_info:  9105 delivering 1CYjQU-0002Mq-8G
 9105 reading spool file 1CYjQU-0002Mq-8G-H
 9105 user=root uid=0 gid=0 sender=sentto-10105033-33914-1101725622-list-demodellers=bevteccom.co.uk@???
 9105 sender_fullhost = mailhub-node1.mailbox.net.uk [195.82.125.30]
 9105 sender_rcvhost = mailhub-node1.mailbox.net.uk ([195.82.125.30])
 9105 sender_local=0 ident=unset
 9105 Non-recipients:
 9105 Empty Tree
 9105 ---- End of tree ----
 9105 recipients_count=1
 9105 body_linecount=49 message_linecount=39
 9105 Delivery address list:
 9105   list-demodellers@??? 
 9105 locking /var/spool/exim/db/retry.lockfile
 9105 locked /var/spool/exim/db/retry.lockfile
 9105 opened hints database /var/spool/exim/db/retry: flags=0
 9105 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9105 Considering: list-demodellers@???
 9105 unique = list-demodellers@???
 9105 dbfn_read: key=R:bevteccom.co.uk
 9105 dbfn_read: key=R:list-demodellers@???
 9105 no domain retry record
 9105 no address retry record
 9105 list-demodellers@???: queued for routing
 9105 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9105 routing list-demodellers@???
 9105 --------> dnslookup router <--------
 9105 local_part=list-demodellers domain=bevteccom.co.uk
 9105 checking domains
 9105 bevteccom.co.uk in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? yes (matched "bevteccom.co.uk")
 9105 bevteccom.co.uk in "! +local_domains"? no (matched "! +local_domains")
 9105 dnslookup router skipped: domains mismatch
 9105 --------> system_aliases router <--------
 9105 local_part=list-demodellers domain=bevteccom.co.uk
 9105 calling system_aliases router
 9105 rda_interpret (string): ${lookup{$local_part}lsearch{/etc/exim/mail.aliases}}
 9105 search_open: lsearch "/etc/exim/mail.aliases"
 9105 search_find: file="/etc/exim/mail.aliases"
 9105   key="list-demodellers" partial=-1 affix=NULL starflags=0
 9105 LRU list:
 9105   :/etc/exim/mail.aliases
 9105   End
 9105 internal_search_find: file="/etc/exim/mail.aliases"
 9105   type=lsearch key="list-demodellers"
 9105 file lookup required for list-demodellers
 9105   in /etc/exim/mail.aliases
 9105 lookup yielded: brwk
 9105 expanded: brwk
 9105 file is not a filter file
 9105 parse_forward_list: brwk
 9105 extract item: brwk
 9105 system_aliases router generated brwk@???
 9105   errors_to=NULL transport=NULL
 9105   uid=unset gid=unset home=NULL
 9105 routed by system_aliases router
 9105   envelope to: list-demodellers@???
 9105   transport: <none>
 9105 locking /var/spool/exim/db/retry.lockfile
 9105 locked /var/spool/exim/db/retry.lockfile
 9105 opened hints database /var/spool/exim/db/retry: flags=0
 9105 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9105 Considering: brwk@???
 9105 unique = brwk@???
 9105 dbfn_read: key=R:bevteccom.co.uk
 9105 dbfn_read: key=R:brwk@???
 9105 no domain retry record
 9105 no address retry record
 9105 brwk@???: queued for routing
 9105 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9105 routing brwk@???
 9105 --------> dnslookup router <--------
 9105 local_part=brwk domain=bevteccom.co.uk
 9105 checking domains
 9105 bevteccom.co.uk in "bevteccom.co.uk : bevteccom.com : budd-rdc.org : budd-rdc.com : tehenga.free-online.co.uk"? yes (matched "bevteccom.co.uk")
 9105 bevteccom.co.uk in "! +local_domains"? no (matched "! +local_domains")
 9105 dnslookup router skipped: domains mismatch
 9105 --------> system_aliases router <--------
 9105 local_part=brwk domain=bevteccom.co.uk
 9105 calling system_aliases router
 9105 rda_interpret (string): ${lookup{$local_part}lsearch{/etc/exim/mail.aliases}}
 9105 search_open: lsearch "/etc/exim/mail.aliases"
 9105   cached open
 9105 search_find: file="/etc/exim/mail.aliases"
 9105   key="brwk" partial=-1 affix=NULL starflags=0
 9105 LRU list:
 9105   :/etc/exim/mail.aliases
 9105   End
 9105 internal_search_find: file="/etc/exim/mail.aliases"
 9105   type=lsearch key="brwk"
 9105 file lookup required for brwk
 9105   in /etc/exim/mail.aliases
 9105 lookup failed
 9105 expanded: 
 9105 file is not a filter file
 9105 parse_forward_list: 
 9105 system_aliases router declined for brwk@???
 9105 --------> userforward router <--------
 9105 local_part=brwk domain=bevteccom.co.uk
 9105 checking for local user
 9105 calling userforward router
 9105 rda_interpret (file): $home/.forward
 9105 expanded: /home/gabrielle/users/brwk/.forward
 9106 changed uid/gid: userforward router (recipient is brwk@???)
 9106   uid=13002 gid=13010 pid=9106
 9106   auxiliary group list: <none>
 9106 turned off address rewrite logging (not root or exim in this process)
 9106 2197 bytes read from /home/gabrielle/users/brwk/.forward
 9106 data is an Exim filter program
 9106 Filter: start of processing
 9106 Filter: end of processing
 9105 rda_interpret: subprocess yield=0 error=NULL
 9104 forked delivery process 9105
 9104 Process 9104 is ready for new message
 9104 smtp_setup_msg entered
 9105 set transport local_delivery
 9105 userforward router generated /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/
 9105   pipe, file, or autoreply
 9105   errors_to=NULL transport=local_delivery
 9105   uid=13002 gid=13010 home=\N/home/gabrielle/users/brwk\N
 9105 routed by userforward router
 9105   envelope to: brwk@???
 9105   transport: <none>
 9105 locking /var/spool/exim/db/retry.lockfile
 9105 locked /var/spool/exim/db/retry.lockfile
 9105 opened hints database /var/spool/exim/db/retry: flags=0
 9105 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9105 Considering: /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/
 9105 unique = /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/:brwk@???
 9105 queued for local_delivery transport
 9105 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 9105 After routing:
 9105   Local deliveries:
 9105     /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/
 9105   Remote deliveries:
 9105   Failed addresses:
 9105   Deferred addresses:
 9105 search_tidyup called
 9105 >>>>>>>>>>>>>>>> Local deliveries >>>>>>>>>>>>>>>>
 9105 --------> /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/ <--------
 9105 locking /var/spool/exim/db/retry.lockfile
 9105 locked /var/spool/exim/db/retry.lockfile
 9105 opened hints database /var/spool/exim/db/retry: flags=0
 9105 dbfn_read: key=T:/home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/:brwk@???
 9105 no retry record exists
 9105 search_tidyup called
 9107 changed uid/gid: local delivery to /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/ </home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/> transport=local_delivery
 9107   uid=13002 gid=13010 pid=9107
 9107   auxiliary group list: <none>
 9107   home=/home/gabrielle/users/brwk current=/home/gabrielle/users/brwk
 9107 set_process_info:  9107 delivering 1CYjQU-0002Mq-8G to /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/ using local_delivery
 9107 appendfile transport entered
 9107 appendfile: mode=600 notify_comsat=0 quota=0 warning=0
 9107   directory=/home/gabrielle/users/brwk/.maildir format=maildir
 9107   message_prefix=null
 9107   message_suffix=null
 9107   maildir_use_size_file=no
 9107 ensuring maildir directories exist in /home/gabrielle/users/brwk/.maildir
 9107 delivering in maildir format in /home/gabrielle/users/brwk/.maildir
 9107 writing to file tmp/1101726638.H648812P9107.gabrielle.bevteccom.co.uk
 9107 writing data block fd=7 size=3640 timeout=0
 9107 renaming temporary file
 9107 renamed tmp/1101726638.H648812P9107.gabrielle.bevteccom.co.uk as new/1101726638.H648812P9107.gabrielle.bevteccom.co.uk
 9107 appendfile yields 0 with errno=0 more_errno=0
 9105 journalling /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/:brwk@???
 9107 search_tidyup called
 9105 local_delivery transport returned OK for /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/
 9105 post-process /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/ (0)
 9105 /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/ delivered
 9105 brwk@???: children all complete
 9105 list-demodellers@???: children all complete
 9105 LOG: MAIN
 9105   => /home/gabrielle/users/brwk/.maildir (brwk@???) <list-demodellers@???> R=userforward T=local_delivery
 9105 >>>>>>>>>>>>>>>> deliveries are done >>>>>>>>>>>>>>>>
 9105 changed uid/gid: post-delivery tidying
 9105   uid=93 gid=93 pid=9105
 9105   auxiliary group list: <none>
 9105 set_process_info:  9105 tidying up after delivering 1CYjQU-0002Mq-8G
 9105 Processing retry items
 9105 Succeeded addresses:
 9105 /home/gabrielle/users/brwk/.maildir/.Lists.Rail.DEModellers/: no retry items
 9105 brwk@???: no retry items
 9105 list-demodellers@???: no retry items
 9105 brwk@???: no retry items
 9105 list-demodellers@???: no retry items
 9105 list-demodellers@???: no retry items
 9105 Failed addresses:
 9105 Deferred addresses:
 9105 end of retry processing
 9105 LOG: MAIN
 9105   Completed
 9105 end delivery of 1CYjQU-0002Mq-8G
 9105 search_tidyup called
 9105 search_tidyup called
 9105 >>>>>>>>>>>>>>>> Exim pid=9105 terminating with rc=0 >>>>>>>>>>>>>>>>
 9104 SMTP<< QUIT
 9104 SMTP>> 221 gabrielle.bevteccom.co.uk closing connection
 9104 LOG: smtp_connection MAIN
 9104   SMTP connection from mailhub-node1.mailbox.net.uk [195.82.125.30] closed by QUIT
 9104 search_tidyup called
 8238 child 9104 ended: status=0x0
 8238 0 SMTP accept processes now running
 8238 Listening...
 8238 SIGALRM received
 9332 Starting queue-runner: pid 9332
 9332 exec /usr/sbin/exim -q
 8238 1 queue-runner process running
 8238 Listening...