diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2022-08-23 19:27:56 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2022-08-24 13:30:27 +0200 |
commit | d96560a97701c7aef9bf4fd69bb2c47d2268d40b (patch) | |
tree | 4a59e6840f168de156df811604b371fe0bff6814 /extra | |
parent | 44e993e8025a5ef04e4b5096e272caeaa814a3c9 (diff) | |
download | current-d96560a97701c7aef9bf4fd69bb2c47d2268d40b.tar.gz |
Tue Aug 23 19:27:56 UTC 202220220823192756_15.0
extra/sendmail/sendmail-8.17.1-x86_64-3_slack15.0.txz: Rebuilt.
In recent versions of glibc, USE_INET6 has been removed which caused sendmail
to reject mail from IPv6 addresses. Adding -DHAS_GETHOSTBYNNAME2=1 to the
site.config.m4 allows the reverse lookups to work again fixing this issue.
Thanks to talo.
extra/sendmail/sendmail-cf-8.17.1-noarch-3_slack15.0.txz: Rebuilt.
patches/packages/hunspell-1.7.1-x86_64-1_slack15.0.txz: Upgraded.
Fixed invalid read operation in SuggestMgr::leftcommonsubstring
in suggestmgr.cxx.
For more information, see:
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16707
(* Security fix *)
patches/packages/mozilla-firefox-91.13.0esr-x86_64-1_slack15.0.txz: Upgraded.
This update contains security fixes and improvements.
For more information, see:
https://www.mozilla.org/en-US/firefox/91.13.0/releasenotes/
https://www.mozilla.org/security/advisories/mfsa2022-35/
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-38472
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-38473
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-38478
(* Security fix *)
patches/packages/mozilla-thunderbird-91.13.0-x86_64-1_slack15.0.txz: Upgraded.
This release contains security fixes and improvements.
For more information, see:
https://www.mozilla.org/en-US/thunderbird/91.13.0/releasenotes/
https://www.mozilla.org/en-US/security/advisories/mfsa2022-37/
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-38472
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-38473
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-38478
(* Security fix *)
Diffstat (limited to 'extra')
-rwxr-xr-x | extra/source/sendmail/SlackBuild-sendmail | 2 | ||||
-rwxr-xr-x | extra/source/sendmail/SlackBuild-sendmail-cf | 2 | ||||
-rw-r--r-- | extra/source/sendmail/site.config.m4 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/extra/source/sendmail/SlackBuild-sendmail b/extra/source/sendmail/SlackBuild-sendmail index 67dd8b7c..f2fc73b0 100755 --- a/extra/source/sendmail/SlackBuild-sendmail +++ b/extra/source/sendmail/SlackBuild-sendmail @@ -21,7 +21,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. VERSION=8.17.1 -BUILD=${BUILD:-2} +BUILD=${BUILD:-3_slack15.0} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then diff --git a/extra/source/sendmail/SlackBuild-sendmail-cf b/extra/source/sendmail/SlackBuild-sendmail-cf index 2a26aa00..76d32629 100755 --- a/extra/source/sendmail/SlackBuild-sendmail-cf +++ b/extra/source/sendmail/SlackBuild-sendmail-cf @@ -22,7 +22,7 @@ VERSION=8.17.1 ARCH=noarch -BUILD=${BUILD:-2} +BUILD=${BUILD:-3_slack15.0} CWD=$(pwd) TMP=${TMP:-/tmp} diff --git a/extra/source/sendmail/site.config.m4 b/extra/source/sendmail/site.config.m4 index e3ddae3d..1142d2c7 100644 --- a/extra/source/sendmail/site.config.m4 +++ b/extra/source/sendmail/site.config.m4 @@ -2,5 +2,5 @@ APPENDDEF(`confMAPDEF', `-DNEWDB') APPENDDEF(`confLIBS', `-lnsl -lssl -lcrypto -lsasl2 -lwrap -lm -ldb -lresolv -licui18n -licuuc -licudata') APPENDDEF(`conf_libmilter_ENVDEF', `-DMILTER') APPENDDEF(`conf_sendmail_ENVDEF', `-DMILTER') -APPENDDEF(`confENVDEF', `-DNETINET6 -DNEWDB -DSTARTTLS -DDANE -DSASL=2 -DTCPWRAPPERS -DNIS -DMAP_REGEX -DSOCKETMAP -DTLS_EC -DUSE_EAI')dnl +APPENDDEF(`confENVDEF', `-DNETINET6 -DHAS_GETHOSTBYNAME2=1 -DNEWDB -DSTARTTLS -DDANE -DSASL=2 -DTCPWRAPPERS -DNIS -DMAP_REGEX -DSOCKETMAP -DTLS_EC -DUSE_EAI')dnl |