diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/cyrus-imapd310/files/patch-imap__httpd.c | 25 | ||||
-rw-r--r-- | mail/cyrus-imapd312/files/patch-imap__httpd.c | 25 | ||||
-rw-r--r-- | mail/cyrus-imapd38/files/patch-imap__httpd.c | 25 | ||||
-rw-r--r-- | mail/dbmail/Makefile | 2 | ||||
-rw-r--r-- | mail/dbmail/distinfo | 6 | ||||
-rw-r--r-- | mail/dbmail/pkg-plist | 3 | ||||
-rw-r--r-- | mail/imap-tools/Makefile | 1 | ||||
-rw-r--r-- | mail/mailpit/Makefile | 4 | ||||
-rw-r--r-- | mail/mailpit/distinfo | 14 | ||||
-rw-r--r-- | mail/mailpit/files/patch-package-lock.json | 16 | ||||
-rw-r--r-- | mail/nextcloud-mail/Makefile | 2 | ||||
-rw-r--r-- | mail/nextcloud-mail/distinfo | 6 | ||||
-rw-r--r-- | mail/p5-Sisimai/Makefile | 2 | ||||
-rw-r--r-- | mail/p5-Sisimai/distinfo | 6 | ||||
-rw-r--r-- | mail/pizauth/Makefile | 1 | ||||
-rw-r--r-- | mail/thunderbird-esr/Makefile | 1 | ||||
-rw-r--r-- | mail/thunderbird/Makefile | 4 | ||||
-rw-r--r-- | mail/thunderbird/distinfo | 6 | ||||
-rw-r--r-- | mail/thunderbird/files/patch-bug1973073 | 23 |
19 files changed, 115 insertions, 57 deletions
diff --git a/mail/cyrus-imapd310/files/patch-imap__httpd.c b/mail/cyrus-imapd310/files/patch-imap__httpd.c new file mode 100644 index 000000000000..efec7547cc68 --- /dev/null +++ b/mail/cyrus-imapd310/files/patch-imap__httpd.c @@ -0,0 +1,25 @@ +--- imap/httpd.c.orig 2025-06-27 04:15:42 UTC ++++ imap/httpd.c +@@ -1286,7 +1286,22 @@ static int tls_init(int client_auth, struct buf *serve + + static int tls_init(int client_auth, struct buf *serverinfo) + { ++#ifdef OPENSSL_FULL_VERSION_STR + buf_printf(serverinfo, " OpenSSL/%s", OPENSSL_FULL_VERSION_STR); ++#else ++ unsigned long version = OPENSSL_VERSION_NUMBER; ++ unsigned int status = version & 0x0f; version >>= 4; ++ unsigned int patch = version & 0xff; version >>= 8; ++ unsigned int fix = version & 0xff; version >>= 8; ++ unsigned int minor = version & 0xff; version >>= 8; ++ unsigned int major = version & 0xff; ++ ++ buf_printf(serverinfo, " OpenSSL/%u.%u.%u", major, minor, fix); ++ ++ if (status == 0) buf_appendcstr(serverinfo, "-dev"); ++ else if (status < 15) buf_printf(serverinfo, "-beta%u", status); ++ else if (patch) buf_putc(serverinfo, patch + 'a' - 1); ++#endif + + if (!tls_enabled()) return HTTP_UNAVAILABLE; + diff --git a/mail/cyrus-imapd312/files/patch-imap__httpd.c b/mail/cyrus-imapd312/files/patch-imap__httpd.c new file mode 100644 index 000000000000..efec7547cc68 --- /dev/null +++ b/mail/cyrus-imapd312/files/patch-imap__httpd.c @@ -0,0 +1,25 @@ +--- imap/httpd.c.orig 2025-06-27 04:15:42 UTC ++++ imap/httpd.c +@@ -1286,7 +1286,22 @@ static int tls_init(int client_auth, struct buf *serve + + static int tls_init(int client_auth, struct buf *serverinfo) + { ++#ifdef OPENSSL_FULL_VERSION_STR + buf_printf(serverinfo, " OpenSSL/%s", OPENSSL_FULL_VERSION_STR); ++#else ++ unsigned long version = OPENSSL_VERSION_NUMBER; ++ unsigned int status = version & 0x0f; version >>= 4; ++ unsigned int patch = version & 0xff; version >>= 8; ++ unsigned int fix = version & 0xff; version >>= 8; ++ unsigned int minor = version & 0xff; version >>= 8; ++ unsigned int major = version & 0xff; ++ ++ buf_printf(serverinfo, " OpenSSL/%u.%u.%u", major, minor, fix); ++ ++ if (status == 0) buf_appendcstr(serverinfo, "-dev"); ++ else if (status < 15) buf_printf(serverinfo, "-beta%u", status); ++ else if (patch) buf_putc(serverinfo, patch + 'a' - 1); ++#endif + + if (!tls_enabled()) return HTTP_UNAVAILABLE; + diff --git a/mail/cyrus-imapd38/files/patch-imap__httpd.c b/mail/cyrus-imapd38/files/patch-imap__httpd.c new file mode 100644 index 000000000000..efec7547cc68 --- /dev/null +++ b/mail/cyrus-imapd38/files/patch-imap__httpd.c @@ -0,0 +1,25 @@ +--- imap/httpd.c.orig 2025-06-27 04:15:42 UTC ++++ imap/httpd.c +@@ -1286,7 +1286,22 @@ static int tls_init(int client_auth, struct buf *serve + + static int tls_init(int client_auth, struct buf *serverinfo) + { ++#ifdef OPENSSL_FULL_VERSION_STR + buf_printf(serverinfo, " OpenSSL/%s", OPENSSL_FULL_VERSION_STR); ++#else ++ unsigned long version = OPENSSL_VERSION_NUMBER; ++ unsigned int status = version & 0x0f; version >>= 4; ++ unsigned int patch = version & 0xff; version >>= 8; ++ unsigned int fix = version & 0xff; version >>= 8; ++ unsigned int minor = version & 0xff; version >>= 8; ++ unsigned int major = version & 0xff; ++ ++ buf_printf(serverinfo, " OpenSSL/%u.%u.%u", major, minor, fix); ++ ++ if (status == 0) buf_appendcstr(serverinfo, "-dev"); ++ else if (status < 15) buf_printf(serverinfo, "-beta%u", status); ++ else if (patch) buf_putc(serverinfo, patch + 'a' - 1); ++#endif + + if (!tls_enabled()) return HTTP_UNAVAILABLE; + diff --git a/mail/dbmail/Makefile b/mail/dbmail/Makefile index c25ff269e837..20aa942e02d0 100644 --- a/mail/dbmail/Makefile +++ b/mail/dbmail/Makefile @@ -1,6 +1,6 @@ PORTNAME= dbmail DISTVERSIONPREFIX= v -DISTVERSION= 3.5.3 +DISTVERSION= 3.5.4 CATEGORIES= mail MAINTAINER= bofh@FreeBSD.org diff --git a/mail/dbmail/distinfo b/mail/dbmail/distinfo index be2a5cd84d16..0e838f1a0fa8 100644 --- a/mail/dbmail/distinfo +++ b/mail/dbmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749110677 -SHA256 (dbmail-dbmail-v3.5.3_GH0.tar.gz) = 17067210d497ef5c9b75a9919ecbd9b44d338295c251b88c6060bec948b2b012 -SIZE (dbmail-dbmail-v3.5.3_GH0.tar.gz) = 2545789 +TIMESTAMP = 1751534573 +SHA256 (dbmail-dbmail-v3.5.4_GH0.tar.gz) = 509a189c083c44bedadb320c037b144d9f2d1955b9a54dbb9dd3d73c7e8337c9 +SIZE (dbmail-dbmail-v3.5.4_GH0.tar.gz) = 2547614 diff --git a/mail/dbmail/pkg-plist b/mail/dbmail/pkg-plist index 081f99c650de..d54771f9558b 100644 --- a/mail/dbmail/pkg-plist +++ b/mail/dbmail/pkg-plist @@ -53,6 +53,7 @@ sbin/dbmail-util %%DATADIR%%/mysql/upgrades/32005.mysql %%DATADIR%%/mysql/upgrades/32006.mysql %%DATADIR%%/mysql/upgrades/35001.mysql +%%DATADIR%%/mysql/upgrades/35002.mysql %%DATADIR%%/mysql/upgrades/create_tables.mysql %%DATADIR%%/oracle/dbmail_grant.sql %%DATADIR%%/oracle/dbmail_schema.sql @@ -74,6 +75,7 @@ sbin/dbmail-util %%DATADIR%%/postgresql/upgrades/32005.psql %%DATADIR%%/postgresql/upgrades/32006.psql %%DATADIR%%/postgresql/upgrades/35001.psql +%%DATADIR%%/postgresql/upgrades/35002.psql %%DATADIR%%/postgresql/upgrades/create_tables.psql %%DATADIR%%/sqlite/2_1_7-2_2_0.sqlite %%DATADIR%%/sqlite/2_2-3_0.sqlite @@ -91,6 +93,7 @@ sbin/dbmail-util %%DATADIR%%/sqlite/upgrades/32005.sqlite %%DATADIR%%/sqlite/upgrades/32006.sqlite %%DATADIR%%/sqlite/upgrades/35001.sqlite +%%DATADIR%%/sqlite/upgrades/35002.sqlite %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.md %%PORTDOCS%%%%DOCSDIR%%/INSTALL diff --git a/mail/imap-tools/Makefile b/mail/imap-tools/Makefile index 27afa4559dcc..771bc23aab98 100644 --- a/mail/imap-tools/Makefile +++ b/mail/imap-tools/Makefile @@ -1,5 +1,6 @@ PORTNAME= imap-tools DISTVERSION= 1.4.4 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} diff --git a/mail/mailpit/Makefile b/mail/mailpit/Makefile index 5d20d596abf1..8fa1ebf0339a 100644 --- a/mail/mailpit/Makefile +++ b/mail/mailpit/Makefile @@ -1,6 +1,6 @@ PORTNAME= mailpit DISTVERSIONPREFIX= v -DISTVERSION= 1.26.2 +DISTVERSION= 1.27.0 CATEGORIES= mail devel MASTER_SITES= https://www.madpilot.net/mailpit/:npmcache \ LOCAL/madpilot/mailpit:npmcache @@ -18,7 +18,7 @@ ONLY_FOR_ARCHS_REASON= dependency modernc.org/sqlite only supported on these BUILD_DEPENDS= npm>0:www/npm -USES= go:1.23,modules tar:zstd +USES= go:1.24,modules tar:zstd USE_RC_SUBR= mailpit GO_MODULE= github.com/axllent/mailpit GO_BUILDFLAGS= -ldflags="-s -w -X \"github.com/axllent/mailpit/config.Version=${DISTVERSIONPREFIX}${DISTVERSION}\"" diff --git a/mail/mailpit/distinfo b/mail/mailpit/distinfo index 622b2e486355..48d85c9d207b 100644 --- a/mail/mailpit/distinfo +++ b/mail/mailpit/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1750489062 -SHA256 (go/mail_mailpit/mailpit-v1.26.2/mailpit-npm-cache-1.26.2.tar.zst) = 78906f7b6354695064db9c508ed853e21e97c31fe86951d965faca2e51193dee -SIZE (go/mail_mailpit/mailpit-v1.26.2/mailpit-npm-cache-1.26.2.tar.zst) = 43697832 -SHA256 (go/mail_mailpit/mailpit-v1.26.2/v1.26.2.mod) = c887c4ade4d2b94ad420e6e99eeeb351b09f4abac0b26747d63b3532ee452855 -SIZE (go/mail_mailpit/mailpit-v1.26.2/v1.26.2.mod) = 2974 -SHA256 (go/mail_mailpit/mailpit-v1.26.2/v1.26.2.zip) = cad03f1d6fd917bee36a6e69dd2d9732c35c679c2e601a4815ef13b4103e9ce1 -SIZE (go/mail_mailpit/mailpit-v1.26.2/v1.26.2.zip) = 604571 +TIMESTAMP = 1751130008 +SHA256 (go/mail_mailpit/mailpit-v1.27.0/mailpit-npm-cache-1.27.0.tar.zst) = fcaeb98fb989d5cb48d0a142e22cce5662e028f11cd69e0ae35dfe809e5c5613 +SIZE (go/mail_mailpit/mailpit-v1.27.0/mailpit-npm-cache-1.27.0.tar.zst) = 43825209 +SHA256 (go/mail_mailpit/mailpit-v1.27.0/v1.27.0.mod) = 2450aa90896952adab434f31b8e1c700a11553b8c6e1842f325b6b4b114ff19a +SIZE (go/mail_mailpit/mailpit-v1.27.0/v1.27.0.mod) = 3048 +SHA256 (go/mail_mailpit/mailpit-v1.27.0/v1.27.0.zip) = 9ce7a97226e2c97b37d0461ed5458ceec5546cefd302261e647ed82cb01b55a6 +SIZE (go/mail_mailpit/mailpit-v1.27.0/v1.27.0.zip) = 600189 diff --git a/mail/mailpit/files/patch-package-lock.json b/mail/mailpit/files/patch-package-lock.json index 8764dc1c6243..35273845d876 100644 --- a/mail/mailpit/files/patch-package-lock.json +++ b/mail/mailpit/files/patch-package-lock.json @@ -17,9 +17,9 @@ } }, - "node_modules/@bufbuild/protobuf": { -- "version": "2.5.2", -- "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.5.2.tgz", -- "integrity": "sha512-foZ7qr0IsUBjzWIq+SuBLfdQCpJ1j8cTuNNT4owngTHoN5KsJb8L9t65fzz7SCeSWzescoOil/0ldqiL041ABg==", +- "version": "2.6.0", +- "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.6.0.tgz", +- "integrity": "sha512-6cuonJVNOIL7lTj5zgo/Rc2bKAo4/GvN+rKCrUj7GdEHRzCk8zKOfFwUsL9nAVk5rSIsRmlgcpLzTRysopEeeg==", - "dev": true, - "license": "(Apache-2.0 AND BSD-3-Clause)", - "peer": true @@ -999,8 +999,8 @@ - } - }, "node_modules/typescript-eslint": { - "version": "8.34.1", - "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.34.1.tgz", + "version": "8.35.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.35.0.tgz", @@ -7401,14 +6528,6 @@ "dev": true, "license": "MIT" @@ -1023,9 +1023,9 @@ - } - }, - "node_modules/vue-eslint-parser": { -- "version": "10.1.3", -- "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-10.1.3.tgz", -- "integrity": "sha512-dbCBnd2e02dYWsXoqX5yKUZlOt+ExIpq7hmHKPb5ZqKcjf++Eo0hMseFTZMLKThrUk61m+Uv6A2YSBve6ZvuDQ==", +- "version": "10.1.4", +- "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-10.1.4.tgz", +- "integrity": "sha512-EIZvCukIEMHEb3mxOKemtvWR1fcUAdWWAgkfyjmRHzvyhrZvBvH9oz69+thDIWhGiIQjZnPkCn8yHqvjM+a9eg==", - "dev": true, - "license": "MIT", - "peer": true, diff --git a/mail/nextcloud-mail/Makefile b/mail/nextcloud-mail/Makefile index b49c29619554..5f94429fffab 100644 --- a/mail/nextcloud-mail/Makefile +++ b/mail/nextcloud-mail/Makefile @@ -1,5 +1,5 @@ PORTNAME= mail -PORTVERSION= 5.1.5 +PORTVERSION= 5.1.6 DISTVERSIONPREFIX= v CATEGORIES= mail diff --git a/mail/nextcloud-mail/distinfo b/mail/nextcloud-mail/distinfo index f3806066f6f7..4f1cd4830dc2 100644 --- a/mail/nextcloud-mail/distinfo +++ b/mail/nextcloud-mail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750971738 -SHA256 (nextcloud/mail-v5.1.5.tar.gz) = 5a7853715976bcff260ea5d30f84c92251a48a085e73dee4501530cec0684ca2 -SIZE (nextcloud/mail-v5.1.5.tar.gz) = 26681365 +TIMESTAMP = 1751485087 +SHA256 (nextcloud/mail-v5.1.6.tar.gz) = 7d01b83cffc07f283afe95dab14550c87f975c4df7af0ec5d4b2786832e248ec +SIZE (nextcloud/mail-v5.1.6.tar.gz) = 26251064 diff --git a/mail/p5-Sisimai/Makefile b/mail/p5-Sisimai/Makefile index 265ea5abd399..3362b91e0ab0 100644 --- a/mail/p5-Sisimai/Makefile +++ b/mail/p5-Sisimai/Makefile @@ -1,6 +1,6 @@ PORTNAME= Sisimai -PORTVERSION= 5.3.0 DISTVERSIONPREFIX= v +DISTVERSION= 5.4.0 CATEGORIES= mail perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:AKXLIX diff --git a/mail/p5-Sisimai/distinfo b/mail/p5-Sisimai/distinfo index 0307a55da89a..c4aef849d3cb 100644 --- a/mail/p5-Sisimai/distinfo +++ b/mail/p5-Sisimai/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1744289412 -SHA256 (Sisimai-v5.3.0.tar.gz) = 6811dc238fb150f1c01b064836b16afd90995a77628ba593a27efddb156c6d12 -SIZE (Sisimai-v5.3.0.tar.gz) = 1095663 +TIMESTAMP = 1751470827 +SHA256 (Sisimai-v5.4.0.tar.gz) = 5c3eb54486b008e2108f74dfbf8a517cc8abd2fe5f989cea5dd9d7292c9b90cd +SIZE (Sisimai-v5.4.0.tar.gz) = 1096579 diff --git a/mail/pizauth/Makefile b/mail/pizauth/Makefile index 848906f11f8b..151c73e80e40 100644 --- a/mail/pizauth/Makefile +++ b/mail/pizauth/Makefile @@ -1,5 +1,6 @@ PORTNAME= pizauth DISTVERSION= 1.0.7 +PORTREVISION= 1 CATEGORIES= mail MAINTAINER= nivit@FreeBSD.org diff --git a/mail/thunderbird-esr/Makefile b/mail/thunderbird-esr/Makefile index 666874977709..e77e270c65ce 100644 --- a/mail/thunderbird-esr/Makefile +++ b/mail/thunderbird-esr/Makefile @@ -1,5 +1,6 @@ PORTNAME= thunderbird DISTVERSION= 128.12.0 +PORTREVISION= 1 CATEGORIES= mail news net-im wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build1/source diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index 96a7d8074294..5c444eb125ad 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -1,9 +1,9 @@ PORTNAME= thunderbird DISTVERSION= 140.0 -PORTREVISION= 1 +PORTREVISION= 3 CATEGORIES= mail news net-im wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}${DISTVERSIONSUFFIX}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}${DISTVERSIONSUFFIX}-candidates/build1/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}${DISTVERSIONSUFFIX}-candidates/build2/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org diff --git a/mail/thunderbird/distinfo b/mail/thunderbird/distinfo index f30f58ad77a5..9fb311041439 100644 --- a/mail/thunderbird/distinfo +++ b/mail/thunderbird/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750334571 -SHA256 (thunderbird-140.0.source.tar.xz) = 782d1b6403889ae58e745fa411478a112e5a73d84d7c56a75c29d1a9da374a22 -SIZE (thunderbird-140.0.source.tar.xz) = 748958084 +TIMESTAMP = 1751475445 +SHA256 (thunderbird-140.0.source.tar.xz) = 367d6e5e8c2190871f72bcd137bf03911a749b0530bbc182a18ad03389c9386e +SIZE (thunderbird-140.0.source.tar.xz) = 755175976 diff --git a/mail/thunderbird/files/patch-bug1973073 b/mail/thunderbird/files/patch-bug1973073 deleted file mode 100644 index af0d682e8d03..000000000000 --- a/mail/thunderbird/files/patch-bug1973073 +++ /dev/null @@ -1,23 +0,0 @@ - -# HG changeset patch -# User Daniel Darnell <daniel@thunderbird.net> -# Date 1750358329 25200 -# Node ID 68f59e2fec41c8c2e6b89de9a119a862a8358add -# Parent 275763c890c435d54bfc540dbd26bed5e170cd4a -Bug 1973073 - Temporarily hard-code MOZ_OFFICIAL_BRANDING_DIRECTORY into confvars.sh (for comm-release). rs=bustage-fix a=dandarnell - -diff --git comm/mail/confvars.sh comm/mail/confvars.sh ---- comm/mail/confvars.sh -+++ comm/mail/confvars.sh -@@ -1,9 +1,9 @@ - #! /bin/sh - # This Source Code Form is subject to the terms of the Mozilla Public - # License, v. 2.0. If a copy of the MPL was not distributed with this - # file, You can obtain one at http://mozilla.org/MPL/2.0/. - - MOZ_BRANDING_DIRECTORY=comm/mail/branding/nightly - - # This is a temporary hard-coded measure to accomodate MSIX repackaging --MOZ_OFFICIAL_BRANDING_DIRECTORY=comm/mail/branding/tb_beta -+MOZ_OFFICIAL_BRANDING_DIRECTORY=comm/mail/branding/thunderbird - |