Version in base suite: 1.4.39+dfsg-1 Base version: remmina_1.4.39+dfsg-1 Target version: remmina_1.4.39+dfsg-1+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/r/remmina/remmina_1.4.39+dfsg-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/r/remmina/remmina_1.4.39+dfsg-1+deb13u1.dsc changelog | 7 ++++++ patches/do-not-phone-home.patch | 42 ++++++++++++++++++++++++++++++++++++++++ patches/series | 1 3 files changed, 50 insertions(+) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmpi12nceaf/remmina_1.4.39+dfsg-1.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmpi12nceaf/remmina_1.4.39+dfsg-1+deb13u1.dsc: no acceptable signature found diff -Nru remmina-1.4.39+dfsg/debian/changelog remmina-1.4.39+dfsg/debian/changelog --- remmina-1.4.39+dfsg/debian/changelog 2025-01-06 09:33:54.000000000 +0000 +++ remmina-1.4.39+dfsg/debian/changelog 2026-05-03 12:47:21.000000000 +0000 @@ -1,3 +1,10 @@ +remmina (1.4.39+dfsg-1+deb13u1) trixie; urgency=medium + + * Team upload. + * Add patch to prevent remmina from phoning home (Closes: #1109981, #1123632). + + -- Sven Geuer Sun, 03 May 2026 14:47:21 +0200 + remmina (1.4.39+dfsg-1) unstable; urgency=medium * New upstream release diff -Nru remmina-1.4.39+dfsg/debian/patches/do-not-phone-home.patch remmina-1.4.39+dfsg/debian/patches/do-not-phone-home.patch --- remmina-1.4.39+dfsg/debian/patches/do-not-phone-home.patch 1970-01-01 00:00:00.000000000 +0000 +++ remmina-1.4.39+dfsg/debian/patches/do-not-phone-home.patch 2026-05-03 12:47:21.000000000 +0000 @@ -0,0 +1,42 @@ +Description: Comment out HTTPS requests causing phoning home +Author: Sven Geuer +Bug: https://gitlab.com/Remmina/Remmina/-/issues/3130 +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1109981 +Last-Update: 2025-10-31 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/src/remmina_info.c ++++ b/src/remmina_info.c +@@ -1259,7 +1259,9 @@ + enc_s = json_generator_to_data(g, NULL); + g_object_unref(g); + ++ /* Do not phone home. + remmina_curl_compose_message(enc_s, "POST", PERIODIC_UPLOAD_URL, NULL); ++ */ + + json_node_unref(n); + +@@ -1327,7 +1329,9 @@ + json_generator_set_root(g, n2); + enc_s = json_generator_to_data(g, NULL); + g_object_unref(g); ++ /* Do not phone home. + remmina_curl_compose_message(enc_s, "POST", INFO_REQUEST_URL, NULL); ++ */ + if(n != NULL){ + json_node_unref(n); + } +--- a/src/remmina_plugin_manager.c ++++ b/src/remmina_plugin_manager.c +@@ -1301,7 +1301,10 @@ + g_object_unref(g); + json_node_free(n); + } ++ /* Do not phone home and query upstream regarding plugins, ++ * in Debian plugins come in dedicated packages anyway. + remmina_curl_compose_message(formdata, "POST", LIST_URL, NULL); ++ */ + return NULL; + } + diff -Nru remmina-1.4.39+dfsg/debian/patches/series remmina-1.4.39+dfsg/debian/patches/series --- remmina-1.4.39+dfsg/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ remmina-1.4.39+dfsg/debian/patches/series 2026-05-03 12:47:21.000000000 +0000 @@ -0,0 +1 @@ +do-not-phone-home.patch