diff options
author | krion <krion@FreeBSD.org> | 2010-06-09 16:53:32 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2010-06-09 16:53:32 +0800 |
commit | cd71738164ed844d1287a69f0251535be3988ec7 (patch) | |
tree | 6e049b5d4c6babd6c03ab42e1c798199aea9a014 /mail/exim | |
parent | 1a02f27763d4ee63800d8be3224334f997925e00 (diff) | |
download | freebsd-ports-gnome-cd71738164ed844d1287a69f0251535be3988ec7.tar.gz freebsd-ports-gnome-cd71738164ed844d1287a69f0251535be3988ec7.tar.zst freebsd-ports-gnome-cd71738164ed844d1287a69f0251535be3988ec7.zip |
Update to 4.72
The changes from the previous release are:
1. TWO SECURITY FIXES: one relating to mail-spools which are
globally writable, the other to locking of MBX folders (not mbox).
These have CVE identifiers CVE-2010-2023 and CVE-2010-2024
2. MySQL stored procedures are now supported.
3. The dkim_domain transport option is now a list, not a single
string, and messages will be signed for each element in the list
(discarding duplicates).
4. The 4.70 release unexpectedly changed the behaviour of dnsdb TXT
lookups in the presence of multiple character strings within
the RR. Prior to 4.70, only the first string would be returned.
The dnsdb lookup now, by default, preserves the pre-4.70
semantics, but also now takes an extended output separator
specification. The separator can be followed by a semicolon, to
concatenate the individual text strings together with no join
character, or by a comma and a second separator character, in
which case the text strings within a TXT record are joined on
that second character. Administrators are reminded that DNS
provides no ordering guarantees between multiple records in an
RRset. For example:
foo.example. IN TXT "a" "b" "c"
foo.example. IN TXT "d" "e" "f"
${lookup dnsdb{>/ txt=foo.example}} -> "a/d"
${lookup dnsdb{>/; txt=foo.example}} -> "def/abc"
${lookup dnsdb{>/,+ txt=foo.example}} -> "a+b+c/d+e+f"
PR: ports/147686
Submitted by: Alexey V.Degtyarev <alexey@renatasystems.org>
Diffstat (limited to 'mail/exim')
-rw-r--r-- | mail/exim/Makefile | 2 | ||||
-rw-r--r-- | mail/exim/distinfo | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 602375eb0372..2e1fe0fa6b8d 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -58,7 +58,7 @@ PLIST_SUB+= SO_1024="" PLIST_SUB+= SO_1024="@comment " .endif -EXIM_VERSION= 4.71 +EXIM_VERSION= 4.72 SA_EXIM_VERSION=4.2 SO_1024_VERSION=3.2 diff --git a/mail/exim/distinfo b/mail/exim/distinfo index ed44d9d86a3e..e513820f8f82 100644 --- a/mail/exim/distinfo +++ b/mail/exim/distinfo @@ -1,6 +1,6 @@ -MD5 (exim/exim-4.71.tar.bz2) = f9c5a2d94b5bb132d06e2fff85bef75e -SHA256 (exim/exim-4.71.tar.bz2) = e754756f1d6cf393a0d58a2569e7ef4860aa8f797d030ec9887c2b310030bbc5 -SIZE (exim/exim-4.71.tar.bz2) = 1560170 +MD5 (exim/exim-4.72.tar.bz2) = ccc937b533568e5e8340f181a3b3d2ff +SHA256 (exim/exim-4.72.tar.bz2) = 4299bc3dc84a82f5c94494006b49acba159ad8a1fe5dd647f7ee2f9bfe78920b +SIZE (exim/exim-4.72.tar.bz2) = 1559031 MD5 (exim/sa-exim-4.2.tar.gz) = ad76f73c6b3d01caa88078e3e622745a SHA256 (exim/sa-exim-4.2.tar.gz) = 72e0a735547f18b05785e6c58a71d24623858f0f5234a5dc0e24cb453999e99a SIZE (exim/sa-exim-4.2.tar.gz) = 66575 |