Z 5 z 5 gwězdkow pógódnośony

Works like a charm

Z 5 z 5 gwězdkow pógódnośony

La seule façon d'avoir les notifications de nouveaux messages dans le système de notification Cinnamon natif (j'utilise Linux Mint 17.2).
Comme expliqué par l'auteur, il faut avoir installé libnotify-bin.

Associé à MinimizeToTray-revived, c'est le duo parfait pour maintenir Thunderbird ouvert en toute discrétion et rester informé des nouveaux messages.
Merci beaucoup.

Z 1 z 5 gwězdkow pógódnośony

I'm using gnome 15.04 with tb 31.8. The notify does popup in the bottom of the screen but it does not show any icon in the hidden notify bar. When i hoover with the mouse on the notify bar it shows a shaddow but no icon visible so you don't see anything. check here http :// postimg.org/ image/ 4921n56al/ (cancel spaces for see the url)

Z 1 z 5 gwězdkow pógódnośony

Not very useful. Selecting accounts doesn't work reliably (some are ignored) and when several message arrive at the same time only a few are reported (sometimes only one). At the same time, one single message arriving may be reported twice..

Z 5 z 5 gwězdkow pógódnośony

I'm using it in Ubuntu Gnome 14.04 with Gnome 3.12.2
I've also have installed fire tray and both extensions work great together. Gnome Integration allows me to have a quick view of the incoming mail and doesn't broke Fire Tray.
Gnome Integration is a high value addition! I think it should come integrated with Thunderbird :P

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.3). 

Z 5 z 5 gwězdkow pógódnośony

Perfect. Does exactly what I need. Love that I can specify the command.

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.3). 

Z 4 z 5 gwězdkow pógódnośony

I install Gnome Integration on Debian Wheezy, but the new mail icon (envelope) is missing when new mail arrives. Any ideas?

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.3). 

Z 1 z 5 gwězdkow pógódnośony

Installed in LMDE and it doesn't work very well - it seems to spawn a new 'zenity' thread for every notification which never dies leading to the infamous 'Maximum number of clients reached'.

Not sure where the problem is, here or cinnamon or LMDE, just reporting it :).

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.3). 

Z 5 z 5 gwězdkow pógódnośony

Love it! Integrates well with KDE. It would be awesome if you could fix all the typos in the settings dialog and prevent it from spamming tray icons, meaning only create one tray icon and not a new one for each message.

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.3). 

Z 5 z 5 gwězdkow pógódnośony

In the very last version of Thunderbird (currently in beta) the account list appears to be empty, so it is impossible to exclude accounts you don't want to be notified of.
5 stars for all the rest.

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.3).  Toś ten wužywaŕ ma starše pógódnośenje toś togo dodanka.

Solved in version 0.4.4

Z 4 z 5 gwězdkow pógódnośony

works great with Fedora18; Thank you very much! :D

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.3). 

Z 4 z 5 gwězdkow pógódnośony

Under Ubuntu 12.10 (gnome 3.6.2) this addon works pretty well (thanks for that, and to maintain it !), which is today in my opinion essential, even if it could be really improved with Gnome Shell. For instance, a icon notification in top bar (for instance, in user menu or any messaging menu) would be really appreciated.
Then, the accounts notifications settings don't work properly. In my case, modifications are not saved correctly (when I reopen the configuration menu, some modifications are forgotten) : impossible to remove notification concerning one of my identities and sometimes I don't received notifications about some accounts.
Moreover, if I can ask for something, I would be great if we could manage theses notifications more precisly : I'm thinking about the ability to choose notification for all folder and subfolder of each accounts.

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.3). 

Z 4 z 5 gwězdkow pógódnośony

I'm using Ubuntu 12.04.1 with Cinnamon. The addon worked great except that it only sent notifications when I did not use the account filtering feature. To fix that I modified the overlay.js:
119,120c119,120
< var title = this.format(titleFormat, subject, author, recipients, carbonCopy, date, folder, server, priority, messageSize, lineCount, messageID, account, false);
< var message = this.format(messageFormat, subject, author, recipients, carbonCopy, date, folder, server, priority, messageSize, lineCount, messageID, account, true);
---
> var title = this.format(titleFormat, subject, author, recipients, carbonCopy, date, folder, server, priority, messageSize, lineCount, messageID, account.incomingServer.prettyName, false);
> var message = this.format(messageFormat, subject, author, recipients, carbonCopy, date, folder, server, priority, messageSize, lineCount, messageID, account.incomingServer.prettyName, true);
133c133
< if(this.checkNotify(account, messageID, timeout) == true)
---
> if(this.checkNotify(account.key, messageID, timeout) == true)
862c862,863
<
---
> var account = findAccountFromFolder(folder);
>
886c887
< gnomeIntegration.notify(titleFormat, messageFormat, header.mime2DecodedSubject, header.mime2DecodedAuthor, header.mime2DecodedRecipients, cclist, Math.round(header.date / 1000), folder.prettyName, server.prettyName, header.priority, header.messageSize, header.lineCount, header.messageId, header.accountKey, header);
---
> gnomeIntegration.notify(titleFormat, messageFormat, header.mime2DecodedSubject, header.mime2DecodedAuthor, header.mime2DecodedRecipients, cclist, Math.round(header.date / 1000), folder.prettyName, server.prettyName, header.priority, header.messageSize, header.lineCount, header.messageId, account, header);
890a892,911
>
> function findAccountFromFolder (theFolder) {
> if (!theFolder)
> return null;
> var acctMgr = Components.classes["@mozilla.org/messenger/account-manager;1"]
> .getService(Components.interfaces.nsIMsgAccountManager);
> var accounts = acctMgr.accounts;
> for (var i = 0; i < accounts.Count(); i++) {
> var account = accounts.QueryElementAt(i, Components.interfaces.nsIMsgAccount);
> var rootFolder = account.incomingServer.rootFolder; // nsIMsgFolder
> if (rootFolder.hasSubFolders) {
> var subFolders = rootFolder.subFolders; // nsIMsgFolder
> while(subFolders.hasMoreElements()) {
> if (theFolder == subFolders.getNext().QueryInterface(Components.interfaces.nsIMsgFolder))
> return account.QueryInterface(Components.interfaces.nsIMsgAccount);
> }
> }
> }
> return null;
> }

It works great for me now!

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.3). 

Z 5 z 5 gwězdkow pógódnośony

I do really like this addon, and it has worked quite well in the past. However, since I have switched to Mint Debian (using MATE instead of the last version using Gnome2), this consistently gives me two identical notifications for each email, one right above the other. It is the extension—I've tried removing its notifications and nothing shows up for any messages—but I'm not sure if it's a bug in the combination with MATE, Debian, or completely on my end (though notifications from other programs only appear once). Despite that, thanks!

EDIT: And now I'm only getting one after a restart. I wonder if it was running two copies of the daemon or something.

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.3). 

Z 5 z 5 gwězdkow pógódnośony

Très bien traduite, s'installe facilement. J'en suis très heureux, cela me permet d'être au courant des mes mails reçus d'un seul coup d’œil.

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.3). 

Z 5 z 5 gwězdkow pógódnośony

After updating to Thunderbird 11 the default notification disappeared on my PC (Ubuntu Natty, Gnome 2). This Add-On brought it back, working fine.
Thanks

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.3). 

Z 1 z 5 gwězdkow pógódnośony

Any news on the update?

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.2). 

The update is waiting for approval

Z 4 z 5 gwězdkow pógódnośony

Until vaites implements enaut's suggestion, you can create the following shell script (e.g. at ~/bin/transient-notify-send), and configure to use it in the "Gnome Integration" preferences.

#!/bin/bash
notify-send --hint int:transient:1 "$@"

Don't forget to set the script executable.

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.2). 

Johannes, can you tell me what distro and version are you using? Thanks.

Z 4 z 5 gwězdkow pógódnośony

Hi,
Im using your addon and its great with one minor problem. In gnome 3 the messages stack up and you have to click them away one by one by clicking on the message icon and after that on the message itself.
To avoid this I added some arguments to the message-send command so that the messages are not added to the permanent messages.

example:
var args = [title, message, '--hint', 'int:transient:1',"-i", icon, "-c", "email.arrived", "-t", timeout, "-u", urgency];

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.2). 

Thanks for the fix. Will test the extension in Gnome 3 and send an update as soon as i can.

Z 4 z 5 gwězdkow pógódnośony

Funciona perfecto hasta que Thunderbird 6.0.1 se cierra.

Al volver a abrir la extensión no está instalada.

Toś to pógódnośenje jo za pjerwjejšnu wersiju dodanka (0.4.1). 

Kanashin, ayer detecté ese fallo. Si abres Thunderbird desde una consola verás que aparece un mensaje del tipo "..... does not contain a valid install manifest". Si abres de nuevo Thunderbird se instalará de nuevo y curiosamente funcionará a veces alternas.

Ayer envié la versión 0.4.2 que soluciona ese problema y espero aprobación por parte de Mozilla. Te aparecerá la actualización disponible en cuanto le den el visto bueno :)