<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0" xml:base="http://www.flevour.net">
<channel>
 <title>flevour unplugged - a 20-something blog living the Web2.0 era</title>
 <link>http://www.flevour.net</link>
 <description />
 <language>en</language>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/flevour" /><feedburner:info uri="flevour" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
 <title>Puntare un dominio .it da Tophost a Dreamhost? Non perdere tempo, cambia registrar :)</title>
 <link>http://feedproxy.google.com/~r/flevour/~3/-_g8i67nt3U/puntare-un-dominio-it-da-tophost-dreamhost-non-perdere-tempo-cambia-registrar</link>
 <description>&lt;p&gt;Ho recentemente registrato un dominio .it su Tophost.it allettato dal basso costo di registrazione. Non c&amp;#8217;ho pensato troppo sù, tanto &lt;del&gt;ho pensato&lt;/del&gt; &amp;#8220;Cosa può andare storto con la gestione di un dominio?&amp;#8221;.&lt;/p&gt;
&lt;p&gt;Da questo errore di valutazione ho imparato che quando si registra un dominio non è ovvio che si acquisisca automaticamente la possibilità di gestirne i NameServer. Il pessimo TopHost ricade proprio in questo caso, offrendo un tool di gestione del &lt;span class="caps"&gt;DNS&lt;/span&gt; alquanto approsimativo e in cui non è possibile modificare i NS. &lt;br /&gt;
Tra l&amp;#8217;altro il pannello è abbastanza vulnerabile a attacchi con alterazione dell&amp;#8217;&lt;span class="caps"&gt;HTML&lt;/span&gt; (sono riuscito a cambiare un NS giochicciando con Firebug, ma senza ottenere poi risultati interessanti).&lt;/p&gt;
&lt;p&gt;I &lt;a href="http://www.fullo.net/blog/archives/2007/07/15/spostare-i-dns-da-tophost-a-dreamhost/"&gt;blogger italiani&lt;/a&gt; si &lt;a href="http://ricir.net/drupal/node/557"&gt;sono prodigati&lt;/a&gt; in guide per puntare il proprio dominio registrato con tophost a Dreamhost o altro servizio di hosting, ma l&amp;#8217;unico vero consiglio da dare è: cambiate registrar!&lt;br /&gt;
Ogni soluzione su TopHost è semplicemente un workaround ridondante, solo a causa di una restrizione inutile da parte di questo fornitore. La gran parte dei registrar del mondo permette tranquillamente il cambio dei NS del proprio dominio.&lt;/p&gt;
&lt;p&gt;Stanco di questa presa in giro non ho perso tempo e ho spostato la registrazione a &lt;a href="http://www.gidinet.com"&gt;Gidinet&lt;/a&gt;, ottimo prezzo e il suo nome non è &amp;#8220;Aruba&amp;#8221; (due ottimi motivi). &lt;br /&gt;
Ecco invece &lt;a href="http://www.tophost.it/aiuto/cat2/14/285/"&gt;dove trovare l&amp;#8217;auth code per abbandonare TopHost alla svelta&lt;/a&gt;.&lt;br /&gt;
In bocca al lupo.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/flevour/~4/-_g8i67nt3U" height="1" width="1"/&gt;</description>
 <comments>http://www.flevour.net/blog/puntare-un-dominio-it-da-tophost-dreamhost-non-perdere-tempo-cambia-registrar#comments</comments>
 <category domain="http://www.flevour.net/categories/dreamhost">dreamhost</category>
 <category domain="http://www.flevour.net/categories/gidinet">gidinet</category>
 <category domain="http://www.flevour.net/categories/registrazione-dominio">registrazione dominio</category>
 <category domain="http://www.flevour.net/categories/tophost">tophost</category>
 <pubDate>Wed, 02 Dec 2009 13:32:13 +0000</pubDate>
 <dc:creator>flevour</dc:creator>
 <guid isPermaLink="false">420 at http://www.flevour.net</guid>
<feedburner:origLink>http://www.flevour.net/blog/puntare-un-dominio-it-da-tophost-dreamhost-non-perdere-tempo-cambia-registrar</feedburner:origLink></item>
<item>
 <title>Facebook Share button and that little annoying behaviour with zero counts</title>
 <link>http://feedproxy.google.com/~r/flevour/~3/Rp1e_O78FqM/facebook-share-button-and-little-annoying-behaviour-zero-counts</link>
 <description>&lt;p&gt;The new &lt;a href="http://wiki.developers.facebook.com/index.php/Facebook_Share"&gt;Facebook Share&lt;/a&gt; button is very cool and offers a new insightful information about your posts: the share count.&lt;br /&gt;
Alas, when no one has yet shared your post, the count balloon disappears in thin air. This give you layout headaches, because the widget doesn&amp;#8217;t fill a fixed area in the page.&lt;br /&gt;
jQuery to the rescue! I wrote this simple code to fix the problem and show a neat &amp;#8220;0&amp;#8221; count beside the post. Thought I&amp;#8217;d share for someone out there in need :)&lt;/p&gt;
&lt;pre&gt;
jQuery(document).ready(function(){
  jQuery(&amp;#34;span.fb_share_no_count&amp;#34;).each(function(){
    jQuery(this).removeClass(&amp;#34;fb_share_no_count&amp;#34;);
    jQuery(&amp;#34;.fb_share_count_inner&amp;#34;, this).html(&amp;#34;0&amp;#34;);
  });
});
&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/flevour/~4/Rp1e_O78FqM" height="1" width="1"/&gt;</description>
 <comments>http://www.flevour.net/blog/facebook-share-button-and-little-annoying-behaviour-zero-counts#comments</comments>
 <category domain="http://www.flevour.net/categories/article">article</category>
 <category domain="http://www.flevour.net/categories/code">code</category>
 <category domain="http://www.flevour.net/categories/facebook">facebook</category>
 <category domain="http://www.flevour.net/categories/facebook-share">facebook share</category>
 <category domain="http://www.flevour.net/categories/javascript">javascript</category>
 <category domain="http://www.flevour.net/categories/jquery">jquery</category>
 <category domain="http://www.flevour.net/categories/js">js</category>
 <pubDate>Wed, 11 Nov 2009 11:19:43 +0000</pubDate>
 <dc:creator>flevour</dc:creator>
 <guid isPermaLink="false">419 at http://www.flevour.net</guid>
<feedburner:origLink>http://www.flevour.net/blog/facebook-share-button-and-little-annoying-behaviour-zero-counts</feedburner:origLink></item>
<item>
 <title>La programmazione entra in politica.</title>
 <link>http://feedproxy.google.com/~r/flevour/~3/Mfr1__k-EpA/la-programmazione-entra-politica</link>
 <description>&lt;p&gt;In un breve brainstorming &lt;a href="http://www.linkedin.com/in/denistorresan"&gt;Denis Torresan&lt;/a&gt; e il sottoscritto ci sentiamo di sintetizzare l&amp;#8217;attuale (ridente) situazione politica italiana così:&lt;/p&gt;
&lt;pre&gt;
italy.addEventListener(&amp;#39;BerlusconiSpeaksPublicly&amp;#39;,&amp;#39;timelyAnswerFromOpposition&amp;#39;,phrase);
function timelyAnswerFromOpposition(phrase) {
  return !phrase;
}
&lt;/pre&gt;&lt;p&gt;Share your own view about politics in your country in the comments? Any language accepted!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/flevour/~4/Mfr1__k-EpA" height="1" width="1"/&gt;</description>
 <comments>http://www.flevour.net/blog/la-programmazione-entra-politica#comments</comments>
 <category domain="http://www.flevour.net/categories/php">php</category>
 <category domain="http://www.flevour.net/categories/politica">politica</category>
 <pubDate>Tue, 09 Jun 2009 15:37:30 +0000</pubDate>
 <dc:creator>flevour</dc:creator>
 <guid isPermaLink="false">418 at http://www.flevour.net</guid>
<feedburner:origLink>http://www.flevour.net/blog/la-programmazione-entra-politica</feedburner:origLink></item>
<item>
 <title>The Power of Less: Leo Babauta finally lands to paper and lets you save your printer toner!</title>
 <link>http://feedproxy.google.com/~r/flevour/~3/ud3TK1ZAa4I/power-less-leo-babauta-finally-lands-paper-and-lets-you-save-your-printer-toner</link>
 <description>&lt;p&gt;I have been following Leo Babauta&amp;#8217;s &lt;a href="http://zenhabits.net/"&gt;Zen Habits blog&lt;/a&gt; since its first posts, and I must say was it a good time! His posts gets always to the point, but what I like most is he actually puts in practice what he writes. He then reports back on his goals and his successes and failures.&lt;br /&gt;
I think one of his best successes becoming a full time blogger. And a natural thing for a famous blogger is to publish a book. He firstly published a series of ebooks, but they weren&amp;#8217;t nothing more than a collection of successful posts.&lt;br /&gt;
With &lt;a href="http://www.amazon.com/gp/product/1401309704?ie=UTF8&amp;amp;tag=flevournet-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=1401309704"&gt;Power of Less&lt;/a&gt;&lt;img src="http://www.assoc-amazon.com/e/ir?t=flevournet-20&amp;amp;l=as2&amp;amp;o=1&amp;amp;a=1401309704" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt;, he goes over the fence and releases a whole book, in real paper!&lt;br /&gt;
If you read this by the end of 2008, &lt;a href="http://zenhabits.net/2008/12/the-power-of-less-has-launched-free-giveaways-for-book-buyers/"&gt;head over his blog&lt;/a&gt;, to learn a 100% secure way to receive a free gift. Otherwise you can checkout the book at Amazon and earn him and me a penny or two.&lt;/p&gt;
&lt;div align="center"&gt;&lt;iframe src="http://rcm.amazon.com/e/cm?t=flevournet-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=as1&amp;amp;asins=1401309704&amp;amp;md=10FE9736YVPPT7A0FBG2&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/flevour/~4/ud3TK1ZAa4I" height="1" width="1"/&gt;</description>
 <comments>http://www.flevour.net/blog/power-less-leo-babauta-finally-lands-paper-and-lets-you-save-your-printer-toner#comments</comments>
 <category domain="http://www.flevour.net/categories/book">book</category>
 <category domain="http://www.flevour.net/categories/leo-babauta">leo babauta</category>
 <category domain="http://www.flevour.net/categories/paper">paper</category>
 <category domain="http://www.flevour.net/categories/power-less">the power of less</category>
 <pubDate>Tue, 30 Dec 2008 16:41:48 +0000</pubDate>
 <dc:creator>flevour</dc:creator>
 <guid isPermaLink="false">417 at http://www.flevour.net</guid>
<feedburner:origLink>http://www.flevour.net/blog/power-less-leo-babauta-finally-lands-paper-and-lets-you-save-your-printer-toner</feedburner:origLink></item>
<item>
 <title>Crucial Paradigm: 500 internal server error</title>
 <link>http://feedproxy.google.com/~r/flevour/~3/DQsNl6MQo1M/crucial-paradigm-500-internal-server-error</link>
 <description>&lt;p&gt;Tonight I activated a shared hosting account at &lt;a href="http://www.crucialp.com"&gt;Crucial Paradigm&lt;/a&gt;. The process was fast and smooth and you get to pay only 1$ for the first month of service.&lt;/p&gt;
&lt;p&gt;I must say they have a very brilliant and responsive contact service, which balances the fact they have very poor documentation and knowledge base articles. In fact it took me 2 hours from filling the first sign-up to have a working account with &lt;span class="caps"&gt;SSH&lt;/span&gt; enabled and a problem resolved by their support staff. This is quite valuable if you realize that also enabling &lt;span class="caps"&gt;SSH&lt;/span&gt; requires opening a ticket with tech support.&lt;br /&gt;
This article should be put in the series &amp;#8220;info I wish I could find in Google rather than asking the tech support&amp;#8221;. If only I had series in this blog. But I feel like a blog is, among other things, a way to share your experiences in such a way that they will be useful to others. If you still don&amp;#8217;t know what I mean, I&amp;#8217;ll tell you the most visited pages here are &amp;#8220; 	&lt;br /&gt;
Drupal: changing &amp;#8220;files&amp;#8221; directory configuration setting&amp;#8221;:http://flevour.net/blog/drupal-changing-files-directory-configuration-setting or &lt;a href="http://flevour.net/node/72"&gt;Mapping arrow keys in Vim&lt;/a&gt;. You get my point?&lt;/p&gt;
&lt;p&gt;So I&amp;#8217;m simply reposting the reply I got from the tech guy at Crucial Paradigm in case someone in the future needs this info.&lt;br /&gt;
&lt;quote&gt;&lt;/p&gt;
&lt;h3&gt;500 internal server error&lt;/h3&gt;
&lt;/p&gt;
&lt;p&gt;Hello Francesco,&lt;/p&gt;
&lt;p&gt;Permission of files were incorrect which caused the issue. We corrected it. Now domain is loading fine from our end. Please verify it from your end.&lt;/p&gt;
&lt;p&gt;As a security measure, our shared servers are php-suexec.&lt;/p&gt;
&lt;p&gt;I will give more description on this matter.&lt;/p&gt;
&lt;p&gt;When &lt;span class="caps"&gt;PHP&lt;/span&gt; runs as an Apache Module it executes as the user/group of the webserver which is usually &amp;#8220;nobody&amp;#8221;. Under this mode, files or directories that you require your php scripts to write to need to have 777 permissions (read/write/execute at user/group/world level). This is not very secure because besides allowing the webserver to write to the file it also allows anyone else to read or write to the file.&lt;/p&gt;
&lt;p&gt;With &lt;span class="caps"&gt;PHP&lt;/span&gt; running as &lt;span class="caps"&gt;CGI&lt;/span&gt; with suexec enabled your php scripts now execute under your user/group level. Files or directories that you require your php scripts to write to no longer need to have 777 permissions. Your scripts and directories can have a maximum of 755 permissions (read/write/execute by you, read/execute by everyone else). &lt;span class="caps"&gt;PHP&lt;/span&gt; running as CGI/suexec is much more secure than the older Apache module method.&lt;/p&gt;
&lt;p&gt;But there are 4 rules for php to work fine on phpsuexec enabled servers. They are&lt;/p&gt;
&lt;p&gt;1. .htaccess should not contain any php config values. Such php values should be specified in php.ini.&lt;br /&gt;
2. Permissions for all the php files must be 644&lt;br /&gt;
3. Permissions for all web directories must be 755&lt;br /&gt;
4. Ownership must be of the user and not nobody or any other user.&lt;br /&gt;
&lt;/quote&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/flevour/~4/DQsNl6MQo1M" height="1" width="1"/&gt;</description>
 <comments>http://www.flevour.net/blog/crucial-paradigm-500-internal-server-error#comments</comments>
 <category domain="http://www.flevour.net/categories/500">500</category>
 <category domain="http://www.flevour.net/categories/crucial-paradigm">crucial paradigm</category>
 <category domain="http://www.flevour.net/categories/internal-server-error">internal server error</category>
 <pubDate>Thu, 18 Dec 2008 10:23:49 +0000</pubDate>
 <dc:creator>flevour</dc:creator>
 <guid isPermaLink="false">416 at http://www.flevour.net</guid>
<feedburner:origLink>http://www.flevour.net/blog/crucial-paradigm-500-internal-server-error</feedburner:origLink></item>
<item>
 <title>Get Satisfaction: one more module in the Drupal family</title>
 <link>http://feedproxy.google.com/~r/flevour/~3/e6__skcMAnY/get-satisfaction-one-more-module-drupal-family</link>
 <description>&lt;p&gt;I just committed the first version of &lt;a href="http://drupal.org/project/getsatisfaction"&gt;Get Satisfaction module&lt;/a&gt; to Drupal &lt;span class="caps"&gt;CVS&lt;/span&gt;. It provides the ability to add the &lt;a href="http://getsatisfaction.com/widgets"&gt;Get Satisfaction widgets&lt;/a&gt; to your Drupal sites. &lt;br /&gt;
Configuration is one easy input: your company code name. After that you get the infamous &amp;#8220;Feedback&amp;#8221; tab on your site (you can choose which pages display it or which ones don&amp;#8217;t). You also get an input filter to add a feedback page anywhere in a content of your site.&lt;/p&gt;
&lt;p&gt;Although I don&amp;#8217;t expect this module to be widely used, I don&amp;#8217;t see the point of keeping it for myself :)&lt;br /&gt;
Hope someone out there enjoys it, I&amp;#8217;ll keep an eye on the project statistics!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/flevour/~4/e6__skcMAnY" height="1" width="1"/&gt;</description>
 <comments>http://www.flevour.net/blog/get-satisfaction-one-more-module-drupal-family#comments</comments>
 <category domain="http://www.flevour.net/taxonomy/term/8">Drupal</category>
 <category domain="http://www.flevour.net/categories/get-satisfaction">get satisfaction</category>
 <category domain="http://www.flevour.net/categories/module">module</category>
 <pubDate>Thu, 11 Dec 2008 11:52:59 +0000</pubDate>
 <dc:creator>flevour</dc:creator>
 <guid isPermaLink="false">415 at http://www.flevour.net</guid>
<feedburner:origLink>http://www.flevour.net/blog/get-satisfaction-one-more-module-drupal-family</feedburner:origLink></item>
<item>
 <title>2 weeks after</title>
 <link>http://feedproxy.google.com/~r/flevour/~3/SpelNJjc-HY/2-weeks-after</link>
 <description>&lt;p&gt;I talked about &lt;a href="http://flevour.net/blog/problem-zohos-sign-googleaccount"&gt;Zoho sign-ing problems&lt;/a&gt; just 2 weeks ago and now they seem to have fixed those problems, thanks to &lt;a href="http://www.techcrunch.com/2008/10/29/your-gmail-account-is-now-an-openid/"&gt;Google becoming an OpenID provider&lt;/a&gt;. Great news, the login process is now very straight-forward. Only a click is required to login (2 when you first login). Great!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/flevour/~4/SpelNJjc-HY" height="1" width="1"/&gt;</description>
 <comments>http://www.flevour.net/blog/2-weeks-after#comments</comments>
 <category domain="http://www.flevour.net/categories/google">google</category>
 <category domain="http://www.flevour.net/categories/openid">openid</category>
 <category domain="http://www.flevour.net/categories/zoho">zoho</category>
 <pubDate>Thu, 30 Oct 2008 12:01:28 +0000</pubDate>
 <dc:creator>flevour</dc:creator>
 <guid isPermaLink="false">414 at http://www.flevour.net</guid>
<feedburner:origLink>http://www.flevour.net/blog/2-weeks-after</feedburner:origLink></item>
<item>
 <title>The problem with Zoho's sign-in with GoogleAccount</title>
 <link>http://feedproxy.google.com/~r/flevour/~3/i5SsQQ8Y7o8/problem-zohos-sign-googleaccount</link>
 <description>&lt;p&gt;&lt;img src="http://flevour.net/files/zohomail.gif" alt="" width="132" height="27" /&gt; A couple of days ago I wrote a positive (dare I say, enthusiastic) &lt;a href="http://flevour.net/blog/zoho-mail-launched-out-private-beta-and-other-great-user-experiences"&gt;review of the account creation process at Zoho Mail&lt;/a&gt;. Using Google Account you get to sign-up in a super-fast way, but there is &amp;#8220;a twist at the end&amp;#8221; (citation).&lt;/p&gt;
&lt;p&gt;Infact, the next time you want to login you either need to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;sign-in with Google Account again. This will require you to grant access to Zoho again and again each time you login, making the identification a 3 steps process;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;sign-in with Zoho username (which you have selected when creating your email) and a password (which you don&amp;#8217;t have).&lt;/li&gt;
&lt;/ul&gt;
&lt;/p&gt;
&lt;p&gt;As you can&amp;#8217;t sign-in with a password you don&amp;#8217;t have, you either need to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;go through the &lt;em&gt;password reset&lt;/em&gt; procedure, which you can find in the Zoho Account page. A password reset link will be emailed to you so that you can get to choose a new password. Note that you need to be logged in through Google Account (the only way to sign in you have at the moment), then go to Zoho Account and then choose a very counter-intuitive option (resetting a password you never chose) to start the whole process;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;go through the &lt;em&gt;forgot password&lt;/em&gt; procedure, which asks you for an &amp;#8220;Email ID&amp;#8221; without further clarifications: is it your Zoho Email ID or the one you used to sign-up? Obviously it&amp;#8217;s the latter, but nonetheless&lt;/li&gt;
&lt;/ul&gt;
&lt;/p&gt;
&lt;p&gt;We, as web developers, should put more and more attention to improve the experience of our users, expecially those who dare to try new (or easier) identification methods. Yesterday &lt;a href="http://developer.yahoo.net/blog/archives/2008/10/open_id_research.html"&gt;Yahoo published a research on the introduction of OpenID to its users&lt;/a&gt; and it contains no good news.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/flevour/~4/i5SsQQ8Y7o8" height="1" width="1"/&gt;</description>
 <comments>http://www.flevour.net/blog/problem-zohos-sign-googleaccount#comments</comments>
 <category domain="http://www.flevour.net/categories/google-account">google account</category>
 <category domain="http://www.flevour.net/categories/signin">signin</category>
 <category domain="http://www.flevour.net/categories/user-experience">user experience</category>
 <category domain="http://www.flevour.net/categories/zoho-mail">zoho mail</category>
 <pubDate>Wed, 15 Oct 2008 10:05:02 +0000</pubDate>
 <dc:creator>flevour</dc:creator>
 <guid isPermaLink="false">413 at http://www.flevour.net</guid>
<feedburner:origLink>http://www.flevour.net/blog/problem-zohos-sign-googleaccount</feedburner:origLink></item>
<item>
 <title>Today is blog action day</title>
 <link>http://feedproxy.google.com/~r/flevour/~3/X7WB26DHNJM/today-blog-action-day</link>
 <description>&lt;p&gt;Today is October 15th, aka &lt;a href="http://blogactionday.org"&gt;Blog Action Day 2008&lt;/a&gt;&lt;br /&gt;
As I&amp;#8217;m busy writing my thesis, I haven&amp;#8217;t had the time to write anything deep here. See the &lt;a href="http://blogactionday.org/live_updates/featured_posts"&gt;Featured Posts section&lt;/a&gt; for some insightful articles.&lt;br /&gt;
Have a nice day. You too.&lt;/p&gt;
&lt;p&gt;&lt;script src="http://blogactionday.org/js/2512a43d8ac8bbc353d55f74cace82249f0c3494"&gt;&lt;/script&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/flevour/~4/X7WB26DHNJM" height="1" width="1"/&gt;</description>
 <comments>http://www.flevour.net/blog/today-blog-action-day#comments</comments>
 <category domain="http://www.flevour.net/categories/blog-action-day">blog action day</category>
 <category domain="http://www.flevour.net/categories/poverty">poverty</category>
 <pubDate>Wed, 15 Oct 2008 07:04:41 +0000</pubDate>
 <dc:creator>flevour</dc:creator>
 <guid isPermaLink="false">412 at http://www.flevour.net</guid>
<feedburner:origLink>http://www.flevour.net/blog/today-blog-action-day</feedburner:origLink></item>
<item>
 <title>Investigating Zoho Mail account autocomplete feature</title>
 <link>http://feedproxy.google.com/~r/flevour/~3/rpcAuRSvJ_k/investigating-zoho-mail-account-autocomplete-feature</link>
 <description>&lt;p&gt;&lt;img src="http://flevour.net/files/zohomail.gif" alt="" width="132" height="27" /&gt; I had a quick inspiration to check out the code Zoho Mail uses to implement the autocomplete feature that &lt;a href="http://flevour.net/blog/zoho-mail-launched-out-private-beta-and-other-great-user-experiences"&gt;amazed me&lt;/a&gt;. This allowed me to get familiar with Firebug Javascript debugger.&lt;br /&gt;
On &lt;em&gt;Settings-&gt;Common Settings-&gt;Mail accounts&lt;/em&gt; the field &amp;#8220;Email ID&amp;#8221; calls &amp;#8220;confAccount(this)&amp;#8221; when an /onblur/ event is triggered on it.&lt;br /&gt;
This little function checks whether the email is a valid GMail, Zenbe or Aol address and configures the SMTP/POP3 server addresses and ports automatically.&lt;br /&gt;
Have a closer look to the function loading the &lt;a href="http://mail.zoho.com/mail/javascript/zmSet.js"&gt;JS file&lt;/a&gt; and searching for &amp;#8220;confAccount&amp;#8221;.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/flevour/~4/rpcAuRSvJ_k" height="1" width="1"/&gt;</description>
 <comments>http://www.flevour.net/blog/investigating-zoho-mail-account-autocomplete-feature#comments</comments>
 <category domain="http://www.flevour.net/categories/analysis">analysis</category>
 <category domain="http://www.flevour.net/categories/code">code</category>
 <category domain="http://www.flevour.net/categories/javascript">javascript</category>
 <category domain="http://www.flevour.net/categories/zoho-mail">zoho mail</category>
 <pubDate>Sat, 11 Oct 2008 22:33:09 +0000</pubDate>
 <dc:creator>flevour</dc:creator>
 <guid isPermaLink="false">411 at http://www.flevour.net</guid>
<feedburner:origLink>http://www.flevour.net/blog/investigating-zoho-mail-account-autocomplete-feature</feedburner:origLink></item>
</channel>
</rss>
