[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/17: gnu: isync: Add patch to improve openssl-3 compatibility.
From: |
guix-commits |
Subject: |
17/17: gnu: isync: Add patch to improve openssl-3 compatibility. |
Date: |
Wed, 24 May 2023 09:05:35 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 6d0571215d661d21cac2150ca45906e77a79a5fb
Author: Morgan Smith <Morgan.J.Smith@outlook.com>
AuthorDate: Thu Apr 27 17:14:47 2023 -0400
gnu: isync: Add patch to improve openssl-3 compatibility.
* gnu/packages/patches/isync-openssl3-fix.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/mail.scm (isync): Use patch.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/local.mk | 1 +
gnu/packages/mail.scm | 5 +-
gnu/packages/patches/isync-openssl3-fix.patch | 81 +++++++++++++++++++++++++++
3 files changed, 86 insertions(+), 1 deletion(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index 1ba60693e5..18e8235140 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1377,6 +1377,7 @@ dist_patch_DATA =
\
%D%/packages/patches/irrlicht-use-system-libs.patch \
%D%/packages/patches/irrlicht-link-against-needed-libs.patch \
%D%/packages/patches/isl-0.11.1-aarch64-support.patch \
+ %D%/packages/patches/isync-openssl3-fix.patch \
%D%/packages/patches/itk-snap-alt-glibc-compat.patch \
%D%/packages/patches/jami-disable-integration-tests.patch \
%D%/packages/patches/jami-libjami-headers-search.patch \
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index b6968d13de..02e0da2ec8 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -2233,7 +2233,10 @@ hashing scheme (such as scrypt) plug-in for
@code{Dovecot}.")
(uri (string-append "mirror://sourceforge/isync/isync/"
version "/isync-" version ".tar.gz"))
(sha256 (base32
- "1zq0wwvmqsl9y71546dr0aygzn9gjjfiw19hlcq87s929y4p6ckw"))))
+ "1zq0wwvmqsl9y71546dr0aygzn9gjjfiw19hlcq87s929y4p6ckw"))
+ (patches
+ ;; Likely to be included in next version
+ (search-patches "isync-openssl3-fix.patch"))))
(build-system gnu-build-system)
(native-inputs
(list perl))
diff --git a/gnu/packages/patches/isync-openssl3-fix.patch
b/gnu/packages/patches/isync-openssl3-fix.patch
new file mode 100644
index 0000000000..6a2363e972
--- /dev/null
+++ b/gnu/packages/patches/isync-openssl3-fix.patch
@@ -0,0 +1,81 @@
+Upstream status: Taken from master branch. Likely included in versions > 1.4.4
+
+Fixes issues with OpenSSL3. See related thread:
+https://sourceforge.net/p/isync/mailman/isync-devel/thread/Y2jnr8hESp1PUW+6@bulldog/
+
+From b6c36624f04cd388873785c0631df3f2f9ac4bf0 Mon Sep 17 00:00:00 2001
+From: Oswald Buddenhagen <ossi@users.sf.net>
+Date: Mon, 6 Jun 2022 11:55:37 +0200
+Subject: [PATCH] work around "unexpected EOF" error messages at end of SSL
+ connections
+
+gmail apparently doesn't send a close notification (SSL_shutdown())
+before closing the TCP socket.
+---
+ src/drv_imap.c | 7 +++++--
+ src/socket.c | 9 +++++++++
+ src/socket.h | 1 +
+ 3 files changed, 15 insertions(+), 2 deletions(-)
+
+diff --git a/src/drv_imap.c b/src/drv_imap.c
+index fb8d165..6286045 100644
+--- a/src/drv_imap.c
++++ b/src/drv_imap.c
+@@ -1620,6 +1620,7 @@ imap_socket_read( void *aux )
+ error( "IMAP error: unexpected BYE
response: %s\n", cmd );
+ /* We just wait for the server to close
the connection now. */
+ ctx->expectEOF = 1;
++ socket_expect_eof( &ctx->conn );
+ } else {
+ /* We still need to wait for the
LOGOUT's tagged OK. */
+ }
+@@ -1882,10 +1883,12 @@ static void
+ imap_cleanup_p2( imap_store_t *ctx,
+ imap_cmd_t *cmd ATTR_UNUSED, int response )
+ {
+- if (response == RESP_NO)
++ if (response == RESP_NO) {
+ imap_cancel_store( &ctx->gen );
+- else if (response == RESP_OK)
++ } else if (response == RESP_OK) {
+ ctx->expectEOF = 1;
++ socket_expect_eof( &ctx->conn );
++ }
+ }
+
+ /******************* imap_open_store *******************/
+diff --git a/src/socket.c b/src/socket.c
+index ac3c847..892cece 100644
+--- a/src/socket.c
++++ b/src/socket.c
+@@ -810,6 +810,15 @@ socket_expect_activity( conn_t *conn, int expect )
+ conf_wakeup( &conn->fd_timeout, expect ? conn->conf->timeout :
-1 );
+ }
+
++void
++socket_expect_eof( conn_t *sock )
++{
++#ifdef SSL_OP_IGNORE_UNEXPECTED_EOF // implies HAVE_LIBSSL
++ if (sock->ssl)
++ SSL_set_options( sock->ssl, SSL_OP_IGNORE_UNEXPECTED_EOF );
++#endif
++}
++
+ int
+ socket_read( conn_t *conn, char *buf, uint len )
+ {
+diff --git a/src/socket.h b/src/socket.h
+index 5b1edd0..af679aa 100644
+--- a/src/socket.h
++++ b/src/socket.h
+@@ -142,6 +142,7 @@ void socket_start_tls(conn_t *conn, void (*cb)( int ok,
void *aux ) );
+ void socket_start_deflate( conn_t *conn );
+ void socket_close( conn_t *sock );
+ void socket_expect_activity( conn_t *sock, int expect );
++void socket_expect_eof( conn_t *sock );
+ int socket_read( conn_t *sock, char *buf, uint len ); /* never waits */
+ char *socket_read_line( conn_t *sock ); /* don't free return value; never
waits */
+ typedef enum { KeepOwn = 0, GiveOwn } ownership_t;
+--
+2.39.2
+
- branch master updated (514644c102 -> 6d0571215d), guix-commits, 2023/05/24
- 02/17: services: guix: Depend on 'avahi-daemon' when 'discover?' is set., guix-commits, 2023/05/24
- 11/17: gnu: guile-ini: Update to 0.5.3., guix-commits, 2023/05/24
- 16/17: gnu: guile-png: Update to 0.4.1., guix-commits, 2023/05/24
- 03/17: gnu: graphviz: Add "minimal" variant., guix-commits, 2023/05/24
- 06/17: doc: contributing.texi: Specify recipient via equal sign in 'git send-email --to'., guix-commits, 2023/05/24
- 17/17: gnu: isync: Add patch to improve openssl-3 compatibility.,
guix-commits <=
- 15/17: gnu: guile-png: Fix cross-building., guix-commits, 2023/05/24
- 04/17: self: Build against "graphviz-minimal"., guix-commits, 2023/05/24
- 07/17: doc: guix.texi: Add Texinfo line breaks., guix-commits, 2023/05/24
- 08/17: gnu: fakeroot: Update to 1.31., guix-commits, 2023/05/24
- 10/17: gnu: guile-smc: Fix cross-building., guix-commits, 2023/05/24
- 05/17: gnu: guix: Depend on 'graphviz-minimal'., guix-commits, 2023/05/24
- 01/17: gnu: python-mpi4py: Update to 3.1.4., guix-commits, 2023/05/24
- 12/17: gnu: guile-ini: Fix cross-building., guix-commits, 2023/05/24
- 09/17: gnu: guile-smc: Update to 0.6.0., guix-commits, 2023/05/24
- 14/17: gnu: guile-png: Update to 0.4.0., guix-commits, 2023/05/24