mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
mail/opensmtpd: update to 7.6.0p1 portable release (+)
Release Notes: https://github.com/OpenSMTPD/OpenSMTPD/releases/tag/7.4.0p0 \ https://github.com/OpenSMTPD/OpenSMTPD/releases/tag/7.4.0p1 \ https://github.com/OpenSMTPD/OpenSMTPD/releases/tag/7.5.0p0 \ https://github.com/OpenSMTPD/OpenSMTPD/releases/tag/7.6.0p0 \ https://github.com/OpenSMTPD/OpenSMTPD/releases/tag/7.6.0p1
This commit is contained in:
parent
201d19c3ab
commit
ee88247497
4 changed files with 9 additions and 9 deletions
|
@ -1,7 +1,6 @@
|
|||
PORTNAME= opensmtpd
|
||||
PORTVERSION= 7.3.0
|
||||
PORTREVISION= 3
|
||||
DISTVERSIONSUFFIX= p2
|
||||
PORTVERSION= 7.6.0
|
||||
DISTVERSIONSUFFIX= p1
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= https://www.opensmtpd.org/archives/
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1695893703
|
||||
SHA256 (opensmtpd-7.3.0p2.tar.gz) = fccdfbc5b98d150012bf9ccdef51752c18a862ed10888b56289826b83a2b5a4e
|
||||
SIZE (opensmtpd-7.3.0p2.tar.gz) = 846999
|
||||
TIMESTAMP = 1735844516
|
||||
SHA256 (opensmtpd-7.6.0p1.tar.gz) = b27c806982a6653a2637f810ae7a45372b9a7ff99350ee1003746503ff0e4a97
|
||||
SIZE (opensmtpd-7.6.0p1.tar.gz) = 933649
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
--- openbsd-compat/libtls/tls.c.orig 2023-09-16 18:11:28 UTC
|
||||
--- openbsd-compat/libtls/tls.c.orig 2024-09-04 07:11:38 UTC
|
||||
+++ openbsd-compat/libtls/tls.c
|
||||
@@ -584,10 +584,10 @@ tls_configure_ssl_verify(struct tls *ctx, SSL_CTX *ssl
|
||||
@@ -635,10 +635,10 @@ tls_configure_ssl_verify(struct tls *ctx, SSL_CTX *ssl
|
||||
|
||||
/* If no CA has been specified, attempt to load the default. */
|
||||
if (ctx->config->ca_mem == NULL && ctx->config->ca_path == NULL) {
|
||||
- if (tls_config_load_file(&ctx->error, "CA", tls_default_ca_cert_file(),
|
||||
- &ca_mem, &ca_len) != 0)
|
||||
+ if (!SSL_CTX_set_default_verify_paths(ssl_ctx)) {
|
||||
+ tls_set_error(ctx, "failed to load default trust store");
|
||||
+ tls_set_error(ctx, TLS_ERROR_UNKNOWN, "failed to load default trust store");
|
||||
goto err;
|
||||
- ca_free = ca_mem;
|
||||
+ }
|
||||
|
|
|
@ -17,6 +17,7 @@ share/man/man5/forward.5.gz
|
|||
share/man/man5/smtpd.conf.5.gz
|
||||
share/man/man5/table.5.gz
|
||||
share/man/man7/smtpd-filters.7.gz
|
||||
share/man/man7/smtpd-tables.7.gz
|
||||
share/man/man8/mail.lmtp.8.gz
|
||||
share/man/man8/mail.local.8.gz
|
||||
share/man/man8/mail.maildir.8.gz
|
||||
|
|
Loading…
Add table
Reference in a new issue