Thunderbird Plugin

6 views
Skip to first unread message

RoryOK

unread,
May 13, 2009, 5:52:38 AM5/13/09
to growl for windows
Is there anyway to get it to open the email in thunderbird when I
click on the notification?

Markus Mohnen

unread,
May 13, 2009, 7:27:28 AM5/13/09
to growl for windows
I assume you refer to Gmail Growl. Currently, it uses the system
default browser to open emails.

RoryOK

unread,
May 13, 2009, 8:05:38 AM5/13/09
to growl for windows
Hi Markus

Thanks, but I was actually referring to Brian's Thunderbird extension.
I use thunderbird for work mail, and it notifies me of new messages,
but clicking on it does nothing.

Regards,
Rory

On May 13, 12:27 pm, Markus Mohnen <markus.moh...@googlemail.com>
wrote:

Brian Dunnington

unread,
May 13, 2009, 10:10:10 AM5/13/09
to growl-fo...@googlegroups.com
yes - it was simply an oversight on my part. it is on my list of
things to include, but in my rush to get the extension out, i didnt
get it implemented.

i will try to get a new version out soon that will add this feature.

RoryOK

unread,
May 13, 2009, 10:33:02 AM5/13/09
to growl for windows
thats great, no rush on it, I'm sure there are more important things
to take care of!

On May 13, 3:10 pm, Brian Dunnington <briandunning...@gmail.com>
wrote:

briandunnington

unread,
May 14, 2009, 3:36:12 PM5/14/09
to growl for windows
i put up a new version - this one will open the message in Thunderbird
when the notification is clicked. it also fixes a few issues with RSS
notifications.

https://addons.mozilla.org/en-US/thunderbird/addon/11889

DK1

unread,
May 15, 2009, 12:25:05 AM5/15/09
to growl for windows
Awesome extension but i'm finding it fails to open the email if there
are filters moving the email to folders under the inbox.

briandunnington

unread,
May 15, 2009, 9:54:55 AM5/15/09
to growl for windows
good catch - it is a bug on my end. i will try to get a patched
version out soon. thanks for reporting the issue.

snaka

unread,
May 25, 2009, 4:05:39 AM5/25/09
to growl for windows
Hi, brian.

I report the problem (maybe..)

My problem is non-ascii(like Japanese) 'Subject:' to be garbled
characters.

It' expected characters.
http://gyazo.com/f5e0e91eb78da4410409dd0dc615bf3d.png

And it's a displayed character.
http://gyazo.com/311fd5b92cae862a66b2905ac5cc29b6.png

I guess non-ascii characters are needs (MIME?)BASE64 decode proccess.

Thanks

(Following are mail header)

X-Account-Key: account2
X-UIDL: 1243237311.7817.xxxxx
X-Mozilla-Status: 0001
X-Mozilla-Status2: 00000000
X-Mozilla-
Keys:
Return-Path: <xxxxx>
Delivered-To: xxxxxx
Received: (qmail 7813 invoked from network); 25 May 2009 07:41:51
-0000
Received: from xxxxxxx (HELO ?127.0.0.1?) (xxxxxxxxx)
by xxxxxxxxxx with SMTP; 25 May 2009 07:41:51 -0000
Message-ID: <4A1A4BB9.9050605@xxxxxx>
Date: Mon, 25 May 2009 16:41:45 +0900
From: Shinji Nakamatsu <xxxxxxxxxxxx>
User-Agent: Thunderbird 2.0.0.18 (Windows/20081105)
MIME-Version: 1.0
To: =?ISO-2022-JP?B?GyRCQ2c+PhsoQiAbJEI/NUZzGyhC?=
<xxxxxxxxxxxxxxxxx>
Subject: =?ISO-2022-JP?B?GyRCJUYlOSVIRnxLXDhsGyhC?=
Content-Type: text/plain; charset=ISO-2022-JP
Content-Transfer-Encoding: 7bit

briandunnington

unread,
May 26, 2009, 10:41:41 AM5/26/09
to growl for windows
it is a bug. i hope to get a new version out soon that will fix this
issue as well as another issue related to messages being moved between
folders.

thanks for reporting the bug and for the detailed example - it helps a
lot.



On May 25, 1:05 am, snaka <snaka....@gmail.com> wrote:
> Hi, brian.
>
> I report the problem (maybe..)
>
> My problem is non-ascii(like Japanese) 'Subject:' to be garbled
> characters.
>
> It' expected characters.http://gyazo.com/f5e0e91eb78da4410409dd0dc615bf3d.png
>
> And it's a displayed character.http://gyazo.com/311fd5b92cae862a66b2905ac5cc29b6.png

snaka

unread,
Jun 12, 2009, 4:51:48 AM6/12/09
to growl for windows
Hi, brian.

I fixed Thunderbird add-on's mime decode problem.

Here is the patch.

--- messengerOverlay.js.orig 2009-05-14 11:08:00.000000000 +0900
+++ messengerOverlay.js 2009-06-12 17:20:55.171875000 +0900
@@ -66,18 +66,18 @@
var match = regex.exec(author);
if(match) author = match[1];

- growlgntp.rssqueue.push
({type:"newrss",title:author,message:msg.subject,callbackContext:uri,callbackType:"rss"});
+ growlgntp.rssqueue.push
({type:"newrss",title:author,message:msg.mime2DecodedSubject,callbackContext:uri,callbackType:"rss"});
growlgntp.newrsstimer = window.setTimeout
(growlgntp.processRssQueue, 1000);
}
else{
if(growlgntp.newmailtimer) window.clearTimeout
(growlgntp.newmailtimer);

- var author = msg.author;
+ var author = msg.mime2DecodedAuthor;
var regex = /<([^>]*)>|"*([^<>"]*)/;
var match = regex.exec(author);
if(match) author = match[1] || match[2];

- growlgntp.mailqueue.push
({type:"newmail",title:author,message:msg.subject,callbackContext:uri,callbackType:"mail"});
+ growlgntp.mailqueue.push
({type:"newmail",title:author,message:msg.mime2DecodedSubject,callbackContext:uri,callbackType:"mail"});
growlgntp.newmailtimer = window.setTimeout
(growlgntp.processMailQueue, 1000);
}
}
@@ -193,4 +193,4 @@
}
}();
window.addEventListener("load", function(e) { growlgntp.onLoad(e); },
false);
-dump("growlgntp-thunderbird is loading");
\ No newline at end of file
+dump("growlgntp-thunderbird is loading");

----
snak...@gmail.com

snaka

unread,
Jun 12, 2009, 4:52:08 AM6/12/09
to growl for windows

briandunnington

unread,
Jun 12, 2009, 11:51:32 AM6/12/09
to growl for windows
Thanks! (again)

i applied the patch and updated the extension on the
addons.mozilla.org site.



On Jun 12, 1:52 am, snaka <snaka....@gmail.com> wrote:
> Hi, brian.
>
> snaka....@gmail.com
Reply all
Reply to author
Forward
0 new messages