Thunderbird

github.com

#Features * Thunderbird for Android branding is now available * Material 3 Navigation drawer * Updated color scheme * Allow migrating settings directly from an existing K-9 or Thunderbird for Android install * Make use of Glean SDK * Add basic feature setup for funding via Google Play subscriptions (we'll use this for financial contributions) * Use [...] for outer subject when encrypting the subject * Remove "Move/copy destination folders" setting * Remove "Folders to search" setting * Remove folder push class to simplify folder notifications

57
15
blog.thunderbird.net

cross-posted from: https://lazysoci.al/post/17053401 > cross-posted from: https://lemmy.world/post/19211135 > > > cross-posted from: https://fedia.io/m/Thunderbird/t/1140808 > > > > > Plan Less, Do More: Introducing Appointment By Thunderbird - The Thunderbird Blog > > > > > > Thunderbird has a new project under its wing: Appointment. Learn all about our approach to appointment scheduling, and try it yourself.

19
3

As title says. about 1/5 times, the message (e-mail) is just gone. Nowhere to be found. Not in Deleted folder. Only way I can access this e-mail is logging into hotmail.com (because I have a hotmail account), **then I find it in the junk folder.** So it's not gone from the server, just gone in Thunderbird. Restarting Thunderbird has no effect. Has anyone the same experience? Should I submit this as a bug?

8
4

@thunderbird@mastodon.online How to easily send a calendar appointment with Thunderbird? #Thunderbird #calendar #outlook #gmail Integrated suites like Outlook or GMail seem to do this easily. I dont see a reason why TB couldnt do this easily too, but I didnt find an option. I get tons of mails from Outlook users containing a small .ics file with a single appointment. This is often automated, often with Videocalls. Thunderbird has a calendar. The auto-detection of these appointments works well, but I could not find how to SEND one. What I tried: - Attach... - Insert... - on Calendar, right click on an appointment Neither of these ways allowed me to attach a small .ics file, even though I think I can save an appointment as a .ics file.

5
3
github.com

Thunderbird is great, but very complex and possibly insecure and not private. Threat model is an important key word here. Imagine you would write Mails over Tor/Tails only and need a secure Mail client. (Btw I can recommend Carburetor Flatpak for that). Because of this, the thunderbird hardening user.js, similar to the Arkenfox project exists. But it is a bit too strict for most threat models. Also settings might change or break, and this has no automatic updating mechanism. (I should upstream the updater) The user.js is also just a template, so a ton of mostly not needed configs will stay there. This project makes the setup of the hardening user.js easy. Once setup, the script is placed in `~/.local/bin` and a user systemd service runs it every once in a while. You can comment out lines if you want to keep certain settings.

6
0

Hi everyone! I love Thunderbird and I'm really happy with it. It's the flatpak version and, sadly, it doesn't allow me to open attachments. When I click on the file, it brings me to a screen where it proposes to use the system handler to open the file and then nothing happens. Apparently, this is a common issue related to flatpak and its permissions, so I tried to circumvent it by trying to open documents inside Thunderbird (as I remember Thunderbird being able to open PDFs) but it didn't work as it's only telling me that Firefox is already running. Does anyone know a workaround as for now it forces me to save documents before being able to open them?

8
10
16years.secvuln.info

[The CVE](https://lists.debian.org/debian-security-announce/2008/msg00152.html) DKIM is not always secure, be aware of that.

12
0

I just finished my first (private) Thunderbird extension and felt like blogging a bit, since there certainly aren't too many resources on this topic. The problem I set out to solve was that [soft hyphens](https://en.wikipedia.org/wiki/Soft_hyphen) in message subjects are displayed as whitespace in the message list pane. I use Thunderbird as an RSS reader and have subscribed to a newspaper that uses *a lot* of soft hyphens, which made it jarring to read the headlines. There's already an extension called [FiltaQuilla](https://addons.thunderbird.net/en-US/thunderbird/addon/filtaquilla) that almost does what I needed. It adds filter actions that can prepend and append text to message subject, but it doesn't have features for removing or replacing singular characters like I wanted. Two possible solutions came to mind: 1. Create a HTTP server that forwards requests to the RSS feed and removes soft hyphens from the response. 2. Create a Thunderbird extension that removes soft hyphens when the feed items are added. I didn't feel like running a separate service/process for something this simple, so I decided to go with solution 2. My first stop was Thunderbird's documentation on [supported WebExtension APIs](https://developer.thunderbird.net/add-ons/mailextensions/supported-webextension-api), specifically the [messages API](https://webextension-api.thunderbird.net/en/latest/messages.html). Alas, the API doesn't support modifying the subject of a message, though it allows marking them as read, changing tags, fetching the subject, etc. Since FiltaQuilla supported modifying the subject, I knew that it was possible somehow. Thankfully, FiltaQuilla is open source, so I skimmed the source and found that it's done roughly as follows: ```js const Cc = Components.classes, Ci = Components.interfaces; var filterService = Cc["@mozilla.org/messenger/services/filters;1"] .getService(Ci.nsIMsgFilterService); filterService.addCustomAction({ "applyAction": (msgHdrs) => { for (let msgHdr of msgHdrs) { msgHdr.subject = msgHdr.subject.replace(...); } }, ... }); ``` Keyword googling revealed that `Components` is some legacy API thing that has very little documentation. Luckily, [this helpful forum post](https://discourse.mozilla.org/t/how-to-connect-a-customelement-to-a-message-filter-custom-action/44796/3) outlined how to properly call `addCustomAction` with less reliance on legacy cruft, though the documentation is still not great. With the [hello world tutorial](https://developer.thunderbird.net/add-ons/hello-world-add-on), [Experiments documentation](https://developer.thunderbird.net/add-ons/mailextensions/experiments) and some trial and error, I finally got something working: ```js // background.js browser.FilterActionAPI.addHyphenRemover(); // api/FilterActionAPI/implementation.js const softHyphen = String.fromCharCode(173); const { MailServices } = ChromeUtils.import("resource:///modules/MailServices.jsm"); this.FilterActionAPI = class extends ExtensionAPI { getAPI(context) { return { FilterActionAPI: { addHyphenRemover() { MailServices.filters.addCustomAction({ id: "filter-remove-softhyphen", name: "Remove soft hyphens", applyAction: (msgHdrs) => { for (const msgHdr of msgHdrs) { if (msgHdr.subject.includes(softHyphen)) { console.log("filter-remove-softhyphen", "Removing soft hyphen from subject", msgHdr.subject); msgHdr.subject = msgHdr.subject.replace(softHyphen, ""); } } }, isValidForType: () => true, validateActionValue: () => null, allowDuplicates: false, needsBody: false, isAsync: false }) } } }; } } ``` Then I just added a message filter that matches my RSS feed and applies the *Remove soft hyphens* action. Not the prettiest but works!

20
0
https://thunderbird.github.io/thunderbird-android/changelog_6.6-MAINT_branch.xml

K-9 Mail changelogs looks old and out of date. I found changelog link on F-Droid. If there is another changelog, I don't know about it.

1
0

hi ppls, is there a way tho send encrypted emails with the alias adress? i like my alias adress even more.. in thunderbird the encryption button in the write email dialog turns off when i choose an alias. thx's lemmyist's <3

3
2

cross-posted from: https://programming.dev/post/10465121 > Hi everyone, > > I was wondering if you know a way to use the generated OpenPGP key created trough Thunderbird to sign PDF's ? > > ([Devuan ](https://www.devuan.org/)distro) > > Thanks.

5
1
linuxiac.com

cross-posted from: https://lemmy.ml/post/11234636 > Planned work for the 2024 release of Thunderbird.: https://developer.thunderbird.net/planning/roadmap

25
5
developer.thunderbird.net

And for Android release as well: https://developer.thunderbird.net/planning/android-roadmap

19
2
tilvids.com

Presentation and Q&amp;A session with one of the UI designers who worked on Cards View. Lots of insights into the considerations for usability, accessibility and future plans.

7
0

**Edit: Solved** Either: * Set K-9 to Unrestricted Battery in Settings > Apps > K-9 Mail > App battery usage, OR * Allow K-9 in Settings > Apps > Special app access > Alarms &amp; Reminders. If K-9 is already set to Unrestricted, then it won't appear in the second place. --- OS: Android 14, Pixel 8 I'm annoyed by [this fixed bug](https://github.com/thunderbird/thunderbird-android/issues/7271) (watch does not vibrate when receiving mail), so I enabled the K-9 beta in the app store, and as of today I have version 6.713 which hopefully has the fix. The [release notes](https://github.com/thunderbird/thunderbird-android/releases/tag/6.713) say: > **Note**: For now please manually allow "alarms &amp; reminders" in Android's app settings when using Push on Android 14 ... but I can't find those settings. Under Settings > Apps > Special app access > Alarms &amp; Reminders, K-9 mail isn't listed, and there's no Add button. ![](https://lemmy.world/pictrs/image/f2e32f14-a5ef-4538-9b56-19079734c507.png) I do have Push enabled on my email accounts; and I have the notification silenced. I have K-9 set to Unrestricted battery access. What am I missing?

7
5

The "Places" bar is a great idea but currently useless, as it opens tabs and thus wastes double the space. So I remove it through the GUI, but it seems with every update or even restart (??) it resets itself to visible again, which is a major annoyance. I searched in the about:config and couldnt find the config? I would place it in my already existing [hardened user.js](https://raw.githubusercontent.com/HorlogeSkynet/thunderbird-user.js/master/user.js)

4
1

It would be nice to have more and better Matrix Support. Are any Plans for that ?

8
0

Hey everyone, I’m a big fan of Thunderbird and have a bunch of accounts synced to it. I’m also running into a persistent problem on Windows 10: Thunderbird stalls out as “Not Responding” for about a minute when starting the program and filtering and searching my messages. I’ve tried a few fixes here and there, but never had any luck resolving this. Any suggestions are welcome!

5
0

I'm just starting to move over to thunderbird and don't fully understand the differences between tags and folders or why both exist. I'm using gmail at the moment, and am aware that thunderbird's folders are what correspond to gmail's labels. Is there any point to using tags at all? Practical differences/benefits in the way they present themselves as compared to emails sorted into folders? Any use case for both tags and folders concurrently?

6
4