From unknown Thu Jun 19 16:24:29 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#59648 <59648@debbugs.gnu.org> To: bug#59648 <59648@debbugs.gnu.org> Subject: Status: [PATCH] gnu: icedove: Use native notifications when available Reply-To: bug#59648 <59648@debbugs.gnu.org> Date: Thu, 19 Jun 2025 23:24:29 +0000 retitle 59648 [PATCH] gnu: icedove: Use native notifications when available reassign 59648 guix-patches submitter 59648 SeerLite severity 59648 normal tag 59648 patch moreinfo thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 27 23:54:45 2022 Received: (at submit) by debbugs.gnu.org; 28 Nov 2022 04:54:45 +0000 Received: from localhost ([127.0.0.1]:46110 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ozWAH-00071h-DT for submit@debbugs.gnu.org; Sun, 27 Nov 2022 23:54:45 -0500 Received: from lists.gnu.org ([209.51.188.17]:35566) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ozWAF-00071b-HZ for submit@debbugs.gnu.org; Sun, 27 Nov 2022 23:54:43 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ozWAF-0007e1-8b for guix-patches@gnu.org; Sun, 27 Nov 2022 23:54:43 -0500 Received: from mx.nixnet.email ([5.161.67.119]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ozWAD-00087B-HZ for guix-patches@gnu.org; Sun, 27 Nov 2022 23:54:43 -0500 Received: from [127.0.0.1] (localhost [127.0.0.1]) by mx.nixnet.email (Postfix) with ESMTPSA id DCDC17D3A0; Mon, 28 Nov 2022 05:54:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nixnet.email; s=202002021149; t=1669611259; 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=HOph3B7nUdf7CftsXCsWH38TG0QJPcIYqBB74fX7lGk=; b=g1u8Gsc1X0nrVw+y/kKKA7vIJRtybWO3aTUymuepKZoXCutTQVLunzXP8cBrdVLkyi9psk HIfER6L5GSE5OWfbxe+VvKAu/7Rbb3O7INdvWMC1Cq90C7+GiTsnzVUoPqFGpzDwfxYHh2 3Bdw2/qofckXwMDrm23UZPi7VvtuhCM= From: SeerLite To: guix-patches@gnu.org Subject: [PATCH] gnu: icedove: Use native notifications when available Date: Mon, 28 Nov 2022 01:54:09 -0300 Message-Id: <7cc35b95103dd43472eb68b810971060e35aa42b.1669611249.git.seerlite@nixnet.email> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=5.161.67.119; envelope-from=seerlite@nixnet.email; helo=mx.nixnet.email X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: SeerLite X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/gnuzilla.scm (icedove)[phases]{wrap-program}: Add libnotify to LD_LIBRARY_PATH. --- gnu/packages/gnuzilla.scm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index feb80d81a2..6a8ee41a1e 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -1189,6 +1189,7 @@ (define (runpaths-of-input label) "eudev" "pulseaudio" ;; For the integration of native notifications + ;; (same reason as icedove) "libnotify")))) (wrap-program (car (find-files lib "^icecat$")) `("XDG_DATA_DIRS" prefix (,gtk-share)) @@ -1496,10 +1497,13 @@ (define-public icedove (pulseaudio #$(this-package-input "pulseaudio")) (pulseaudio-lib (string-append pulseaudio "/lib")) (eudev #$(this-package-input "eudev")) - (eudev-lib (string-append eudev "/lib"))) + (eudev-lib (string-append eudev "/lib")) + ;; For the integration of native notifications (same reason as icecat) + (libnotify #$(this-package-input "libnotify")) + (libnotify-lib (string-append libnotify "/lib"))) (wrap-program (car (find-files lib "^icedove$")) `("XDG_DATA_DIRS" prefix (,gtk-share)) - `("LD_LIBRARY_PATH" prefix (,pulseaudio-lib ,eudev-lib))))))))) + `("LD_LIBRARY_PATH" prefix (,pulseaudio-lib ,eudev-lib ,libnotify-lib))))))))) (inputs (list alsa-lib bzip2 @@ -1519,6 +1523,7 @@ (define-public icedove libffi libgnome libjpeg-turbo + libnotify libpng-apng libvpx libxcomposite -- 2.38.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 05 11:17:35 2022 Received: (at 59648) by debbugs.gnu.org; 5 Dec 2022 16:17:35 +0000 Received: from localhost ([127.0.0.1]:36982 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p2E9u-0004vW-RK for submit@debbugs.gnu.org; Mon, 05 Dec 2022 11:17:35 -0500 Received: from eggs.gnu.org ([209.51.188.92]:46564) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p2E9s-0004vP-LS for 59648@debbugs.gnu.org; Mon, 05 Dec 2022 11:17:33 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p2E9m-0002Nj-I3; Mon, 05 Dec 2022 11:17:26 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=OTOjJQQtNqZt3Uybt7tYLIN/lNh2EC0Xft+XoqVC/2I=; b=H1G6wDoWr/YsdmJrMXRp AC/oveZ1H2HOp/5waRYFOyOIJcokWfyftu9lFVJSCnd9a6Ij7UgSak9HdqcbYK/aermzGmro7vTZ0 zRUnanVemo0C5LzLz2ovV2PYRUBvMkNvjxzXrxA2tG7xwukM4Y3fu56VP8vAJZ2e5BaPcA1nauY+Q rjXqLRb9XzMKYdgClfMNrz+AHpxfDG7RTkcANBR5I6NaVwNxFY2+ztAOifs4gJ6sKPJ5/nJxsQ+K/ wapP48zFJNGHUidSe7P0h4ECv1Nyul6SeA7wJkUyzQOErRBW+JU1khnax+GVFcRgktAD45aRsfOf8 RTsYhnvtUFimqg==; Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p2E9m-0003Xd-4o; Mon, 05 Dec 2022 11:17:26 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: SeerLite Subject: Re: bug#59648: [PATCH] gnu: icedove: Use native notifications when available References: <7cc35b95103dd43472eb68b810971060e35aa42b.1669611249.git.seerlite@nixnet.email> Date: Mon, 05 Dec 2022 17:17:24 +0100 In-Reply-To: <7cc35b95103dd43472eb68b810971060e35aa42b.1669611249.git.seerlite@nixnet.email> (seerlite@nixnet.email's message of "Mon, 28 Nov 2022 01:54:09 -0300") Message-ID: <877cz5q0yz.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 59648 Cc: Jonathan Brielmaier , 59648@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, SeerLite skribis: > * gnu/packages/gnuzilla.scm (icedove)[phases]{wrap-program}: Add libnotify > to LD_LIBRARY_PATH. Jonathan: this one=E2=80=99s for you. :-) Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Thu Dec 08 10:09:49 2022 Received: (at 59648) by debbugs.gnu.org; 8 Dec 2022 15:09:49 +0000 Received: from localhost ([127.0.0.1]:57325 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p3IWz-0003wF-GB for submit@debbugs.gnu.org; Thu, 08 Dec 2022 10:09:49 -0500 Received: from mout.web.de ([212.227.17.12]:37903) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p3IWx-0003w9-Ek for 59648@debbugs.gnu.org; Thu, 08 Dec 2022 10:09:47 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=web.de; s=s29768273; t=1670512179; bh=uolTUlhroqEsOWzKB66YPM7/2Xy6RdDA3rUfu5U37iM=; h=X-UI-Sender-Class:Date:To:Subject:From; b=MQ1esw6z0dduydV0oFHP9N1jnqPpSW9NlyW3e9FSJhsL1QXxGDWgJ8hi347vGsD9D cWccZ2fnd4ZjVRK4OIWeMoxwcW3Ww6VRzM/ck9WClptgoUfzwm73C9+Q458iLO8+0U PyYLbomynmrYiUsgU+wgS1UY/vOpSk39juOsuciDP1ths4fz+7x+5BNN8sKiJMwWfM PAVscbaHLHogrXXxaaGulEY1PBUlrQaTfK0NUEkyS2HCUY+OjThuxTmA/h04E0EnFh pq5cJXdT/9yptF215XyiPAblheT6rnP4WESkAjWE6KQi8MNMP22lFV3ALeJRjXryDd l3uYCiVXC06Tw== X-UI-Sender-Class: 814a7b36-bfc1-4dae-8640-3722d8ec6cd6 Received: from [192.168.178.23] ([77.185.96.181]) by smtp.web.de (mrweb106 [213.165.67.124]) with ESMTPSA (Nemesis) id 1MUl9H-1pTJr81ALh-00QXWk for <59648@debbugs.gnu.org>; Thu, 08 Dec 2022 16:09:39 +0100 Message-ID: <3d3b50d6-e258-8d39-f2fd-b06a9523a759@web.de> Date: Thu, 8 Dec 2022 16:09:36 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.5.0 To: 59648@debbugs.gnu.org Subject: [PATCH] gnu: icedove: Use native notifications when available Content-Language: de-DE, en-US From: Jonathan Brielmaier Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Provags-ID: V03:K1:LBWy7ojh410klC6SzBtroL8HAdwcsKMMJSuGDc/JQGm1mnqrQJP x5XKDGfRuaNO6ifAVq3De88I6yBfYnwtjJM0kRvS3W2DOyHFjKxHSmGSWYQ0/Rh7+udKw9q i2Tfey70R/ej7m63BYLGlbgd5oLPrDqeUVvK5nMDuHtDJK7MozzbGp7Uka7daK5puayodHe m+e0bNpBHu8uzBgXAUOEA== X-Spam-Flag: NO UI-OutboundReport: notjunk:1;M01:P0:Y3VdtnFj6R0=;LZZz9N/zvSl0I2IGfgx19ivmFOz B5vhPDpzrx6j6bY5cvDWKRuc4CreiEwKN0OcU3HzEoNZAhqD/HPE1MqdLii24BYREnecMN0Z4 JRebWGa5sNyiP9X/uckjt2vL+f7Gm8zHwTIpyGGPz2TZv6b4topIQX9h3NIuwScju/fUjGAUM GAhFDwHHiBdalqnw2CCPIZ/nHvu+3UwyaMZ84jhiRrcfZMvezz0RORPy1w62HQPSKSIGgIfLR P003UxNUxQXyTcGRtuWE1fBjU8D8/JtTL5yVBUbskFOXG69w1KrnrQNYGmxYlwqX1BfKKxqj4 GbOK3y/kw4/wTBkKDI5LSbn1922Z46WJ8WzKBex56/BRarYocRVCMmw5vxfPcQCUKDT5N9J06 2uPaYZom0V1whkcAy0CKbmF2BUBlkFSzjh3qWuu2acnI1aEcwpgQ+pXiLRDMhJk5ur5nInLlo xsfBIX5YIBnXs0oXhVFln6QzG/0EdE3Mxda2sKRacIvHoyVWFXPY9Q2mngB8GIixvl1CDDfG5 yHQcCOTxGwNdqRj8k5B+eJg+7ew6Mw//7eeLjjLDkKhWGlfKfdUWypdCuVur/hqQ06bE/2JWm 7RJpIJyGtU0IgKO1BkMFLeShMcHj693r7zZgc4JcSuUkFXmmX/HqSVQxsVJU7w+2iYHSdGJyp HFFZc3loTE3YAWGQvxrxuy7qS5by5akCtgURV7niqhtn6qVs3ipa5iDeuwWDSiF60PsTjuTTT +6BO1d3Z6knnNdl6zBu8ttuYOrFMwIqEKXpg+iLjeW/yr/MAYqe9uDS/uTnMHwCxa6mPEDdiB s3dkg5mNC7Rf9bvOSAs3sq4LY7UGjEIydfPGTKNJ84kM80oWq/0jS+erpJFdwYHay7waXAJ+s 71OE3roV5r2n3Gv5DrQhLTnIQLUCFlsY9T9KEqFfDOfld1x5B0EnZPX9AdDSuoyhaZrq0zQIY VW2I2w== X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 59648 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hello SeerNet, hm, when I enable notifications in Thunderbird I get notifications from my sway desktop: I just enabled it via Settings -> General -> Incoming Messages -> When new messages arrive -> [x] Show an alert. This is without your patch applied... ~Jonathan From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 13 08:23:41 2022 Received: (at control) by debbugs.gnu.org; 13 Dec 2022 13:23:41 +0000 Received: from localhost ([127.0.0.1]:60351 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p55G1-0001Ff-Fj for submit@debbugs.gnu.org; Tue, 13 Dec 2022 08:23:41 -0500 Received: from mira.cbaines.net ([212.71.252.8]:42048) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p55G0-0001FZ-AM for control@debbugs.gnu.org; Tue, 13 Dec 2022 08:23:40 -0500 Received: from localhost (unknown [IPv6:2a02:8010:68c1:0:54d1:d5d4:280e:f699]) by mira.cbaines.net (Postfix) with ESMTPSA id 1F41A27BBE9 for ; Tue, 13 Dec 2022 13:23:39 +0000 (GMT) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 32f007b3 for ; Tue, 13 Dec 2022 13:23:37 +0000 (UTC) From: Christopher Baines To: control@debbugs.gnu.org Subject: tag 59648 moreinfo Date: Tue, 13 Dec 2022 13:23:37 +0000 Message-ID: <87bko7tp2e.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 59648 + moreinfo quit From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 19 04:31:46 2023 Received: (at 59648) by debbugs.gnu.org; 19 Feb 2023 09:31:46 +0000 Received: from localhost ([127.0.0.1]:45681 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pTg2r-0005qA-SY for submit@debbugs.gnu.org; Sun, 19 Feb 2023 04:31:46 -0500 Received: from knopi.disroot.org ([178.21.23.139]:46462) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pTYgE-0001Et-Hc for 59648@debbugs.gnu.org; Sat, 18 Feb 2023 20:39:55 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id E7037414BD; Sun, 19 Feb 2023 02:39:52 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QA7ebPrxX7iV; Sun, 19 Feb 2023 02:39:51 +0100 (CET) MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1676770791; bh=fvp7sRoHoJSxU3CQOXawNfEF2ISKqNuSF/oXaA+UKcg=; h=Date:From:To:Subject; b=PZ5V2++4V91euddLiJL3juyWwkuKhn8EZKWW+I/qKKTjSt2IeD+QvZIwEBhNVsYDM sVimCS1QgDAw42DAQh+Rl79O8qrEWNKSFiju2n6P1P6WlxEcK/Iuwp45kNutx/Kd3t jyuUZtVmeEMhG2iSgjLgYaWkZeNgC9b3vtrg6VOUPtYATElu0gfTQ3UpWUaunhTmWR lC1JI3SFAwTQwI8uALXuZwmN7OoP4UpzuWcXpKRyYfhTTWMTrVjv3s9j2rVASDlVqV zkzbuXdDJu8ymn1yFmONl82O1tRqEN8X1rCglUcRAyF34C1/WD9ChNYEhSUxHRAlDn TNrZ3KyCHB2iQ== Date: Sun, 19 Feb 2023 01:39:51 +0000 From: SeerLite To: 59648@debbugs.gnu.org, jonathan.brielmaier@web.de Subject: [PATCH] gnu: icedove: Use native notifications when available Message-ID: <3fe596c61765c15b1914bd2d2ddc26e5@disroot.org> X-Sender: seerlite@disroot.org Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 59648 X-Mailman-Approved-At: Sun, 19 Feb 2023 04:31:44 -0500 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi! Sorry, I didn't receive this response when it was sent, and it wasn't in my inbox. > Hello SeerNet, It's SeerLite :s > hm, when I enable notifications in Thunderbird I get notifications from > my sway desktop: > I just enabled it via Settings -> General -> Incoming Messages -> When > new messages arrive -> [x] Show an alert. > > This is without your patch applied... Yes, that's the same for me as well. The issue is not that there aren't notifications, but that IceDove chooses to use its own fallback implementation of them rather than using the program configured to send them (in my case it's dunst). Without my patch I get large notifications inconsistent with my setup. With my patch I get my custom configured dunst notifications. I'm pretty sure Icecat would use the same fallback notification implementation if it didn't have libnotify. That's how I found out about this issue back when I made the patch after all, but I can't remember the details anymore. All I can say is Icedove uses the right notifications on my machine with the patch applied. I hope that explains the difference and maybe you're able to reproduce the issue. PS: I was actually actively waiting for a response since I sent the patch (same as my other patch). Unfortunately I didn't check mumi earlier. I've also changed my E-mail provider as the server I was previously using was having a hard time getting to Debbugs. From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 12 04:34:14 2023 Received: (at 59648-done) by debbugs.gnu.org; 12 Apr 2023 08:34:14 +0000 Received: from localhost ([127.0.0.1]:38993 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pmVvi-0003eL-Cl for submit@debbugs.gnu.org; Wed, 12 Apr 2023 04:34:14 -0400 Received: from mout.web.de ([212.227.15.4]:41959) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pmVvf-0003e3-8l for 59648-done@debbugs.gnu.org; Wed, 12 Apr 2023 04:34:13 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=web.de; s=s29768273; t=1681288445; i=jonathan.brielmaier@web.de; bh=eiJEEVupw826SIVryi9vCdMeJkwidZcsqUTtcpifSWM=; h=X-UI-Sender-Class:Date:To:Subject:From; b=IFrDbKPwzlRGvlfHQZ4OaWMkekGXtTZJoxHFbKNw+5VYxeDAj5tj2Vp3NQwHgqqzl CJkRM4zhtpuWzNYVSbw2f6/J+aPiqanw92yllFMpkot7opVmMS2qo5iNQQwZi55+3f 6/A+iMOtaMNw9bma3j5CwgXnt/LwrOVugr6uGLce12+fYXRTPlKzSI4axJQdtoDEN+ 8S2MVBbaCdnjkEMQenIII9l5zzEsuE28X5jC9iYNAM1yVgTpOhYMFQ6fD5Jey8qWjQ V6/8XRfiSaOvFN5HgL4QvW15Sl44Uo8ryx3o8GWdt6wUgF40uuSGPtUSMyjPSPOwvP C2e+QLGiEBsrQ== X-UI-Sender-Class: 814a7b36-bfc1-4dae-8640-3722d8ec6cd6 Received: from [192.168.178.23] ([77.185.43.92]) by smtp.web.de (mrweb005 [213.165.67.108]) with ESMTPSA (Nemesis) id 1McIga-1qMw4X1RHA-00cjG6 for <59648-done@debbugs.gnu.org>; Wed, 12 Apr 2023 10:34:05 +0200 Message-ID: <677bc72b-04c8-bdf9-a16e-574767a3df8a@web.de> Date: Wed, 12 Apr 2023 10:34:05 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.10.0 To: 59648-done@debbugs.gnu.org Subject: [PATCH] gnu: icedove: Use native notifications when available Content-Language: de-DE From: Jonathan Brielmaier Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K1:mOA1QYDGKmwxd+aGRezu/bzc3RYvny0AFPFIFHNCFpQx2qwdgO3 tbnaGqtqltxq8pJZf7yce4biRk8cuSmclLUfJCyDa55z+V85bzI+5aEkesb3J9NwZj93FId qt5spdJYt69FNdQ8D3/DpcaYTtw/07EnW4yjUpC4fJU4Kkn8DQXuPDnUGh8y4jGpiY3lOf/ 6KQNhDf72f4yh71BpIL6A== X-Spam-Flag: NO UI-OutboundReport: notjunk:1;M01:P0:MdH/G5KOkiU=;TB7H4f62itYuRUgjd184UZL/SiU Yt5ZQfrWj1g/5wUs+0B/ofDjpflzf3CSG1rqI7W3amndcD02hn+Jn4IdtyT93kZQWg6lSxFro tgRYZ/OId4/T4fnQSD2TknyZDBVyvywKet2xVCLk+mJM3Y3fPewr7eugekI2Lg/DHhGN6vIkh FjEBRFd/g1tZAvaWycaiIq8fKCpw3vBN8Pwe0JHovsVO0Z/shfyKs2u9UC3UEbQ+F0E6oaw/m yxGoA546anraHrAIYnh0q3to6cCEdTpWq2OJBXEdgRnvqmAs3lUcLZhP02mqgXdLBLa2ueCi3 Sbb34r64vospoOK0ZM7+/06uhjLgkdG0VGBpNBli2oHFBV2KMpUo0rHumer1luouKmH26sFbJ HtZrc+IILHiV5k12vXUQswab2h5NgSco0GUMPINtV3jl88jhxqOW4UcnaW24V9Lp5W3F1vavt 06XJQ748NROExeyKbeA3NmTVZuhpVIzDlSYty3zW29Ab//MOLKfWCMYM28F7NYF2jOUjg968W MBIPtxEBb2RPGlrgD6LoBOxwXldLoZGzwuuq8X3yXpclhOWnNeFpuDHFw2BHjMQaifdJxd4wl 5i/O8/I/1Ewpuu2FDqiAtU2ills4whK6Zn/ra2uZwor5V5L3QQtCqV04Ko4wk1JHOfMrkQJ1H hP+l39u1ARicHbt57pLcuD/IGRG1GxkHZRAiQl/gEISaxkgpqIEPdY3+qrPUY8WFRntGMyasy EgujrgNuITAAs+ULBpgxpnvwofZXq3S0TuP6elcLP/3qginiCA5yyUjAz8N4taW/kaMRJYj9g 1Ar/TpsI/9tk4LguPweh0nryeacsa8JNRleMYgS35gFsUvFeLm6c/Gyb5dwsdAoAEVhSJKuk1 k9wngnMojj9xJZoir7qx/yGwoJWDSfmpF/LqyXB8uZzpJH9zjyc2vq7Ex6+xvvUjFkAgsiDfW JSes7g== X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 59648-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hello SeerLite, rebased and pushed as a3239ffd84e6ee9d9494085ddc3b875ebf43e225. ~Jonathan From unknown Thu Jun 19 16:24:29 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 10 May 2023 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator