<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>GigaOM &#187; IMAP</title>
	<atom:link href="http://gigaom.com/tag/imap/feed/" rel="self" type="application/rss+xml" />
	<link>http://gigaom.com</link>
	<description></description>
	<lastBuildDate>Tue, 21 May 2013 13:56:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gigaom.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/0db8f6557d022075dbbf010c54d46d93?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>GigaOM &#187; IMAP</title>
		<link>http://gigaom.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gigaom.com/osd.xml" title="GigaOM" />
	<atom:link rel='hub' href='http://gigaom.com/?pushpress=hub'/>
		<item>
		<title>IMAP4 : The mobile application protocol we didn’t know we had</title>
		<link>http://gigaom.com/2011/06/05/imap4-the-mobile-application-protocol-we-didn%e2%80%99t-know-we-had/</link>
		<comments>http://gigaom.com/2011/06/05/imap4-the-mobile-application-protocol-we-didn%e2%80%99t-know-we-had/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 19:03:46 +0000</pubDate>
		<dc:creator>Brian McConnell</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IMAP]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=354248</guid>
		<description><![CDATA[IMAP4 is a little discussed but widely used protocol for accessing and managing email. As it turns out, IMAP is also a great way to deliver information to mobile applications, by repurposing mobile IMAP clients for use in a wide range of mobile applications. <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=354248&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://gigaom2.files.wordpress.com/2011/03/cellphoneheapthumb.jpg"><img src="http://gigaom2.files.wordpress.com/2011/03/cellphoneheapthumb.jpg?w=708" alt="" title="used old GSM Cell phones"    class="alignleft size-full wp-image-304731" /></a> IMAP4 (Internet Mail Access Protocol) is a little discussed but widely used protocol for accessing and managing email. As it turns out, IMAP is also a great way to deliver information to mobile applications, by repurposing mobile IMAP clients for use in a wide range of mobile applications. While this is a bit of a hack, since we’re using a protocol designed for one purpose for an unintended use, it solves several problems that plague mobile applications.</p>
<p>IMAP is designed to do one thing and do it well &#8212; deliver email despite the intermittent connections that were prevalent when it was developed. For that reason is baked into nearly every email client and mobile device. Email delivery is also one of the most thoroughly tested services on mobile devices, and is designed to operate as an always on, background service.</p>
<p>IMAP was designed at a time when mobile Internet apps did not exist, and when most Internet connections were dialup connections. As with mobile apps running on cellular networks, email clients of the time needed to make best use of the intermittent connection they had. Without going into too much detail, IMAP splits accessing an email account into several tasks:</p>
<ol>
<li> Logging in and retrieving a list of folders (inbox, outbox, etc) </li>
<li> Retrieving a summary of messages within a folder, but not the messages themselves </li>
<li> Retrieving an individual message and/or attachments </li>
</ol>
<p>This approach enables the mail client to quickly find out what’s in a mailbox, and then retrieve the messages needed, without retransmitting information that is not needed or that has been sent before. This maps nicely to what many mobile apps do, and can be optimized in the same way.</p>
<p><a href="http://gigaom2.files.wordpress.com/2007/07/wirelessemail21.jpg"><img src="http://gigaom2.files.wordpress.com/2007/07/wirelessemail21.jpg?w=300&#038;h=105" alt="" title="Americans: Addicted to Mobile Email" width="300" height="105"  class="alignright size-medium wp-image-141702" /></a>In this paradigm, an information service presents an IMAP interface that email clients can connect to. Let’s use an upcoming event notification service as an example, and walk through the steps an IMAP client would use to display continuously updated event information tied to your current location. The client would go through the following steps:</p>
<ol>
<li>Login with the user’s credentials, request a list of folders. The server replies with a list of folders such as “San Francisco : Mission”, “San Francisco : Civic Center”, and so on.</li>
<li>The client subscribes to some of all of these folders, and fetches a list of message headers. The message headers contain basic information about upcoming events. IMAP’s server side search function will also be a useful way to fetch customized result sets.</li>
<li> The client fetches message bodies and attachments in the background, or when the<br />
user opens an item, depending on how the email client is configured.</li>
<li> When the user opens a message, he or she sees an HTML formatted email, with links,<br />
attachments, etc all preloaded, so there is usually no visible network delay because most of the message was preloaded in the background.</li>
</ol>
<h2> Why give IMAP a try? </h2>
<p>Of course, you can do all of this with a native application that calls a web service in the background and selectively loads and caches information ahead of time. The problem is that it requires much more work on the part of the developer, and on some mobile platforms, background processes are tricky to manage (e.g. they’ll be shut down by the mobile OS to conserve memory or battery power), whereas using IMAP, one can simply subscribe to additional IMAP email account for the services the user is following. Most mobile email clients also notify the user of new or unread messages, and provide a simple notification mechanism, another bonus. Meanwhile, the service provider can track which users have read which messages, news items, etc. </p>
<p>Another advantage  of using IMAP as a transport protocol, and using a built in IMAP agent on the phone, is it is already there, and is one of the core services on mobile devices. Your web app can behave like just another IMAP inbox the device can subscribe to, so it will be synced along with other mail accounts. Likewise, your users can subscribe using their phone’s built in mail client, or you can “skin” an existing client for look and feel, without forcing your developers to build the whole thing from scratch.</p>
<h2> The missing piece. </h2>
<p>Most of the pieces needed to do this are already available. The protocol is widely used and is built into nearly every mail app in some form. Only one piece is not widely available, an IMAP2HTTP utility that presents an IMAP interface to mobile apps, while communicating with an upstream web service via RESTful HTTP queries that are easy for web app developers to deal with. </p>
<p>Jesse Vincent’s Perl library, <a href="http://search.cpan.org/~alexmv/Net-IMAP-Server-1.29/">NET::IMAP::SERVER</a>, enables web apps to serve data as IMAP mailboxes. In addition to libraries for popular programming languages, there is an opportunity for mobile development tools vendors, such as <a href="http://www.appcelerator.com/">Titanium</a> and <a href="http://www.phonegap.com/home/">PhoneGap</a> to host IMAP-to-HTTP gateways that provide a solution for web app developers, much like the <a href="http://www.smtp2web.com/">SMTP2WEB</a> service enables web apps to process email. (Hint: it would also be nice if Google provided a similar handler for <a href="http://appengine.google.com">App Engine</a>, much as it has done for inbound email processing and XMPP/Jabber messaging). </p>
<p>IMAP will primarily be useful for applications that continuously retrieve information, such as news readers, background search tools, and similar applications that can present information as a set of items in folders. It is a bit of a hack, but it’s a useful hack that can improve the user experience for many mobile applications. It won’t replace native apps, but will provide developers with a fast and inexpensive way to provide mobile access, and then make a decision about whether to invest in native apps further on in the product development cycle.</p>
<p><em> Brian McConnell is an entrepreneur, and the founder of the Worldwide Lexicon, an open source translation platform. Prior to founding WWL, he founded several telecom and mobile startups (where the balkanization of the mobile software industry was one of his biggest pet peeves). </em></p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=354248&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=364324"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=364324" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=354248+imap4-the-mobile-application-protocol-we-didn%25e2%2580%2599t-know-we-had&utm_content=shigginbotham">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/02/facebooks-ipo-filing-the-opening-shot-heard-round-the-world/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=354248+imap4-the-mobile-application-protocol-we-didn%25e2%2580%2599t-know-we-had&utm_content=shigginbotham">Facebook&#8217;s IPO filing: ideas and implications</a></li><li><a href="http://pro.gigaom.com/2012/02/ces-2012-a-recap-and-analysis/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=354248+imap4-the-mobile-application-protocol-we-didn%25e2%2580%2599t-know-we-had&utm_content=shigginbotham">CES 2012: a recap and analysis</a></li><li><a href="http://pro.gigaom.com/2011/11/connected-world-the-consumer-technology-revolution/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=354248+imap4-the-mobile-application-protocol-we-didn%25e2%2580%2599t-know-we-had&utm_content=shigginbotham">Connected world: the consumer technology revolution</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2011/06/05/imap4-the-mobile-application-protocol-we-didn%e2%80%99t-know-we-had/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2011/06/cellphoneheapthumb-1.jpg?w=150" />
		<media:content url="http://gigaom2.files.wordpress.com/2011/06/cellphoneheapthumb-1.jpg?w=150" medium="image">
			<media:title type="html">used old GSM Cell phones</media:title>
		</media:content>

		<media:content url="http://1.gravatar.com/avatar/aee37121e18bf76bb9fee4494bab237a?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">shigginbotham</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2011/03/cellphoneheapthumb.jpg" medium="image">
			<media:title type="html">used old GSM Cell phones</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2007/07/wirelessemail21.jpg?w=300" medium="image">
			<media:title type="html">Americans: Addicted to Mobile Email</media:title>
		</media:content>
	</item>
		<item>
		<title>Simplifying Email</title>
		<link>http://gigaom.com/2009/06/18/simplifying-email/</link>
		<comments>http://gigaom.com/2009/06/18/simplifying-email/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 18:00:18 +0000</pubDate>
		<dc:creator>Charles Hamilton</dc:creator>
				<category><![CDATA[How Do You Work?]]></category>
		<category><![CDATA[NYT Enterprise]]></category>
		<category><![CDATA[SYN Feature Enterprise]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[1password]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[filesharehq]]></category>
		<category><![CDATA[fluxiom]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[google apps]]></category>
		<category><![CDATA[Google Gears]]></category>
		<category><![CDATA[IMAP]]></category>
		<category><![CDATA[keepass]]></category>
		<category><![CDATA[lastpass]]></category>
		<category><![CDATA[Opera Unite]]></category>
		<category><![CDATA[pop]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[splashid]]></category>
		<category><![CDATA[Yahoo]]></category>
		<category><![CDATA[zoho]]></category>

		<guid isPermaLink="false">http://webworkerdaily.com/?p=14440</guid>
		<description><![CDATA[As web workers, we are often asked to help friends and relatives fix computer problems. For me, the majority of these problems seem to be related to email. It&#8217;s ironic, as email is now less popular than social networks. So why is email such a hassle? [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=14440&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img  title="atsign" src="http:///2009/06/atsign.jpg?w=150" alt="atsign" width="150" height="150" class=" alignleft" />As web workers, we are often asked to help friends and relatives fix computer problems. For me, the majority of these problems seem to be related to email. It&#8217;s ironic, as email is now <a href="http://www.bizjournals.com/seattle/stories/2009/03/09/daily12.html">less popular than social networks</a>.</p>
<p>So why is email such a hassle?</p>
<ul>
<li><strong>It&#8217;s more than 30 years old.</strong> Email has come a long way, but its underlying protocols haven&#8217;t changed much since the 1970s.</li>
<li><strong>It&#8217;s really three different systems.</strong> Sending (SMTP) and receiving (POP or IMAP) are totally separate functions, and are often handled on different servers. That&#8217;s why I often hear comments like &#8220;I can receive, but I can&#8217;t send&#8221; from clients.</li>
<li><strong>It&#8217;s being used for a lot of things it was never designed to do</strong>, like send images and attachments, highly formatted messages, signatures and calendar entries.</li>
<li><strong>It&#8217;s been overrun by spam</strong>, and even well-designed spam filters aren&#8217;t perfect, and cause unwanted side effects, like messages that get misidentified as spam, or just go away.</li>
<li><strong>Email software is too complex.</strong> These programs that were originally built for offline use; that is, they were set up so that users could read and write messages without being connected to the internet. Sending and receiving would happen in batches. That made sense when internet connections were slow, expensive and charged by the minute. Now that most people have always-on connections like cable or DSL, that process is less necessary. Desktop email client software is a pain to set up and use; as someone who helps many people with email, Outlook is the bane of my existence.</li>
<li><strong>Many of us connect to the Internet in more than one place</strong> &#8212; at work, at home, and on cell phones. It can be very frustrating to realize that we&#8217;ve left the message we needed to reply to at the office.</li>
<li><strong>Many of us have more than one email address.</strong> I try to keep my work and personal email separate, plus I have a series of email addresses that I use when registering on websites that might try to send spam. And I have several email addresses that were given to me, such as the ones that are automatically created when signing up for instant-messaging services like Yahoo, AIM and Windows Live/MSN.</li>
</ul>
<p>What can be done to overcome these problems? Here are some tips that might help you and your clients and friends be more productive.<span id="more-14440"></span></p>
<ul>
<li><strong>Get your email on the web.</strong> Dump your desktop email software, and switch to Gmail/Google Apps or another online provider like Yahoo. If your Internet connection is unreliable, <a href="http://gears.google.com/">Google Gears</a> lets you work offline.</li>
<li><strong>Create a master inbox.</strong> If you have multiple email accounts, you can set up forwarding to <a href="http://gmailblog.blogspot.com/2009/06/tip-check-and-reply-from-multiple-email.html">receive and send email from one place</a>.</li>
<li><strong>Use IMAP.</strong> If you need mobile access to your email, set up your phone software to use <a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;answer=75725">IMAP</a>, not POP. By using IMAP, your messages will sync automatically in all of the places you check your mail.</li>
<li><strong>Use social networks. </strong>It seems like all of my friends under 30 don&#8217;t do email anymore, but they&#8217;re on Facebook a lot.</li>
<li><strong>Use instant messaging.</strong> For short, simple conversations, IM can be very efficient. In a few seconds, you can schedule a meeting or a lunch date. It&#8217;s much faster than email or phone conversations.</li>
<li><strong>Use file-sharing services for sending large documents.</strong> There are <a href="http://webworkerdaily.com/2008/05/29/the-email-attachment-problem-and-how-were-not-solving-it/">lots of such services</a>, and new ones are popping up all the time, including <a href="http://webworkerdaily.com/2009/06/09/fluxiom-asset-management-for-creative-teams/">Fluxiom</a> and <a href="http://webworkerdaily.com/2009/06/02/filesharehq-now-offering-paid-accounts-and-branding/">FileShareHQ</a>. And <a href="http://webworkerdaily.com/2008/09/11/dropbox-opens-to-the-public/">Dropbox</a> and the new <a href="http://gigaom.com/2009/06/16/opera-unite-hopes-old-idea-entices-new-developers/">Opera Unite</a> service allow you to share files directly from your computer.</li>
<li><strong>Organize your electronic communications.</strong> <a href="http://webworkerdaily.com/2009/04/27/how-to-deal-with-low-quality-messages/">Celine wrote about this</a> recently, and <a href="http://blog.chcs.com/index.cfm/2009/2/16/Managing-Electronic-Connections-Without-Spending-All-Day-on-the-Computer">I&#8217;ve talked about it</a>, too.</li>
</ul>
<p>Oh, and one more:</p>
<ul>
<li><strong>Remember your passwords.</strong> This is obvious to you and me, but I&#8217;ve heard &#8220;I didn&#8217;t know I had a password&#8221; way too often. Online services like <a href="http://lastpass.com/">LastPass</a>, or programs like <a href="http://jkontherun.com/2009/03/04/agile-adds-safari-4-support-to-1password/">1Password</a>, <a href="http://www.splashdata.com/splashid/index.asp">SplashID</a>, or the free KeePass (<a href="http://keepass.info/">Windows and phones</a>; also available for <a href="http://www.keepassx.org/">Mac and Linux</a>) can be lifesavers.</li>
</ul>
<p><em>How do you keep email simple?</em></p>
<p><span style="font-size: xx-small;">Image by stock.xchng user <a href="http://www.sxc.hu/profile/chris27">chris27</a></span>.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=14440&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=352593"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=352593" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=14440+simplifying-email&utm_content=hamiltonc">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/01/newnet-q4-platform-mania-and-social-commerce-shakeout/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=14440+simplifying-email&utm_content=hamiltonc">NewNet Q4: Platform mania and social commerce shakeout</a></li><li><a href="http://pro.gigaom.com/2012/01/newnet-q4-platform-mania-and-social-commerce-shakeout/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=14440+simplifying-email&utm_content=hamiltonc">NewNet Q4: Platform mania and social commerce shakeout</a></li><li><a href="http://pro.gigaom.com/2010/10/what-enterprise-software-vendors-could-learn-from-the-consumer-space/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=14440+simplifying-email&utm_content=hamiltonc">What Enterprise Software Vendors Could Learn from the Consumer Space</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2009/06/18/simplifying-email/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/a6fb4c6db876cbe29b4780d195449c9f?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">hamiltonc</media:title>
		</media:content>

		<media:content url="http:///2009/06/atsign.jpg?w=150" medium="image">
			<media:title type="html">atsign</media:title>
		</media:content>
	</item>
		<item>
		<title>Zoho Mail Goes Offline &amp; Mobile</title>
		<link>http://gigaom.com/2008/10/11/zoho-mail-offline-iphone/</link>
		<comments>http://gigaom.com/2008/10/11/zoho-mail-offline-iphone/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 14:17:05 +0000</pubDate>
		<dc:creator>Imran Ali</dc:creator>
				<category><![CDATA[Software Apps]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Google Gears]]></category>
		<category><![CDATA[IMAP]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[zoho]]></category>

		<guid isPermaLink="false">http://webworkerdaily.com/?p=4264</guid>
		<description><![CDATA[As Google deepened its support for offline access via IMAP this week, Zoho, its closest competitor in the web office space, was publicly unveiling its own support for offline and access, ironically using Google&#8217;s own Gears platform. Curiously Zoho decided that to bring users&#8217; mailboxes offline, [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=4264&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>As Google <a href="http://webworkerdaily.com/2008/10/10/google-labs-gives-gmail-an-imap-functionality-boost/">deepened its support for offline access via IMAP</a> this week, <a href="http://www.zoho.com/"><em>Zoho</em></a>, its closest competitor in the web office space, was publicly unveiling <a href="http://writer.zoho.com/corporate/mailzoho.com/raju/Zoho-Mail-Offline">its own support for offline and access</a>, ironically using Google&#8217;s own <a href="http://gears.google.com/">Gears</a> platform.</p>
<p>Curiously Zoho decided that to bring users&#8217; mailboxes offline, Gears was a better technological platform for offline access than the IMAP protocol; though we&#8217;re assured IMAP <em>is</em> coming.</p>
<p><img  style="border: 0pt none; margin: 5px;" title="Gears for Zoho Mail" src="http://writer.zoho.com/ImageDisplay.im?name=51635000000328001/1223623040468_Picture%205.png&amp;accId=51635000000002007" alt="" width="263" height="158" class=" alignleft" />Regardless, the offline features seem pretty comprehensive despite currently being restricted to Gears for Firefox and Internet Explorer and with most online features being available offline &#8211; messages, images &amp; attachments are optionally available and a clever connectivity detection feature automatically determines whether a network is visible, flipping between offline and online modes as appropriate, with offline messages queued for later deliver when connectivity becomes available.</p>
<p>A Gears configuration dialog allows users to select the number of messages to download initially, how many Sent Items should be stored for offline access.</p>
<p>Finally, though Zoho is pitching mobile access alongside offline support, in reality Zoho Mail is currently only optimised for the iPhone.</p>
<p>Though the offline support appears to work well enough &#8211; as do other Gears-enabled services such as Google Reader &#8211; mainstream offline access seems a little too fragmented for comfort.</p>
<p><span id="more-4264"></span></p>
<p>Where standards such as IMAP are pretty much guaranteed to work across multiple platforms, clients and services, supporting entire classes of application, such as email. <a href="http://www.adobe.com/products/air/">AIR</a>, Gears, <a href="http://labs.mozilla.com/2007/10/prism/">Prism</a> and <a href="http://silverlight.net/">Silverlight</a> all seem to be mechanisms for locking users into a vendor platform, forcing developers to have to divide their efforts in supporting them.</p>
<p>As an industry, we should be thinking more responsibly about <a href="http://webworkerdaily.com/2008/04/25/data-portability/">data portability through standards</a>&#8230;a complex endeavor, but in the longer term much more viable and stable than the collection off offline platforms and browser combinations we see today.</p>
<p>Read more about Zoho&#8217;s offline and iPhone support <a href="http://writer.zoho.com/corporate/mailzoho.com/raju/Zoho-Mail-Offline">here&#8230;</a></p>
<p>(Incidentally, I&#8217;ll be meeting Zoho&#8217;s evangelist, Raju Vegesna, later this month at O&#8217;Reilly&#8217;s <em><a href="http://europe.web2expo.com/">Web 2.0 Expo Europe</a></em>. If you have questions for Raju, please drop me a message!)</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=4264&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=564001"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=564001" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=4264+zoho-mail-offline-iphone&utm_content=imranalix">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2009/11/threats-loom-large-for-microsofts-email-and-collaboration-platforms/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=4264+zoho-mail-offline-iphone&utm_content=imranalix">Threats Loom Large for Microsoft&#8217;s Email and Collaboration Platforms</a></li><li><a href="http://pro.gigaom.com/2012/05/the-discovery-democracy-how-social-discovery-is-transforming-entertainment/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=4264+zoho-mail-offline-iphone&utm_content=imranalix">How social discovery is transforming entertainment</a></li><li><a href="http://pro.gigaom.com/2012/02/practical-business-content-collaboration-personal-tools-show-the-way/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=4264+zoho-mail-offline-iphone&utm_content=imranalix">Personal tools lead to practical business</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2008/10/11/zoho-mail-offline-iphone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0cede0ba108327825a3cddbbdb6ba5c1?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Imran</media:title>
		</media:content>

		<media:content url="http://writer.zoho.com/ImageDisplay.im?name=51635000000328001/1223623040468_Picture%205.png&#38;accId=51635000000002007" medium="image">
			<media:title type="html">Gears for Zoho Mail</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Labs Gives Gmail an IMAP Functionality Boost</title>
		<link>http://gigaom.com/2008/10/10/google-labs-gives-gmail-an-imap-functionality-boost/</link>
		<comments>http://gigaom.com/2008/10/10/google-labs-gives-gmail-an-imap-functionality-boost/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 18:34:34 +0000</pubDate>
		<dc:creator>Kevin C. Tofel</dc:creator>
				<category><![CDATA[Software Apps]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[IMAP]]></category>
		<category><![CDATA[organization]]></category>

		<guid isPermaLink="false">http://webworkerdaily.com/?p=4247</guid>
		<description><![CDATA[Gmail, a staple of our work environment, becomes a little more like &#8220;big-boy&#8221; IMAP courtesy of Google Labs. Hit the Labs button in your Gmail account and you&#8217;ll see a new &#8220;Advanced IMAP Controls&#8221; function. Enable it and you can begin to take advantage of the [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=4247&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://gigaom2.files.wordpress.com/2008/10/gmail-labs.jpg"><img  title="gmail-labs" src="http:///2008/10/gmail-labs.jpg?w=300" alt="" width="300" height="99" class=" alignleft" /></a>Gmail, a staple of our work environment, <a href="http://gmailblog.blogspot.com/2008/10/new-in-labs-advanced-imap-controls.html" target="_self">becomes a little more like &#8220;big-boy&#8221; IMAP courtesy of Google Labs</a>. Hit the Labs button in your Gmail account and you&#8217;ll see a new &#8220;Advanced IMAP Controls&#8221; function. Enable it and you can begin to take advantage of the following new features:</p>
<ul>
<li>Auto-Expunge: it sounds like a dirty word, but expunging is a good thing for data that&#8217;s no longer needed. Up to now, Gmail would simply mark items for deletion in clients and not immediately delete them. Enabling the Auto-Expunge feature kicks those deleted messages to the curb and gets them out of your e-mail system.</li>
<li>Delete Forever: one the benefits of Gmail is that like an elephant, it never forgets. All of your mail is archived in the Gmail / All Mail label or folder unless you manually clean it out. This often results in wasted space, messages in multiple locations and more bandwidth required for mail synching. You can now expunge mail forever by setting Gmail to simply move it to Trash upon deletion.</li>
<li>Selective Syncing: you can now pick and choose which labels or folders you want synchronized between Gmail and your web or desktop client. This comes in handy for archived folders that don&#8217;t change much. For example, I still want my &#8220;CES 2008&#8243; folder data, but I don&#8217;t need to see it every waking minute of the day. I&#8217;ve disabled that one for now because I&#8217;ve got an active &#8220;CES 2009&#8243; folder for planning purposes.</li>
</ul>
<p>Each of these features can be useful, but for me the ability to say good-bye to the All Mail label usage is key. I often work remotely over wireless broadband connections where there&#8217;s a 5GB monthly data cap and <a href="http://www.jkontherun.com/2008/10/coffee-break--.html" target="_self">1.5-hours of work already uses near 45MB</a>. Why should I be synching the near 53,000 e-mails in my All Mail folder when I&#8217;m already managing the ones I need with custom labels?</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=4247&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=314967"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=314967" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=4247+google-labs-gives-gmail-an-imap-functionality-boost&utm_content=kevintofel">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2010/11/social-inbox-vs-the-future-of-email/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=4247+google-labs-gives-gmail-an-imap-functionality-boost&utm_content=kevintofel">Social Inbox vs. The Future of Email</a></li><li><a href="http://pro.gigaom.com/2013/01/the-2013-task-management-tools-market/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=4247+google-labs-gives-gmail-an-imap-functionality-boost&utm_content=kevintofel">The 2013 task management tools market</a></li><li><a href="http://pro.gigaom.com/2012/05/the-discovery-democracy-how-social-discovery-is-transforming-entertainment/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=4247+google-labs-gives-gmail-an-imap-functionality-boost&utm_content=kevintofel">How social discovery is transforming entertainment</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2008/10/10/google-labs-gives-gmail-an-imap-functionality-boost/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cbb45abac59965c2626e40155358d1b?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Kevin C. Tofel</media:title>
		</media:content>

		<media:content url="http:///2008/10/gmail-labs.jpg?w=300" medium="image">
			<media:title type="html">gmail-labs</media:title>
		</media:content>
	</item>
		<item>
		<title>TV Tops, But PC Video Watching Grows</title>
		<link>http://gigaom.com/2008/06/05/tv-tops-but-pc-video-watching-grows/</link>
		<comments>http://gigaom.com/2008/06/05/tv-tops-but-pc-video-watching-grows/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 12:55:09 +0000</pubDate>
		<dc:creator>Chris Albrecht</dc:creator>
				<category><![CDATA[Software Apps]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Google Gears]]></category>
		<category><![CDATA[IMAP]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[oldteevee]]></category>
		<category><![CDATA[online video]]></category>
		<category><![CDATA[Roku]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[zoho]]></category>

		<guid isPermaLink="false">http://newteevee.com/?p=4264</guid>
		<description><![CDATA[While oldteevee remains the top video-watching dog for most people, the PC is gaining ground, according to a recent study by Ipsos MediaCT. Ipsos found that, among U.S. video downloaders and streamers, the amount of video consumed on a TV set dropped to 70 percent in [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=211280&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>While oldteevee remains the top video-watching dog for most people, the PC is gaining ground, according to a recent study by <a href="http://www.ipsos-na.com/news/pressrelease.cfm?id=3941">Ipsos MediaCT</a>. Ipsos found that, among U.S. video downloaders and streamers,  the amount of video consumed on a TV set dropped to 70 percent in February 2008 from 75 percent in February 2007.</p>
<table border="0">
<tbody>
<tr>
<td><a href="http://newteevee.files.wordpress.com/2008/06/video_watched_all.jpg"><img  title="video_watched_all" src="http://newteevee.files.wordpress.com/2008/06/video_watched_all.jpg?w=450&#038;h=431" alt="" width="450" height="431" class=" alignleft" /></a></td>
</tr>
</tbody>
</table>
<p>While oldteevee was dropping, video watching on PCs grew to 19 percent in 2008, up from from 11 percent in 2007. According to Ipsos, of the 52 percent of Americans 12 and older who have ever streamed or downloaded video content, roughly one out of every five hours of video content is watched on the PC.</p>
<p><span id="more-211280"></span></p>
<p>And the rise in PC watching is across all age groups.</p>
<table border="0">
<tbody>
<tr>
<td><a href="http://newteevee.files.wordpress.com/2008/06/video_watched_age_group.jpg"><img  title="video_watched_age_group" src="http://newteevee.files.wordpress.com/2008/06/video_watched_age_group.jpg?w=439&#038;h=534" alt="" width="439" height="534" class=" alignleft" /></a></td>
</tr>
</tbody>
</table>
<p>The study also found that video watching is still a home-based experience for most. Teenagers had the highest use of a portable media device to consume video content, while the mobile phone continues to be the red-headed step-child of the video universe, nabbing just one percent of consumption (but that trend should change as those two devices continue to merge).</p>
<p>Because of this home-based watching Ipsos sees an opportunity for set top boxes like Apple TV and the Netflix Roku, which are trying to bridge the web to PC gap.</p>
<p><em>Hat tip to <a href="http://www.emarketer.com/Article.aspx?id=1006350">eMarketer</a>.</em></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gigaom2.wordpress.com/211280/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gigaom2.wordpress.com/211280/" /> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=211280&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=974371"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=974371" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=video&utm_medium=editorial&utm_campaign=auto3&utm_term=211280+tv-tops-but-pc-video-watching-grows&utm_content=calbrecht">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/07/connected-consumer-q2-digital-music-meets-the-cloud-e-book-growth-explodes/?utm_source=video&utm_medium=editorial&utm_campaign=auto3&utm_term=211280+tv-tops-but-pc-video-watching-grows&utm_content=calbrecht">Connected Consumer Q2: Digital music meets the cloud; e-book growth explodes</a></li><li><a href="http://pro.gigaom.com/2011/01/5-connected-consumer-companies-to-watch-in-2011/?utm_source=video&utm_medium=editorial&utm_campaign=auto3&utm_term=211280+tv-tops-but-pc-video-watching-grows&utm_content=calbrecht">5 Connected Consumer Companies to Watch in 2011</a></li><li><a href="http://pro.gigaom.com/2010/11/the-future-of-tv-can-bet-on-apps-everywhere/?utm_source=video&utm_medium=editorial&utm_campaign=auto3&utm_term=211280+tv-tops-but-pc-video-watching-grows&utm_content=calbrecht">The Future of TV Can Bet on &#8220;Apps Everywhere&#8221;</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2008/06/05/tv-tops-but-pc-video-watching-grows/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/60c7c37000ea6c9d210b7b1992b607ca?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Chris Albrecht</media:title>
		</media:content>

		<media:content url="http://newteevee.files.wordpress.com/2008/06/video_watched_all.jpg" medium="image">
			<media:title type="html">video_watched_all</media:title>
		</media:content>

		<media:content url="http://newteevee.files.wordpress.com/2008/06/video_watched_age_group.jpg" medium="image">
			<media:title type="html">video_watched_age_group</media:title>
		</media:content>
	</item>
		<item>
		<title>Jailbreaking Hotmail</title>
		<link>http://gigaom.com/2008/04/26/jailbreaking-hotmail/</link>
		<comments>http://gigaom.com/2008/04/26/jailbreaking-hotmail/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 17:00:10 +0000</pubDate>
		<dc:creator>Imran Ali</dc:creator>
				<category><![CDATA[Software Apps]]></category>
		<category><![CDATA[AOL]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Hotmail]]></category>
		<category><![CDATA[IMAP]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[POP3]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://webworkerdaily.com/?p=2202</guid>
		<description><![CDATA[With Microsoft&#8217;s announcement this week that Outlook and Outlook Express will no longer support desktop access to Hotmail accounts raises some interesting questions on data portability. After 30th June, Microsoft&#8217;s Windows Live Mail application will be the only means by which desktop and offline access to [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=2202&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://gigaom2.files.wordpress.com/2008/04/izymailarchitecture.gif"><img  style="border: 0pt none; margin: 5px; float: left;" title="IzyMail Architecture" src="http:///2008/04/izymailarchitecture.gif" alt="" width="312" height="92" class=" alignleft" /></a>With Microsoft&#8217;s announcement this week that Outlook and Outlook Express <a href="http://www.betanews.com/article/Outlook_Express_to_finally_end_access_to_Hotmail/1208978215">will no longer support desktop access to Hotmail accounts</a> raises some interesting questions on data portability.</p>
<p>After 30th June, Microsoft&#8217;s <a href="http://get.live.com/wlmail/overview">Windows Live Mail</a> application will be the only means by which desktop and offline access to Hotmail accounts will be supported. This effectively means that a Hotmail user&#8217;s messages continue to be imprisoned within a closed ecosphere of services and applications. OK, smart people won&#8217;t be using Outlook, Outlook Express or Hotmail, but millions do and many have years of messages archived that they may wish to continue accessing outside a web-based interface.</p>
<p>However, there are some unofficial mechanisms that can not only continue to provide offline and desktop access, but also standards-based access into most email clients</p>
<p><span id="more-2202"></span></p>
<ul>
<li><a href="http://www.izymail.com/">IzyMail</a> has close to a decade of experience in delivering webmail gateway services. A one-off payment of $17.95 buys a one-year subscription that equips any Hotmail, Yahoo, AOL and Gmail account with a POP and IMAP &#8216;wrapper&#8217;, so users can send, receive and synchronise messages using most desktop clients, such as <a href="http://www.mozilla.com/en-US/thunderbird/">Thunderbird</a>, <a href="http://www.apple.com/macosx/features/mail.html">Apple Mail</a> and <a href="http://office.microsoft.com/en-us/outlook/default.aspx">Outlook</a></li>
</ul>
<ul>
<li>Thunderbird&#8217;s <a href="http://webmail.mozdev.org/">WebMail extension</a> plays a similar role to IzyMail, though is of course limited only to Thunderbird and doesn&#8217;t necessarily support the various permutations of a service like Hotmail (Live Hotmail, Hotmail Classic etc.) but does support a wider range of services</li>
</ul>
<ul>
<li>Apple Mail fans can use a similar plugin &#8211; <a href="http://sourceforge.net/projects/httpmail-plugin/">HTTP Mail</a> &#8211; to retrieve Hotmail messages and folder.</li>
</ul>
<p>Of these solutions, I&#8217;d recommend IzyMail&#8217;s standards-based approach, freeing the user to employ any both leading mail protocols with the widest range of clients. Indeed, IzyMail saw a huge spike in subscriptions with the launch of the iPhone last Summer as users utilised POP and IMAP webmail gateways to synchronise their email with their phones.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gigaom2.wordpress.com/2202/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gigaom2.wordpress.com/2202/" /> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=2202&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=683423"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=683423" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=2202+jailbreaking-hotmail&utm_content=imranalix">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/05/the-discovery-democracy-how-social-discovery-is-transforming-entertainment/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=2202+jailbreaking-hotmail&utm_content=imranalix">How social discovery is transforming entertainment</a></li><li><a href="http://pro.gigaom.com/2011/10/flash-analysis-the-future-of-yahoo/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=2202+jailbreaking-hotmail&utm_content=imranalix">Flash analysis: the future of Yahoo</a></li><li><a href="http://pro.gigaom.com/2010/11/social-inbox-vs-the-future-of-email/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=2202+jailbreaking-hotmail&utm_content=imranalix">Social Inbox vs. The Future of Email</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2008/04/26/jailbreaking-hotmail/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0cede0ba108327825a3cddbbdb6ba5c1?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Imran</media:title>
		</media:content>

		<media:content url="http:///2008/04/izymailarchitecture.gif" medium="image">
			<media:title type="html">IzyMail Architecture</media:title>
		</media:content>
	</item>
		<item>
		<title>He&#8217;s gettin&#8217; old&#8230; er, I mean: Happy Birthday James!</title>
		<link>http://gigaom.com/2008/02/07/hes-getting-old/</link>
		<comments>http://gigaom.com/2008/02/07/hes-getting-old/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 14:23:25 +0000</pubDate>
		<dc:creator>Kevin C. Tofel</dc:creator>
				<category><![CDATA[personal type stuff]]></category>
		<category><![CDATA[Software Apps]]></category>
		<category><![CDATA[AOL]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Hotmail]]></category>
		<category><![CDATA[IMAP]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[POP3]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://jkontherun.wordpress.com/2008/02/07/hes-getting-old</guid>
		<description><![CDATA[OK, he might not be getting his present on time&#8230; c&#8217;mon Fujitsu, don&#8217;t you have his birthday in Plaxo, Outlook or something?!? Just because there&#8217;s no gift from the FedEx man today doesn&#8217;t mean we can&#8217;t all wish James a Happy Birthday and many more years [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=187113&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://jkontherun.wordpress.com/2008/02/07/hes-getting-old/image-1-for-post-hes-gettin-old-er-i-mean-happy-birthday-james-2008-02-07-132325-2/" title="Image 1 for post He's gettin' old... er, I mean: Happy Birthday James!( 2008-02-07 13:23:25) "><img alt="Jk_icon_100pix" title="Jk_icon_100pix" src="http://jkontherun.files.wordpress.com/2008/02/jk_icon_100pix.jpg?w=100&#038;h=122" width="100" height="122" border="0" style="float:right;margin:0 0 5px 5px;" class=" alignleft" /></a>OK, he might not be getting <a href="http://jkontherun.blogs.com/jkontherun/2008/02/ok-its-a-fujits.html">his present</a> on time&#8230; c&#8217;mon Fujitsu, don&#8217;t you have his birthday in Plaxo, Outlook or something?!? Just because there&#8217;s no gift from the FedEx man today doesn&#8217;t mean we can&#8217;t all wish James a Happy Birthday and many more years of mobile tech blogging. Happy Birthday dude! Oh and I hate to be the spokesperson for the group, but I&#8217;m guessing in another year or two it&#8217;ll be time for a &#8220;more mature&#8221; looking avatar. Just kidding! ;)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gigaom2.wordpress.com/187113/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gigaom2.wordpress.com/187113/" /> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=187113&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=339231"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=339231" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=mobile&utm_medium=editorial&utm_campaign=auto3&utm_term=187113+hes-getting-old&utm_content=kevintofel">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/05/the-discovery-democracy-how-social-discovery-is-transforming-entertainment/?utm_source=mobile&utm_medium=editorial&utm_campaign=auto3&utm_term=187113+hes-getting-old&utm_content=kevintofel">How social discovery is transforming entertainment</a></li><li><a href="http://pro.gigaom.com/2012/04/mobile-q1-the-fight-for-spectrum-goes-to-washington-the-tablet-wars-continue/?utm_source=mobile&utm_medium=editorial&utm_campaign=auto3&utm_term=187113+hes-getting-old&utm_content=kevintofel">A look back at mobile in Q1</a></li><li><a href="http://pro.gigaom.com/2011/10/flash-analysis-the-future-of-yahoo/?utm_source=mobile&utm_medium=editorial&utm_campaign=auto3&utm_term=187113+hes-getting-old&utm_content=kevintofel">Flash analysis: the future of Yahoo</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2008/02/07/hes-getting-old/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cbb45abac59965c2626e40155358d1b?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Kevin C. Tofel</media:title>
		</media:content>

		<media:content url="http://jkontherun.files.wordpress.com/2008/02/jk_icon_100pix.jpg" medium="image">
			<media:title type="html">Jk_icon_100pix</media:title>
		</media:content>
	</item>
		<item>
		<title>Move Networks, Acinion Raise Millions</title>
		<link>http://gigaom.com/2007/10/02/move-networks-acinion-raise-millions/</link>
		<comments>http://gigaom.com/2007/10/02/move-networks-acinion-raise-millions/#comments</comments>
		<pubDate>Tue, 02 Oct 2007 17:39:19 +0000</pubDate>
		<dc:creator>Liz Gannes</dc:creator>
				<category><![CDATA[Money & Power]]></category>
		<category><![CDATA[Software Apps]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[AOL]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Hotmail]]></category>
		<category><![CDATA[IMAP]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[POP3]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://newteevee.com/2007/10/02/move-networks-acinion-raise-millions/</guid>
		<description><![CDATA[Online video infrastructure companies are in high demand these days, and they&#8217;re taking advantage of the opportunity to haul in cash. Dan Primack of Private Equity Hub has the scoop on two deals: Move Networks recently raised $34 million, and Acinion took in $16 million. This [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=207649&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Online video infrastructure companies are in high demand these days, and they&#8217;re taking advantage of the opportunity to haul in cash. Dan Primack of Private Equity Hub has <a href="http://www.pehub.com/wordpress/?p=1541">the scoop</a> on two deals: <a href="http://www.movenetworks.com/">Move Networks</a> recently raised $34 million, and <a href="http://www.acinion.com/">Acinion</a> took in $16 million. </p>
<blockquote><p>
This brings Move’s total venture capitalization up over $45 million from firms like Steamboat Ventures and Hummer Winblad Venture Partners, while Acinion now has raised around $21 million from firms like Globespan Capital Partners, IDG Ventures Boston and Sigma Partners (new to this round).</p></blockquote>
<p>We&#8217;ve been <a href="http://newteevee.com/2007/02/06/move-networks-2/">impressed</a> with American Fork, Utah-based Move, which provides video streaming platforms for customers such as <a href="http://dynamic.abc.go.com/streaming/landing">ABC</a>, <a href="http://video.cwtv.com/">the CW</a>, and <a href="http://www.fox.com/fod/">FOX</a>. </p>
<p><span id="more-207649"></span></p>
<p>However, a Move spokesperson claimed in an email to NewTeeVee that Move would soon be &#8220;the undisputed big money raiser in 2007 in online video space.&#8221; I&#8217;m not sure that&#8217;s a title anyone should be boasting about, but it&#8217;s clearly untrue if Primack is right about the number: <a href="http://newteevee.com/2007/08/30/another-huge-video-funding-dailymotion-raises-34m/">Dailymotion also raised $34 million</a>, <a href="http://newteevee.com/2007/05/09/joost-gets-45-million-in-funding/">Joost has $45 million</a>, <a href="http://newteevee.com/2007/08/09/newco-no-name-and-100-million-in-the-bank/">Hulu has $100 million</a>.</p>
<p>Acton, Mass.-based <a href="http://www.acinion.com/">Acinion</a> is <a href="http://www.lightreading.com/document.asp?doc_id=116568">said</a> to be making servers specialized for high-definition video, though we haven&#8217;t heard of it launching a product or signing any customers yet. </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gigaom2.wordpress.com/207649/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gigaom2.wordpress.com/207649/" /> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=207649&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=934453"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=934453" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=video&utm_medium=editorial&utm_campaign=auto3&utm_term=207649+move-networks-acinion-raise-millions&utm_content=lizg">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/05/the-living-room-reinvented-trends-technologies-and-companies-to-watch/?utm_source=video&utm_medium=editorial&utm_campaign=auto3&utm_term=207649+move-networks-acinion-raise-millions&utm_content=lizg">Who and what to watch in the new era of the living room</a></li><li><a href="http://pro.gigaom.com/2012/05/the-discovery-democracy-how-social-discovery-is-transforming-entertainment/?utm_source=video&utm_medium=editorial&utm_campaign=auto3&utm_term=207649+move-networks-acinion-raise-millions&utm_content=lizg">How social discovery is transforming entertainment</a></li><li><a href="http://pro.gigaom.com/2012/01/connected-consumer-q4-sopa-and-the-future-of-digital-content/?utm_source=video&utm_medium=editorial&utm_campaign=auto3&utm_term=207649+move-networks-acinion-raise-millions&utm_content=lizg">Q4 Wrap-up: SOPA and the future of digital content</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2007/10/02/move-networks-acinion-raise-millions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c4be098f16048f01c8f35042902627a?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Liz Gannes</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Zune getting wireless download feature?</title>
		<link>http://gigaom.com/2007/05/10/microsoft_zune_/</link>
		<comments>http://gigaom.com/2007/05/10/microsoft_zune_/#comments</comments>
		<pubDate>Thu, 10 May 2007 15:50:35 +0000</pubDate>
		<dc:creator>Kevin C. Tofel</dc:creator>
				<category><![CDATA[audio stuff]]></category>
		<category><![CDATA[Software Apps]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[IMAP]]></category>
		<category><![CDATA[organization]]></category>

		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/05/10/microsoft_zune_</guid>
		<description><![CDATA[Back in April, I wrote up three features that I think would make the Zune a more compelling product. If you believe in rumors, some with blurry pics, at least one of the three items might be around the corner.&#160; Engadget has two photos showing a [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=189160&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://jkontherun.wordpress.com/2007/05/10/microsoft_zune_/image-1-for-post-microsoft-zune-getting-wireless-download-feature-2007-05-10-145035-2/" title="Image 1 for post Microsoft Zune getting wireless download feature?( 2007-05-10 14:50:35) "><img width="200" height="176" border="0" src="http://jkontherun.files.wordpress.com/2007/05/zune_trio.jpg?w=200&#038;h=176" title="Zune_trio" alt="Zune_trio" style="float:right;margin:0 0 5px 5px;" class=" alignleft" /></a>Back in April, I wrote up <a href="http://jkontherun.blogs.com/jkontherun/2007/04/zune_version_2_.html">three features that I think would make the Zune a more compelling product</a>. If you believe in rumors, some with blurry pics, at least one of the three items <em>might</em> be around the corner.&nbsp; <a href="http://www.engadget.com/2007/05/10/zune-to-get-wireless-downloads-version-2-hardware-flash-player/">Engadget has two photos</a> showing a beta firmware build for the Zune that provides the ability to download music from open WiFi hotspots. Don&#8217;t know if it&#8217;s true, of course but I still believe the Zune team was forward-thinking by including wireless capability in the Zune. I personally have never turned on my Zune&#8217;s wireless radio because it doesn&#8217;t provide a feature I want. Now, if I could just get that XBox 360 video content on my Zune, I&#8217;d really be a happy camper. ;)</p>
<p>While we&#8217;re on the subject of Zune: what features would you want in &#8216;the perfect handheld audio/video device&#8217;?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gigaom2.wordpress.com/189160/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gigaom2.wordpress.com/189160/" /> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=189160&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=564509"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=564509" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=mobile&utm_medium=editorial&utm_campaign=auto3&utm_term=189160+microsoft_zune_&utm_content=kevintofel">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/02/trends-challenges-and-chances-in-the-rising-mobile-deals-space/?utm_source=mobile&utm_medium=editorial&utm_campaign=auto3&utm_term=189160+microsoft_zune_&utm_content=kevintofel">Opportunities and challenges for mobile deals</a></li><li><a href="http://pro.gigaom.com/2010/11/social-inbox-vs-the-future-of-email/?utm_source=mobile&utm_medium=editorial&utm_campaign=auto3&utm_term=189160+microsoft_zune_&utm_content=kevintofel">Social Inbox vs. The Future of Email</a></li><li><a href="http://pro.gigaom.com/2010/07/html5s-a-game-changer-for-web-apps/?utm_source=mobile&utm_medium=editorial&utm_campaign=auto3&utm_term=189160+microsoft_zune_&utm_content=kevintofel">HTML5&#8217;s a Game-Changer for Web Apps</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2007/05/10/microsoft_zune_/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cbb45abac59965c2626e40155358d1b?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Kevin C. Tofel</media:title>
		</media:content>

		<media:content url="http://jkontherun.files.wordpress.com/2007/05/zune_trio.jpg" medium="image">
			<media:title type="html">Zune_trio</media:title>
		</media:content>
	</item>
		<item>
		<title>Kingston unveils tiny 9-in-1 USB card reader</title>
		<link>http://gigaom.com/2007/05/09/kingston_unveil/</link>
		<comments>http://gigaom.com/2007/05/09/kingston_unveil/#comments</comments>
		<pubDate>Wed, 09 May 2007 12:39:06 +0000</pubDate>
		<dc:creator>James Kendrick</dc:creator>
				<category><![CDATA[Mobile Tech]]></category>
		<category><![CDATA[Software Apps]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Google Gears]]></category>
		<category><![CDATA[IMAP]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[zoho]]></category>

		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/05/09/kingston_unveil</guid>
		<description><![CDATA[The folks at Kingston have alerted me to the release of a very cool and tiny USB card reader.&#160; The MobileLite reader is sold alone for just $8.99 or with either a 1 or 2 GB SD card bundle or a 1 GB MicroSD (prices below).&#160; [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=189177&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://jkontherun.wordpress.com/2007/05/09/kingston_unveil/image-1-for-post-kingston-unveils-tiny-9-in-1-usb-card-reader-2007-05-09-113906-2/" title="Image 1 for post Kingston unveils tiny 9-in-1 USB card reader( 2007-05-09 11:39:06) "><img width="200" height="149" border="0" src="http://jkontherun.files.wordpress.com/2007/05/kingston_mobilelite_reader_050707.jpg?w=200&#038;h=149" title="Kingston_mobilelite_reader_050707" alt="Kingston_mobilelite_reader_050707" style="float:right;margin:0 0 5px 5px;" class=" alignleft" /></a>The folks at Kingston have alerted me to the release of a very cool and tiny USB card reader.&nbsp; The MobileLite reader is sold alone for just $8.99 or with either a 1 or 2 GB SD card bundle or a 1 GB MicroSD (prices below).&nbsp; Take a look at the photo of the MobileLite and you&#8217;ll see why I can&#8217;t wait to get one of these in my hot little hands, it is about as small as can be and still read 9 different card formats.&nbsp; Here&#8217;s the deets from Kingston, note the way it handles drive letters:</p>
<p><em>The new MobileLite USB Reader works with nine different memory card formats: microSD; miniSD; full-size Secure Digital; SDHC; MMCmicro; MMCmobile, RS-MMC; MMCplus and full-size MMC. When in use, MobileLite appears as three drive letters (for example G:, H: and I:) and data transfer is as simple as drag and drop.</p>
<p>MobileLite Card Reader with 1GB SD Card Bundle&nbsp; p/n: FCR-ML+SD/1GB = $ 22.99 MSRP<br />MobileLite Card Reader plus 2GB SD Card Bundle&nbsp; p/n: FCR-ML+SD/2GB = $ 34.99 MSRP<br />MobileLite Card Reader plus 1GB microSD Card Bundle&nbsp; p/n: FCR-ML+SDC/1GB = $ 23.99 MSRP</em></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gigaom2.wordpress.com/189177/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gigaom2.wordpress.com/189177/" /> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=189177&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=802292"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=802292" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=mobile&utm_medium=editorial&utm_campaign=auto3&utm_term=189177+kingston_unveil&utm_content=jkendrick">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/02/trends-challenges-and-chances-in-the-rising-mobile-deals-space/?utm_source=mobile&utm_medium=editorial&utm_campaign=auto3&utm_term=189177+kingston_unveil&utm_content=jkendrick">Opportunities and challenges for mobile deals</a></li><li><a href="http://pro.gigaom.com/2010/05/are-you-empowering-your-mobile-workforce/?utm_source=mobile&utm_medium=editorial&utm_campaign=auto3&utm_term=189177+kingston_unveil&utm_content=jkendrick">Are You Empowering Your Mobile Workforce?</a></li><li><a href="http://pro.gigaom.com/2013/01/how-new-devices-networks-and-consumer-habits-will-change-the-web-experience/?utm_source=mobile&utm_medium=editorial&utm_campaign=auto3&utm_term=189177+kingston_unveil&utm_content=jkendrick">How to deliver the next-generation web experience</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2007/05/09/kingston_unveil/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4f4c634e662513799d0c73243df2a5f4?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">jkendrick</media:title>
		</media:content>

		<media:content url="http://jkontherun.files.wordpress.com/2007/05/kingston_mobilelite_reader_050707.jpg" medium="image">
			<media:title type="html">Kingston_mobilelite_reader_050707</media:title>
		</media:content>
	</item>
	</channel>
</rss>
