Jonathan Protzenko
Jonathan Protzenko
For the first point: unless this is a customization that Thunderbird already provides, I don't think it justifies the extra complexity in Conversations. For the second point: I'd need to...
Hi, Thanks for reporting. I'm too busy with other stuff so I'm not going to implement this, but any patch would of course be most welcome.
Sure! Here's some guidance if you want to fix this. I'm talking only about navigating in the mail:3pane, and I'm not taking into account other cases, such as the conversation-in-a-tab...
I think you need to file a bug on Bugzilla if you managed to crash Thunderbird. That's important. Re your patch, what worries me is that loadMsgByViewIndex will trigger a...
I think my comment above boils down to: I think we need to make nsMessenger::AddMsgUrlToNavigateHistory(message.toTmplData().uri) scriptable. Really. This isn't hard to do. If you want, I could provide guidance on...
Cool. Let me know if you need help for the patch to make the right function scriptable; I usually hang out in #maildev as protz (see https://wiki.mozilla.org/Thunderbird/CommunicationChannels). On Sat 10...
There's a function called onMessageStreamed and another one called onMessageSelected. I think the latter is what you want, it basically notifies you as soon as a message is "active". On...
Hi Ben, it's awesome you got this to work! Here's some miscellaneous remarks: - `onMessageSelected` has been added after the 2.2 series, it's in the -master branch of this repository....
https://bugzilla.mozilla.org/show_bug.cgi?id=721365 I just compiled Thunderbird with this, and then I'm able to add entries to the back/forward menu properly. There's some extra hacking needed in order to trick Thunderbird into...
Also, you still need to monkey-patch isCommandEnabled. Snippet: ``` + let oldFunc = window.DefaultController.isCommandEnabled; + window.DefaultController.isCommandEnabled = function(command) { + switch (command) { + case "cmd_goBack": + case "cmd_goForward": +...