From ea134d577768943ceff7929e049185b0c63931d8 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Thu, 9 Jan 2025 19:18:10 -0800 Subject: [PATCH] email: Recommend Thunderbird Mobile instead of K-9 Mail - Thunderbird Mobile has been built on K-9 mail and is the future of the app[1]. Links: 1) https://blog.thunderbird.net/2022/06/revealed-thunderbird-on-android-plans-k9/ Tests: - Go to email app and expand the clients information. Verify the app store links for Thunderbird Mobile. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/email/manifest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plinth/modules/email/manifest.py b/plinth/modules/email/manifest.py index 8927516fb..0a8ef49d4 100644 --- a/plinth/modules/email/manifest.py +++ b/plinth/modules/email/manifest.py @@ -34,17 +34,17 @@ clients = [ }, { 'name': - _('K-9 Mail'), + _('Thunderbird Mobile'), 'platforms': [{ 'type': 'store', 'os': 'android', 'store_name': 'f-droid', - 'url': store_url('f-droid', 'com.fsck.k9') + 'url': store_url('f-droid', 'net.thunderbird.android') }, { 'type': 'store', 'os': 'android', 'store_name': 'google-play', - 'url': store_url('google-play', 'com.fsck.k9') + 'url': store_url('google-play', 'net.thunderbird.android') }] }, {