From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4bQ9V051Tzz34P0 for ; Sun, 22 Jun 2025 12:28:08 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R10" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4bQ9Tx1dtQz2yw7 for ; Sun, 22 Jun 2025 12:28:05 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4bQ9Tw256Fz1qC; Sun, 22 Jun 2025 12:28:04 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1750595284; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=QevIDyFam5c9OLhd09B7kIXvAVbCokOuQuaPRJNnL+8=; b=z8bchFdsWVdFkxMG3Zbwzyt8fH5+hHZA1kxPIIuE133VBGAXwaLqch6URzLlCNHn8dxMlk nBakOSGNckSsJ2DQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1750595284; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=QevIDyFam5c9OLhd09B7kIXvAVbCokOuQuaPRJNnL+8=; b=f+lgbh4bfCFfkSo3tCbnlgt8OmzEpg6UwAZbpRJywFu9f9OhLwC/qbkvHvx7dERiqXQqUQ JWZS348j3u60AsgbUKrLoMQlaU/Xae8SOTVW63TczsyjA1iXwGqWjMfZXu9iz1+IqZc1sp bL3dARTtnMsRWQLOEX8cYFxpIkVWkk7mk0NxdPQq123eH/uKEguFWhCU5vI2XO1H8bP19C wXorpF7o0TJCYI0P+YNmsGZ/yqRqXMNZh68SiJaSwO7Goj89dcz3UsEDCxOumhUmrWVPsv WGWz0ZTJoEBYgY2Ilti/H8FWsG5aDmNcc21+vfaxqHUvfjyZtvbQ/cpHnAe/wg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] fetchmail: Update to version 6.5.4 Date: Sun, 22 Jun 2025 14:27:58 +0200 Message-ID: <20250622122801.3375973-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit - Update from version 6.5.3 to 6.5.4 - Update of rootfile not required - Changelog 6.5.4 BUGFIXES: * socket: avoid crash when writing to a socket without SSL/TLS fails. Reported by Andrea Venturoli via mailing list, fixes #71. * wolfSSL support: avoid fetchmail.c compilation failure in certain configurations of wolfSSL (for instance, on FreeBSD's wolfssl-5.8.0_1 package), OpenSSL_version enables a newer 1.1.x compat API that passes its argument to a wolfSSL API, with OPENSSL_DIR and OPENSSL_ENGINES_DIR, causing related compiler failures. See . Signed-off-by: Adolf Belka --- lfs/fetchmail | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/fetchmail b/lfs/fetchmail index 744de7c1b..fcdd83664 100644 --- a/lfs/fetchmail +++ b/lfs/fetchmail @@ -26,7 +26,7 @@ include Config SUMMARY = Full-Featured POP and IMAP Mail Retrieval Daemon -VER = 6.5.3 +VER = 6.5.4 THISAPP = fetchmail-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = fetchmail -PAK_VER = 19 +PAK_VER = 20 DEPS = @@ -48,7 +48,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 8f8a3b44c8e06fa922579ee4c8c4c60bbfaefcd82c917c9a05ec627d3e59ba1dd319a8c45046eab78f3c5def3a102d5213099e6bf8dc87d774a16823de2ad7a4 +$(DL_FILE)_BLAKE2 = f443ff50244c78de82974612a615983e175d78288705ec95b982244d595185790dbecd43e10de0d917f677fe4a6c8df88d60bd96e7ef871067d91561e9a4f9c3 install : $(TARGET) -- 2.50.0