<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Open Blogue &#187; Firefox</title>
	<atom:link href="http://www.open-blogue.fr/tag/firefox/feed" rel="self" type="application/rss+xml" />
	<link>http://www.open-blogue.fr</link>
	<description>Logiciel/Freeware/Open Source/Etc...</description>
	<lastBuildDate>Wed, 30 Jun 2010 07:20:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Webmail Notifier-vérifier vos différents comptes de messagerie</title>
		<link>http://www.open-blogue.fr/firefox/webmail-notifier-verifier-vos-differents-comptes-de-messagerie</link>
		<comments>http://www.open-blogue.fr/firefox/webmail-notifier-verifier-vos-differents-comptes-de-messagerie#comments</comments>
		<pubDate>Tue, 02 Jun 2009 21:13:10 +0000</pubDate>
		<dc:creator>Clark Gaybeul</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[webmail]]></category>

		<guid isPermaLink="false">http://www.open-blogue.fr/?p=222</guid>
		<description><![CDATA[Webmail Notifier est un plugin pour Firefox qui vous permet de vérifier l&#8217;arrivée de nouveaux messages sur vos différents comptes de messagerie. Régler le temps de vérifications de vos comptes est Webmail Notifier vous préviendras par Pop-Up ou par un avertissement sonore de l&#8217;arrivée de nouveaux courriels. Webmail Notifier supporte les messageries Hotmail, Gmail, Yahoo, [...]<p>Post from: <a href="http://www.open-blogue.fr">Open Blogue</a><br/><br/><a href="http://www.open-blogue.fr/firefox/webmail-notifier-verifier-vos-differents-comptes-de-messagerie">Webmail Notifier-vérifier vos différents comptes de messagerie</a></p>
]]></description>
			<content:encoded><![CDATA[<p><strong>Webmail Notifier</strong> est un plugin pour <a title="FireFox" href="http://www.mozilla-europe.org/fr/firefox/" target="_blank">Firefox</a> qui vous permet de vérifier l&#8217;arrivée de nouveaux messages sur vos différents comptes de messagerie.</p>
<p><a href="http://www.open-blogue.fr/wp-content/uploads/2009/06/email_icon.png" rel="lightbox[222]" title="Webmail"><img class="aligncenter size-full wp-image-223" title="Webmail" src="http://www.open-blogue.fr/wp-content/uploads/2009/06/email_icon.png" alt="" width="128" height="128" /></a></p>
<p>Régler le temps de vérifications de vos comptes est <strong>Webmail Notifier</strong> vous préviendras par Pop-Up ou par un avertissement sonore de l&#8217;arrivée de nouveaux courriels.<br />
<span id="more-222"></span><strong>Webmail Notifier</strong> supporte les messageries Hotmail, Gmail, Yahoo, Daum, Naver, Empas, etc.<br />

<!-- Begin Google Adsense code -->
<script type="text/javascript"><!--
google_ad_client = "pub-5264059718577020";
/* 468x60, openblog, single */
google_ad_slot = "6622397192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
<br />
Vous pouvez également créer vos scripts personnels si vous utilisez une messagerie différente.</p>
<p>Pour les utilisateurs des messageries <strong>Zenbe</strong> et <strong>Free</strong> (Zimbra) voilà les scripts à utiliser :</p>
<p>Pour Zenbe</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p222code3'); return false;">View Code</a> JAVASCIPT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2223"><td class="code" id="p222code3"><pre class="javascipt" style="font-family:monospace;">  /*
 * File: zenbe_webmailnotifier_v2.js
 * Date: 6/29/2008
 * Author: Robert K. - Zenbe, Inc.
 * Comments &amp;amp; suggestions: http://forums.zenbe.com/topic/87
 *
 * User script for the Firefox WebMailNotifier addon, available at
 * https://addons.mozilla.org/en-US/firefox/addon/4490
 */
function initHandler(handler) {
  var CLIENT = 'WebMailNotifier_2';
&nbsp;
  // Function for counting just the unread messages in the inbox
  var COUNT_INBOX_ONLY =   function(tagData) {
    return /^Inbox$/.test(tagData.name) ? tagData.counts.unread_messages : 0;
  };
&nbsp;
  // Function for counting all *unviewed* messages in the inbox and any other
  // tags the user has. Note: This will more accurately notify you when there's
  // new mail, but the
  // message count shown in the notifier will not be very meaningful
  var COUNT_ALL_UNVIEWED = function(tagData) {
    return (/^Inbox$/.test(tagData.name) || tagData.user_id ) ? tagData.counts.unviewed_messages : 0;
  };
&nbsp;
  // Zenbe.com configuration for MailNotifier addon
  // See http://tobwithu.tistory.com/14 for details
  handler.name ='Zenbe';
  handler.dataURL =       'http://www.zenbe.com/tags.json?client='+CLIENT;
  handler.mailURL =       'http://www.zenbe.com';
  handler.loginData =     ['https://www.zenbe.com/sessions.json?client='+CLIENT, 'login', 'password', 'remember_me=1'];
&nbsp;
  // Set the counting logic to use
  handler.tagCounter = COUNT_INBOX_ONLY;
&nbsp;
  handler.getData = function(aData) {
    // Turn JSON data into an object (array of tag info)
    aData = eval('(' + aData + ')');
&nbsp;
    // Return -1 if we can't don't have tag data (for whatever reason)
    if (!aData || !aData.tags) return -1;
&nbsp;
    // Calculate message count
    var count = 0;
    for (var i = 0; i &amp;lt; aData.tags.length; i++) count += this.tagCounter(aData.tags[i]);
&nbsp;
    return count;
  };
}</pre></td></tr></table></div>

<p>Pour Free</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p222code4'); return false;">View Code</a> JAVASCIPT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2224"><td class="code" id="p222code4"><pre class="javascipt" style="font-family:monospace;">  function initHandler(handler){
  handler.name=&quot;Zimbra Free&quot;;
  handler.dataURL=&quot;http://zimbra.free.fr/zimbra/?client=standard&quot;;
  handler.loginData=[&quot;http://zimbra.free.fr/zimbra.pl&quot;,&quot;login&quot;,&quot;password&quot;];
  handler.mailURL=&quot;http://zimbra.free.fr/zimbra&quot;;
&nbsp;
  handler.getData=function(aData){
    var fnd=aData.match(/Zimbra: Inbox \((\d+?)\)/); // nombre de mails non lus
    if(fnd) {
      return fnd[1];
    } else {
      var fnd_aucun = aData.match(/Zimbra: Inbox/); //aucun mail non lu
      if (fnd_aucun) {
        return 0;
      } else {
        return -1; //affiche le message &quot;non verifié&quot;
      }
    }
  };
}</pre></td></tr></table></div>

<p>Un plugin que j&#8217;ai découvert il y a quelques temps est que j&#8217;ai adopté immédiatement.</p>
<p><a title="Webmail Notifier" href="https://addons.mozilla.org/fr/firefox/addon/4490" target="_blank">WebMail Notifier</a></p>
<!-- PHP 5.x --><p>Post from: <a href="http://www.open-blogue.fr">Open Blogue</a><br/><br/><a href="http://www.open-blogue.fr/firefox/webmail-notifier-verifier-vos-differents-comptes-de-messagerie">Webmail Notifier-vérifier vos différents comptes de messagerie</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.open-blogue.fr/firefox/webmail-notifier-verifier-vos-differents-comptes-de-messagerie/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
