summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2006-10-31$domain not always set when scanning a domain list.Philip Hazel
2006-10-31Add warning about missing colon to invalid expansion when it involvedPhilip Hazel
${if def:h_xxx (overlooked previously).
2006-10-31Added some extra debugging when updating a wait-xxx database.Philip Hazel
2006-10-31Close writing end of socket for ${readsocket before reading.Philip Hazel
2006-10-30Bugzilla #401 + #402Tom Kistner
2006-10-30Fix too-often retry bug after 4xx with more hosts than hosts_max_retry.Philip Hazel
2006-10-30Previous fix for concatenated headers wasn't backwards compatible forPhilip Hazel
completely empty headers (they are left out).
2006-10-25Typo in default configuration: relay_domains should be relay_to_domains.Philip Hazel
2006-10-24Fix backwards compatibility bug in named ACL variables.Philip Hazel
2006-10-24Remove trailing whitespace from each header before concatenation inPhilip Hazel
string expansions.
2006-10-24Added -bem option.Philip Hazel
2006-10-23John Jetmore's -Mset patch.Philip Hazel
2006-10-23Fix crash for verify=helo when no IP address (-bs).Philip Hazel
2006-10-23Note about GnuTLS incompatibility for updates from 4.50 and earlier.Philip Hazel
2006-10-18Fix tls_required and lost_connection retry testss not working.Philip Hazel
2006-10-16Add server_condition to all authenticators, to allow for additionalPhilip Hazel
conditions (and thereby implement authorization).
2006-10-16Update Dovecot authenticator to (a) lock out tabs (b) add extraPhilip Hazel
parameters "secured" and "valid-client-cert" when relevant.
2006-10-16Some tidying got overlooked in the "removal of RSA_EXPORT" patch.Philip Hazel
2006-10-16Florian Weimer's patch to remove the unwanted and unused support forPhilip Hazel
RSA_EXPORT from the GnuTLS code.
2006-10-16Tidy inconsistency in handling the "reply" argument by removing thePhilip Hazel
tests for NULL (only some times did it do it).
2006-10-10Sort out group syntax problems, particularly with verify=header_sender.Philip Hazel
2006-10-10Nico Erfurth's patch to use less resources in spool_read_header,Philip Hazel
slightly modified.
2006-10-09Arrange to call dns_init() for host_find_byname() as well as forPhilip Hazel
host_find_bydns().
2006-10-03Michael Deutschmann's patch for getting TXT from a specific list whenPhilip Hazel
a match is found on a merged list.
2006-10-03Fix misleading verification output when -v is used with -bv and aliasingPhilip Hazel
leads to a mixture of successful and unsuccessful verification.
2006-10-03Added $message_headers_raw to give all the headers without RFC 2047Philip Hazel
decoding.
2006-10-02Added dovecot authenticator.Philip Hazel
2006-09-26Add comment about {} now being an error in numerical expansionPhilip Hazel
comparisons. The bug that caused it to be treated as {0} has been fixed.
2006-09-26Add comment about split_spool_directory to the default configuration.Philip Hazel
2006-09-25Change callout EHLO/HELO from smtp_active_hostname to the helo_dataPhilip Hazel
setting from the transport, when there is one.
2006-09-25Add log_reject_target as an ACL modifier.Philip Hazel
2006-09-22Apply patch to fix bug introduced by the last patch to spool_mbox.cPhilip Hazel
(from Nico Erfurth).
2006-09-19exipick 20060919.0, support arbitrary acl_ vars from 4.64-PH/09John Jetmore
2006-09-19Tweak the ACL variable name code to require either a digit or anPhilip Hazel
underscore after acl_c or acl_m.
2006-09-19Apply Jakob Hirsch's patch for arbitrary ACL variable names, tidied upPhilip Hazel
just a little bit.
2006-09-18Check for overflow in numeric expansion conditions; forbid negativePhilip Hazel
values for message_size_limit.
2006-09-18Install the latest Makefile from the Cygwin maintainer.Philip Hazel
2006-09-12Applied Nico Erfurth's refactoring patch to spool_mbox.c.Philip Hazel
2006-09-05Nico Erfurth's patch to refactor mime.c (quoted-printable decoding).Philip Hazel
Added a small, simple test for quoted-printable decoding.
2006-09-05Ignore EPIPE as well as ECONNECT when closing down an SMTP session inPhilip Hazel
the daemon, since dropped connections can show as EPIPE in Solaris.
2006-09-05An update to gcc 4 threw up some new uninitialized variable and signed vsPhilip Hazel
unsigned compiler warnings.
2006-09-05(1) Update version number to 4.64. (2) Ignore callout cached informationPhilip Hazel
that MAIL FROM:<> is rejected when verifying a recipient using a non-null MAIL address.
2006-08-21In the add_headers option to the mail command in an Exim filter,Tony Finch
there was a bug that Exim would claim a syntax error in any header after the first one which had an odd number of characters in the field name.
2006-07-28Add { !eq{$h_list-id:$h_list-post:$h_list-subscribe:}{} } as anotherPhilip Hazel
"don't send" delay warning condition by default.
2006-07-27Allow (?-i) to work as expected in a (n)wildlsearch key.Philip Hazel
2006-07-27Exim was not testing for a space following SMTP commands such as EHLOPhilip Hazel
that require one. Thus, EHLORHUBARB was interpreted as a valid command. This bug exists in every version of Exim that I still have, right back to 0.12.
2006-07-27Re-jigged the order of the tests in the default configuration so thatPhilip Hazel
the tests for valid domains and recipients precede the DNS black list and CSA tests, on the grounds that those ones are more expensive.
2006-07-27Made -oMaa and -oMt work with -bh and -bs to pretend the connection isPhilip Hazel
authenticated or an ident call has been made. Suppress the default values for $authenticated_id and $authenticated_sender (but permit -oMai and -oMas) when testing with -bh.
2006-07-26Fixed a number of test suite problems as reported (and partly patched)Philip Hazel
by Martin Mrazik.
2006-07-21exipick 20060721.2John Jetmore