pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/mail
Module Name: pkgsrc
Committed By: adam
Date: Sun Nov 14 20:19:08 UTC 2021
Modified Files:
pkgsrc/mail/exim: Makefile distinfo
pkgsrc/mail/exim-html: Makefile PLIST distinfo
Log Message:
exim exim-html: updated to 4.95
Version 4.95
------------
1. The fast-ramp two phase queue run support, previously experimental, is
now supported by default.
2. The native SRS support, previously experimental, is now supported. It is
not built unless specified in the Local/Makefile.
3. TLS resumption support, previously experimental, is now supported and
included in default builds.
4. Single-key LMDB lookups, previously experimental, are now supported.
The support is not built unless specified in the Local/Makefile.
5. Option "message_linelength_limit" on the smtp transport to enforce (by
default) the RFC 998 character limit.
6. An option to ignore the cache on a lookup.
7. Quota checking during reception (i.e. at SMTP time) for appendfile-
transport-managed quotas.
8. Sqlite lookups accept a "file=<path>" option to specify a per-operation
db file, replacing the previous prefix to the SQL string (which had
issues when the SQL used tainted values).
9. Lsearch lookups accept a "ret=full" option, to return both the portion
of the line matching the key, and the remainder.
10. A command-line option to have a daemon not create a notifier socket.
11. Faster TLS startup. When various configuration options contain no
expandable elements, the information can be preloaded and cached rather
than the previous behaviour of always loading at startup time for every
connection. This helps particularly for the CA bundle.
12. Proxy Protocol Timeout is configurable via "proxy_protocol_timeout"
main config option.
13. Option "smtp_accept_max_per_connection" is now expanded.
14. Log selector "queue_size_exclusive", enabled by default, to exclude the
time taken for reception from QT log elements.
15. Main option "smtp_backlog_monitor", to set a level above which listen
socket backlogs are logged.
16. Main option "hosts_require_helo", requiring HELO or EHLO before MAIL.
17. A main config option "allow_insecure_tainted_data" allows to turn
18. TLS ALPN handling. By default, refuse TLS connections that try to specify
a non-smtp (eg. http) use. Options for customising.
19. Support for MacOS (darwin) has been dropped.
To generate a diff of this commit:
cvs rdiff -u -r1.188 -r1.189 pkgsrc/mail/exim/Makefile
cvs rdiff -u -r1.81 -r1.82 pkgsrc/mail/exim/distinfo
cvs rdiff -u -r1.44 -r1.45 pkgsrc/mail/exim-html/Makefile
cvs rdiff -u -r1.23 -r1.24 pkgsrc/mail/exim-html/PLIST
cvs rdiff -u -r1.37 -r1.38 pkgsrc/mail/exim-html/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/mail/exim/Makefile
diff -u pkgsrc/mail/exim/Makefile:1.188 pkgsrc/mail/exim/Makefile:1.189
--- pkgsrc/mail/exim/Makefile:1.188 Wed Jun 23 20:33:12 2021
+++ pkgsrc/mail/exim/Makefile Sun Nov 14 20:19:08 2021
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.188 2021/06/23 20:33:12 nia Exp $
+# $NetBSD: Makefile,v 1.189 2021/11/14 20:19:08 adam Exp $
-DISTNAME= exim-4.94.2
-PKGREVISION= 2
+DISTNAME= exim-4.95
CATEGORIES= mail net
MASTER_SITES= https://ftp.exim.org/pub/exim/exim4/
MASTER_SITES+= https://ftp.exim.org/pub/exim/exim4/fixes/
Index: pkgsrc/mail/exim/distinfo
diff -u pkgsrc/mail/exim/distinfo:1.81 pkgsrc/mail/exim/distinfo:1.82
--- pkgsrc/mail/exim/distinfo:1.81 Tue Oct 26 10:53:59 2021
+++ pkgsrc/mail/exim/distinfo Sun Nov 14 20:19:08 2021
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.81 2021/10/26 10:53:59 nia Exp $
+$NetBSD: distinfo,v 1.82 2021/11/14 20:19:08 adam Exp $
-BLAKE2s (exim-4.94.2.tar.xz) = 0bec3a05ec7981d24ffb220f175530b27c2edd626594157f2ebca33d13850011
-SHA512 (exim-4.94.2.tar.xz) = 5334c236221ed4e03dbc33e6a79d939b06037fa2f4b71971607a360b67af5c85a89681ee13a5eeaf0184382c55a160cf2e89ed7afb2949f025a54f1e88f9e3fc
-Size (exim-4.94.2.tar.xz) = 1838076 bytes
+BLAKE2s (exim-4.95.tar.xz) = 93089cb1c4432202d3b3bc6c4215e614d77034ecb84c93de17aabb70c5aa7b71
+SHA512 (exim-4.95.tar.xz) = 93d09c20d99f27da5edbe3e6dc7d25aa4548faa2b67ca26f2cc0b4aeaf58398dd468e0263714fcf0df97531f05d16fcd3f1f0e9d0656ead7858a66b248a44a65
+Size (exim-4.95.tar.xz) = 1865172 bytes
SHA1 (patch-Local_Makefile.pkgsrc) = 7d6971cfe6f6fecf854926e90460b1a8bcd6a79d
SHA1 (patch-OS_Makefile-Default) = 6af17f036ed02a3bc37c1f303269eea447fcb691
SHA1 (patch-lookups_Makefile) = cfc40dba3f75ef37b9887f7767139ad50cf9d4e5
Index: pkgsrc/mail/exim-html/Makefile
diff -u pkgsrc/mail/exim-html/Makefile:1.44 pkgsrc/mail/exim-html/Makefile:1.45
--- pkgsrc/mail/exim-html/Makefile:1.44 Wed Apr 21 08:11:16 2021
+++ pkgsrc/mail/exim-html/Makefile Sun Nov 14 20:19:08 2021
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.44 2021/04/21 08:11:16 wiz Exp $
+# $NetBSD: Makefile,v 1.45 2021/11/14 20:19:08 adam Exp $
-DISTNAME= exim-html-4.94
+DISTNAME= exim-html-4.95
CATEGORIES= mail net
MASTER_SITES= ftp://ftp.exim.org/pub/exim/exim4/
EXTRACT_SUFX= .tar.xz
Index: pkgsrc/mail/exim-html/PLIST
diff -u pkgsrc/mail/exim-html/PLIST:1.23 pkgsrc/mail/exim-html/PLIST:1.24
--- pkgsrc/mail/exim-html/PLIST:1.23 Mon Jun 1 19:42:48 2020
+++ pkgsrc/mail/exim-html/PLIST Sun Nov 14 20:19:08 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.23 2020/06/01 19:42:48 adam Exp $
+@comment $NetBSD: PLIST,v 1.24 2021/11/14 20:19:08 adam Exp $
share/doc/exim/html/spec_html/ch-access_control_lists.html
share/doc/exim/html/spec_html/ch-adding_a_local_scan_function_to_exim.html
share/doc/exim/html/spec_html/ch-adding_new_drivers_or_lookup_types.html
@@ -8,7 +8,7 @@ share/doc/exim/html/spec_html/ch-buildin
share/doc/exim/html/spec_html/ch-concept_index.html
share/doc/exim/html/spec_html/ch-content_scanning_at_acl_time.html
share/doc/exim/html/spec_html/ch-customizing_bounce_and_warning_messages.html
-share/doc/exim/html/spec_html/ch-dkim_spf_and_dmarc.html
+share/doc/exim/html/spec_html/ch-dkim_spf_srs_and_dmarc.html
share/doc/exim/html/spec_html/ch-domain_host_address_and_local_part_lists.html
share/doc/exim/html/spec_html/ch-embedded_perl.html
share/doc/exim/html/spec_html/ch-encrypted_smtp_connections_using_tlsssl.html
@@ -157,4 +157,32 @@ share/doc/exim/html/static/doc/security/
share/doc/exim/html/static/doc/security/CVE-2019-13917.txt
share/doc/exim/html/static/doc/security/CVE-2019-15846.txt
share/doc/exim/html/static/doc/security/CVE-2019-16928.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/21nails.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28007-LFDIR.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28008-SPDIR.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28009-STDIN.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28010-SLCWD.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28011-SPRSS.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28012-CLOSE.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28013-PFPSN.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28014-PIDFP.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28015-NLEND.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28016-PFPZA.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28017-RCPTL.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28018-OCORK.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28019-BDATA.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28020-HSIZE.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28021-MAUTH.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28022-EXOPT.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28023-SCHAD.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28024-UNGET.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28025-BHASH.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2020-28026-FGETS.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-2021-27216-DELETE-PID-FILE.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/CVE-assigments.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/minor-issues.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/patches-4.94+fixes.tar.gz
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/patches1.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/patches2.txt
+share/doc/exim/html/static/doc/security/CVE-2020-qualys/patches3.txt
share/doc/exim/html/static/js/common.js
Index: pkgsrc/mail/exim-html/distinfo
diff -u pkgsrc/mail/exim-html/distinfo:1.37 pkgsrc/mail/exim-html/distinfo:1.38
--- pkgsrc/mail/exim-html/distinfo:1.37 Tue Oct 26 10:54:00 2021
+++ pkgsrc/mail/exim-html/distinfo Sun Nov 14 20:19:08 2021
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.37 2021/10/26 10:54:00 nia Exp $
+$NetBSD: distinfo,v 1.38 2021/11/14 20:19:08 adam Exp $
-BLAKE2s (exim-html-4.94.tar.xz) = 034ec6f108ee73bc42db461a66ded5b6d789d7a5149fdce305660752a7b6fcc5
-SHA512 (exim-html-4.94.tar.xz) = 215ec8784b624b3729cd87e73d58177fd2a0671c7b5ff6c5ad1ec0265906e11af55d45fe47842ce5cf4ca3d18748deb2b6a4b1c88d8c2d5ce424a3a5a3fed7da
-Size (exim-html-4.94.tar.xz) = 506796 bytes
+BLAKE2s (exim-html-4.95.tar.xz) = 153711bc193cfb3687383bcc82a5ce720fb5baadbbd9b9dc2e3538fac559e2d8
+SHA512 (exim-html-4.95.tar.xz) = ddfbc2dde8a88b4de51fa146ce46532835d310e15c2d9dae96e84a3a55f3440d23de556acf5fb87221306ff37cb3b2ed3c14ab3ab2532919ce7975e441aa0157
+Size (exim-html-4.95.tar.xz) = 564164 bytes
Home |
Main Index |
Thread Index |
Old Index