Results 138 comments of Łukasz Kosson

I'd rather have addon do one thing and be as simple as possible. Shouldn't be that hard to fork and customize it, though - all the relevant code is in...

In `customcol.js` the following line `formatAddress(acc, val) { return (acc == "" ? "" : acc + ", ") + (val.includes(">") ? [...val.matchAll(/[^)/g)].join(', ') : val); },` should be something...

This looks like the same issue as #4 (third paragraph). Usually Thunderbird automatically decodes MIME Encoded-Word back to readable form, but in some rare cases like here it doesn't. So...

"customcol.js" is a part of this addon and is included both in XPI package and in this repo at https://github.com/lkosson/full-address-column/blob/master/src/customcol.js

I don't think that changes anything. The addon uses `experiment_apis` which implicitly grants full access permission. I believe there is no way to read full message headers and modify message...

Not applicable after changes in Thunderbird 115

Since Thunderbird 78 there are two types of extensions available: new ("MailExtension") and legacy ("experiments"). New ones support fine-grained permissions, but offer much more limited set of APIs. Legacy addons...

I don't have much experience in Mail/WebExtensions (or any proper JavaScript) development either - apart from hacking this addon together. If I understand Mozilla's plan correctly, the intended use of...

I'm not quite sure how to determine whether message is inbound or outbound from TB API, as original Correspondents column does - especially for folders containing both outgoing and incoming...

The problem is I don't know how or if it is even possible to fetch content of "Corespondents" column programmatically.