summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2005-06-16added "prvs" and "prvscheck" expansion itemsTom Kistner
2005-06-16(1) Applied Matthew Newton's exicyclog patch. (2) Another wish.Philip Hazel
2005-06-16Check the length of off_t at build time and use %ld or %lld to printPhilip Hazel
off_t values as appropriate. Assume that %lld is available if the size of off_t is greater than 4. This involved some modifications to string_vformat() in order to handle %lld.
2005-06-15Fix typo in previous commit.Tony Finch
2005-06-15Some systems need an explicit -ldl in order to support EXPAND_DLFUNCTony Finch
2005-06-15Installed PCRE 6.0 sources, which involved adding a number of files andPhilip Hazel
renaming some others.
2005-06-14Auto_thaw no longer applies to bounce messages.Philip Hazel
2005-06-14Applied Alex Kiernan's patch for the API change in BDB 4.3.Philip Hazel
2005-06-13Fix a typo in an error message for ${extract reported byTony Finch
Jeremy Harris <jgh@wizmail.org> in exim-users Message-ID: <42AC48EB.90406@wizmail.org>
2005-06-10Another ratelimit tweak. I didn't anticipate people using per_cmdTony Finch
ratelimits more than once in the same ACL (e.g. to increase the delay for higher rates) so the code didn't do the right thing in that situation. There's now a per_cmd cache which is reset at the start of each ACL run.
2005-06-10A minor code clean-up and a comment fix for the CSA patch arisingTony Finch
from a bug report by John Horne. The lack of initialization of the found variable in acl_verify_csa() was not a bug but I've fixed it because it's risky. Bug ID 26
2005-06-10Revert accidental bogus checkin, sorryTom Kistner
2005-06-10Fix possible endless loop due to dying spamdTom Kistner
2005-06-07Upgrade appendfile so that it is capable of handling quotas that arePhilip Hazel
greater than 2G.
2005-06-07Fix ${def: bug which treated "0" as false. Also diagnose syntax error ofPhilip Hazel
unexpected characters after the variable name.
2005-06-07Installed exipick 20050604.1 as supplied by John Jetmore.Philip Hazel
2005-06-06Added Chris Webb contributionTom Kistner
2005-06-06Merged patched from Alex Miller: 1) Improve aveserver failure handling 2) ↵Tom Kistner
Write proper mbox delimiter in .eml files. 3) add X-Envelope-Sender and X-Envelope-To headers to .eml file
2005-06-03Added -xls and the ability to specify output files (Frank Heydlauf).Steve Campbell
Use FileHandles for outputing results. Allow any combination of xls, txt, and html output. Fixed display of large numbers with -nvr option Fixed merging of reports with empty tables. Added the -include_original_destination flag Removed tabs and trailing whitespace.
2005-05-31ratelimit fix: omit the limit parameter from the database lookupTony Finch
key, so that minor configuration tweaks do not cause Exim to forget clients' stored rates. The smoothing period and options affect the meaning of the stored state, so are still included in the key.
2005-05-31Minor tweak to a comment.Philip Hazel
2005-05-31Add "fullpostmaster" to check <postmaster> without a domain, if thePhilip Hazel
domained version fails.
2005-05-25Add simple SPF lookup method (armored in EXPERIMENTAL_SPF)Tom Kistner
2005-05-25Fix possible NULL secretTom Kistner
2005-05-25Change the result of the ratelimit ACL condition when clients are sendingTony Finch
exactly at the limit, in order to improve the behaviour of certain edge cases. The result was FAIL (under limit) and it's now OK (over limit).
2005-05-24Reduce the timeout when writing a block has to be done in severalPhilip Hazel
write() calls.
2005-05-24Put DPC's mkcdb script (with tabs removed) into the util directory, andPhilip Hazel
also created a README file for that directory.
2005-05-24Remove broken code in exim.h that tried to preserve EX_OK when it wasPhilip Hazel
redefined in unistd.h (IRIX6). It didn't matter because EX_OK is not used.
2005-05-24Remove C++ style comments accidentally introduced by Tom. :-)Philip Hazel
2005-05-24SPF: rewrote code to work with 1.2.x libsfp2 series. SRS: upgraded to latest ↵Tom Kistner
patch from Miles Wilton. Misc: remove some tabs and whitespace.
2005-05-23Add the ratelimit ACL condition. This is mostly reasonably self-containedTony Finch
except that it requires changes to most Makefiles in order to bring in the maths library for the exp() function.
2005-05-23Add control=fakedefer to go with control=fakereject.Tony Finch
2005-05-17Installed a modified version of Tony's submission enhancement patch +Philip Hazel
two small bugfixes.
2005-05-17Output the warning log line about deferring conditions in "warn"Philip Hazel
statements every time, not just once per message.
2005-05-17Tidy up "make" output along the lines of a 2.6 kernel make (just a shortPhilip Hazel
line for each compile). The full output can still be requested, however.
2005-05-11Added a long comment to acl.c about the problem of detecting a clientPhilip Hazel
going away during a "delay" wait.
2005-05-10Fix poll() being unavailable on Mac OSX 10.2Tom Kistner
2005-05-10Add commented-out example of CSA check to the default configuration.Philip Hazel
2005-05-101. Preserve underlying transport filter timeout message if a pipePhilip Hazel
command ends in failure.
2005-05-101. Update version.Philip Hazel
2. Apply Tony's CSA patch (with some fixes) and add simple test.
2005-05-04Pass $(MAKE) to the scripts/Configure-config.h script so that it usesPhilip Hazel
the same command (e.g. "gmake") that was called externally.
2005-05-03Looks like HP-UX needs these settings to avoid compiler warnings:Philip Hazel
#define ICONV_ARG2_TYPE char ** #define EXIM_SOCKLEN_T size_t
2005-05-03(1) Don't ignore timeouts while writing to a pipe! (As opposed toPhilip Hazel
timeout of the pipe command process.) (2) Add timeout_defer option to turn timeouts into defers (default has always been to fail). (3) An upgrade to my desktop OS and to SSL has caused the output from some of the test scripts to change.
2005-05-03Patch from Sieve maintainer for latest vacation updates.Philip Hazel
2005-04-29Add 3 DomainKeys globals to eximonTom Kistner
2005-04-28Make $value usable in the "else" part of ${run.Philip Hazel
2005-04-28Remove details of errors in bounce and delay warning messages, unlessPhilip Hazel
explicitly specified (e.g. :fail:) or a message from a remote host.
2005-04-27Install Tony's patch for $message_linecount.Philip Hazel
2005-04-27Ensure the value of $authenticated_id contains only printing characters.Philip Hazel
2005-04-27Quota values can be followed by G as well as K and M.Philip Hazel