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

<channel>
	<title>Surgical Diversions &#187; Apple</title>
	<atom:link href="http://thefragens.com/blog/tag/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://thefragens.com/blog</link>
	<description>My time out of the operating room.</description>
	<lastBuildDate>Wed, 21 Dec 2011 17:05:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Server-Side Email Filtering with Sieve</title>
		<link>http://thefragens.com/blog/2010/05/server-side-email-filtering-with-sieve/</link>
		<comments>http://thefragens.com/blog/2010/05/server-side-email-filtering-with-sieve/#comments</comments>
		<pubDate>Fri, 14 May 2010 23:55:31 +0000</pubDate>
		<dc:creator>Andy Fragen</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[mac-osx]]></category>
		<category><![CDATA[osx-server]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[sieve]]></category>

		<guid isPermaLink="false">http://thefragens.com/blog/?p=684</guid>
		<description><![CDATA[Another post for the peripheral brain. When I first set up my own server lo these years ago, I never really thought about email message filtering. After all, I had rules in Mail.app that would send my incoming message to &#8230; <a href="http://thefragens.com/blog/2010/05/server-side-email-filtering-with-sieve/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://thefragens.com/blog/2011/03/squirrelmail-plugins/' rel='bookmark' title='Squirrelmail Plugins'>Squirrelmail Plugins</a> <small>Just an FYI post. I save all my added Squirrelmail...</small></li>
<li><a href='http://thefragens.com/blog/2010/08/snow-leopard-sieve-rules/' rel='bookmark' title='Snow Leopard Sieve Rules'>Snow Leopard Sieve Rules</a> <small>How to edit sieve rules in Snow Leopard by hand....</small></li>
<li><a href='http://thefragens.com/blog/2008/02/forwarding-email-in-leopard-server/' rel='bookmark' title='Forwarding Email in Leopard Server'>Forwarding Email in Leopard Server</a> <small>OK, to put it mildly the Workgroup Manager and Email...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Another post for the peripheral brain.</p>

<p>When I first set up my own server lo these years ago, I never really thought about email message filtering. After all, I had rules in Mail.app that would send my incoming message to wherever I wanted them. Besides, I was much more concerned with eliminating spam.</p>

<p>Well, that was then and spam seems under control. I was prompted to look at server-side message filtering mostly to help out my mother, who seems determined to have every single store, travel and other consumer site that will happily take your email address and send you messages daily &#8212; or more often, have a more controllable experience on her iPhone. When we originally set up her iPhone she told me she didn&#8217;t want to use it for email. Silly me, I listened and set her up with a POP account. Well now she wants email. What&#8217;s a good son to do. <img src='http://thefragens.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>

<p>I changed her POP account to IMAP, copied over all her messages to her new IMAP folders and thought I&#8217;d need to solve her impending problem of 100 or so messages every other day choking her inbox.</p>

<p>After a bit of Googling I found <a href="http://sieve.info">Sieve</a>. I&#8217;d actually heard of it before but never really thought about it. The <a href="http://www.netmojo.ca/2007/12/01/setting-up-sieve-and-vacation-messages-on-mac-os-x-server/">Apple Discussion Forum</a> had a nice start and pointed me on to <a href="http://www.netmojo.ca/2007/12/01/setting-up-sieve-and-vacation-messages-on-mac-os-x-server/">sources</a> I used to <a href="http://www.afp548.com/article.php?story=20080106215609968">set it up</a>.</p>

<p>Here are the salient points. From the terminal&#8230;</p>

<ol>
<li><p>Add the following lines to <code>/etc/services</code></p>

<pre><code>sudo pico /etc/services
</code></pre>

<p>Insert the following lines.</p>

<pre><code>callbook 2000/udp # callbook
callbook 2000/tcp # callbook
+ sieve 2000/udp # sieve mail filtering
+ sieve 2000/tcp # sieve mail filtering
</code></pre>

<p>You can check to see if it&#8217;s running by running</p>

<pre><code>netstat -an | grep 2000
</code></pre>

<p>with results</p>

<pre><code>tcp4 0 0 *.2000 *.* LISTEN
tcp6 0 0 *.2000 *.* LISTEN
</code></pre></li>
<li><p>Create <code>/usr/sieve</code></p>

<pre><code>sudo mkdir /usr/sieve
sudo chown _cyrus:mail /usr/sieve
</code></pre></li>
<li><p>Restart mail services</p>

<pre><code>sudo serveradmin stop mail
[ some stuff ]
sudo serveradmin start mail
[ some stuff ]
</code></pre></li>
<li>Since I&#8217;m using  OS X Server and SquirrelMail is already running, next was installing and configuring <a href="http://email.uoa.gr/avelsieve/wiki/Download">avelsieve</a>.</li>
</ol>

<p>I really did try installing the latest development version &#8212; 1.9.9 alpha. That should have been a clue. After spending way too much time with it I installed the stable version - avelsieve 1.0.1. Once copied into <code>/usr/share/squirrelmail/plugins</code> run <code>sudo perl /etc/squirrelmail/config/conf.pl</code> and activate the plugin.</p>

<p>Then it&#8217;s back to the terminal. These instructions are from <a href="http://www.afp548.com/article.php?story=20080106215609968">AFP548</a>.</p>

<pre><code>    cd /usr/share/squirrelmail/plugins/avelsieve
    sudo cp config-sample.php config.php
</code></pre>

<p>Now set the correct authentication matching SquirrelMail.<br />
Edit <code>/etc/squirrelmail/plugins/avelsieve/config.php</code> and change:</p>

<pre><code>$preferred_mech = "PLAIN";
</code></pre>

<p>to  </p>

<pre><code>$preferred_mech = "CRAM-MD5";
</code></pre>

<p>You should be running SquirrelMail with CRAM-MD5 authentication anyway.</p>

<p>Finally, edit the <code>/etc/squirrelmail/plugins/avelsieve/lib/sieve-php.lib.php</code> file. </p>

<p>Find the line:</p>

<pre><code>fputs($this-&gt;fp, "PUTSCRIPT \"$scriptname\" \{$len+}\r\n"); 
</code></pre>

<p>and change it to :</p>

<pre><code>fputs($this-&gt;fp, "PUTSCRIPT \"$scriptname\"".' {'."$len+".'}'."\r\n");
</code></pre>

<p>This fixes an error in the script allowing you to save your changes to the filters. Now go login to webmail and click on the <code>Filter</code> link to start creating your Sieve filters.</p>
<p>Related posts:<ol>
<li><a href='http://thefragens.com/blog/2011/03/squirrelmail-plugins/' rel='bookmark' title='Squirrelmail Plugins'>Squirrelmail Plugins</a> <small>Just an FYI post. I save all my added Squirrelmail...</small></li>
<li><a href='http://thefragens.com/blog/2010/08/snow-leopard-sieve-rules/' rel='bookmark' title='Snow Leopard Sieve Rules'>Snow Leopard Sieve Rules</a> <small>How to edit sieve rules in Snow Leopard by hand....</small></li>
<li><a href='http://thefragens.com/blog/2008/02/forwarding-email-in-leopard-server/' rel='bookmark' title='Forwarding Email in Leopard Server'>Forwarding Email in Leopard Server</a> <small>OK, to put it mildly the Workgroup Manager and Email...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thefragens.com/blog/2010/05/server-side-email-filtering-with-sieve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Safari Version??</title>
		<link>http://thefragens.com/blog/2010/04/new-safari-version/</link>
		<comments>http://thefragens.com/blog/2010/04/new-safari-version/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 18:12:43 +0000</pubDate>
		<dc:creator>Andy Fragen</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[mac-osx]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://thefragens.com/blog/?p=670</guid>
		<description><![CDATA[I&#8217;ve just spent the last 40 minutes on the phone with Union Bank tech support because for the past 2 weeks I&#8217;ve been unable to log in to my online account with Safari. After all this time the tech support &#8230; <a href="http://thefragens.com/blog/2010/04/new-safari-version/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://thefragens.com/blog/2003/01/safari-updated/' rel='bookmark' title='Safari Updated'>Safari Updated</a> <small>Wow, it&#8217;s only been 3 days and Apple&#8217;s released an...</small></li>
<li><a href='http://thefragens.com/blog/2005/02/uumlber-cool-safari-add-on/' rel='bookmark' title='&Uuml;ber cool Safari add-on'>&amp;Uuml;ber cool Safari add-on</a> <small>Sogudi is very similar to an application by Brent Simmons...</small></li>
<li><a href='http://thefragens.com/blog/2003/01/marks-safari-review/' rel='bookmark' title='Mark&#8217;s Safari Review'>Mark&#8217;s Safari Review</a> <small>Safari review. A review of Apple&#8217;s new browser, Safari, for...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just spent the last 40 minutes on the phone with <a href="http://www.unionbank.com">Union Bank</a> tech support because for the past 2 weeks I&#8217;ve been unable to log in to my online account with <a href="http://www.apple.com/safari">Safari</a>. After all this time the tech support person, who was very nice, told me I was missing a patch to Safari.</p>

<p>I told him I have the latest patches to my OS and I am running the most currently available version of Safari. I told me that someone there <em>&#8220;got some update patch and could log in.&#8221;</em> I told him, with all due respect, I&#8217;ve been using Macs for over 20 years. (I got my first Mac 128K in 1985) I was quite certain that there is no more currently available version of Safari. Naturally I ran Software Update and no updates are available.</p>

<p>Currently I&#8217;m running OS 10.6.3 and Safari Version 4.0.5 (6531.22.7), according to the About box. I&#8217;m not sure why they want to blame Apple, but for their logic to hold true a single user of theirs seems to have a &#8220;more up-to-date&#8221; version of Safari than is obtainable from either Software Update or Apple&#8217;s site.</p>

<p>Fortunately <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a> still works.</p>
<p>Related posts:<ol>
<li><a href='http://thefragens.com/blog/2003/01/safari-updated/' rel='bookmark' title='Safari Updated'>Safari Updated</a> <small>Wow, it&#8217;s only been 3 days and Apple&#8217;s released an...</small></li>
<li><a href='http://thefragens.com/blog/2005/02/uumlber-cool-safari-add-on/' rel='bookmark' title='&Uuml;ber cool Safari add-on'>&amp;Uuml;ber cool Safari add-on</a> <small>Sogudi is very similar to an application by Brent Simmons...</small></li>
<li><a href='http://thefragens.com/blog/2003/01/marks-safari-review/' rel='bookmark' title='Mark&#8217;s Safari Review'>Mark&#8217;s Safari Review</a> <small>Safari review. A review of Apple&#8217;s new browser, Safari, for...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thefragens.com/blog/2010/04/new-safari-version/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iPad Arrives</title>
		<link>http://thefragens.com/blog/2010/04/ipad-arrives/</link>
		<comments>http://thefragens.com/blog/2010/04/ipad-arrives/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 22:36:55 +0000</pubDate>
		<dc:creator>Andy Fragen</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://thefragens.com/blog/?p=668</guid>
		<description><![CDATA[Well, with the Easter weekend over and Apple&#8217;s iPad gaining more headlines than anything else, I have to say I want one, but I can wait. I actually got to touch one. Someone at the hospital brought it with them. &#8230; <a href="http://thefragens.com/blog/2010/04/ipad-arrives/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Well, with the Easter weekend over and Apple&#8217;s iPad gaining more headlines than anything else, I have to say I want one, but I can wait.</p>

<p>I actually got to touch one. Someone at the hospital brought it with them. </p>

<ul>
<li>It&#8217;s <em>not</em> that heavy.</li>
<li>The display is bright and crisp.</li>
<li>It&#8217;s fast.</li>
</ul>

<p>I played a little with the keyboard and I can see with some practice that it&#8217;s quite usable.</p>

<p>I&#8217;m more excited to see what&#8217;s coming Thursday in the iPhone 4.0 announcement. A unified inbox for the Mail.app and Smart Folders would be great.</p>

<p>The iPad is certainly a machine designed for consuming data, not necessarily manipulating data. There are several scripts that I&#8217;ve written that make my life easier and I don&#8217;t see anyway of making them work on an iPad or iPhone. Not that it&#8217;s a deal-breaker, it just means I can&#8217;t use the iPad for much more than I use my iPhone now. Except it&#8217;s really a faster, better reading environment. I&#8217;ll probably buy one based upon that alone.</p>

<p>Time will tell. But I have to say for all those naysayers, wait till you&#8217;ve held one!</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thefragens.com/blog/2010/04/ipad-arrives/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Subscribing to Delegated Calendars</title>
		<link>http://thefragens.com/blog/2008/12/subscribing-to-delegated-calendars/</link>
		<comments>http://thefragens.com/blog/2008/12/subscribing-to-delegated-calendars/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 21:45:25 +0000</pubDate>
		<dc:creator>Andy Fragen</dc:creator>
				<category><![CDATA[mac-osx]]></category>
		<category><![CDATA[osx-server]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://thefragens.com/blog/?p=583</guid>
		<description><![CDATA[OK, I&#8217;m fortunate or crazy enough to run my own server using Apple&#8217;s OS X Leopard Server software. It has been, at times, very simple and very complex to set everything up. One of the options that I use is &#8230; <a href="http://thefragens.com/blog/2008/12/subscribing-to-delegated-calendars/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://thefragens.com/blog/2010/08/setting-up-snow-leopard-ical-server/' rel='bookmark' title='Setting up Snow Leopard iCal Server'>Setting up Snow Leopard iCal Server</a> <small>After scouring through the official documentation, and finding that lacking,...</small></li>
<li><a href='http://thefragens.com/blog/2008/08/ical-exchange-time-zone-fix-part-2/' rel='bookmark' title='iCal - Exchange Time Zone Fix - part 2'>iCal - Exchange Time Zone Fix - part 2</a> <small>I&#8217;ve come across a problem with the original MailExchange2iCal-TZ-fix script....</small></li>
<li><a href='http://thefragens.com/blog/2010/05/server-side-email-filtering-with-sieve/' rel='bookmark' title='Server-Side Email Filtering with Sieve'>Server-Side Email Filtering with Sieve</a> <small>Another post for the peripheral brain. When I first set...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>OK, I&#8217;m fortunate or crazy enough to run my own server using Apple&#8217;s OS X Leopard Server software. It has been, at times, very simple and very complex to set everything up. One of the options that I use is the iCal Server so that I can have shared calendars. Once I got it up and running with all the permissions worked out it&#8217;s been terrific. By terrific I mean that I haven&#8217;t had to do a single thing to keep it up and running.</p>

<p>Here&#8217;s the problem. My wife and I both have iPhone&#8217;s. I&#8217;d like to see one of her calendar&#8217;s on my iPhone and I want here to see one of mine on her iPhone. On our respective computers these calendars show up in iCal as <em>Delegates</em>. That&#8217;s how there&#8217;re suppose to show up. The problem is that only local calendars and subscribed calendars are listed in iTunes for syncing to the iPhone.</p>

<p>After a bit of googling, the <a href="http://discussions.apple.com/message.jspa?messageID=6690635#6690635">answer appeared in the Apple Discussions Board</a>. If I do a get info on the <em>Delegate</em> calendar and copy the CalDAV URL I can then subscribe to this URL, the calendar will show up in my <em>Subscriptions</em> list. I can then sync it to the iPhone. It is perhaps the simplest workaround that I&#8217;ve found. Your user must log out and log back in for iTunes to see the newly subscribed calendar.</p>

<p>However, it&#8217;s still a <a href="http://en.wikipedia.org/wiki/Kludge">kludge</a> and I await the day Apple fixes iTunes to allow for syncing any viewable calendar iCal to your iPhone.</p>
<p>Related posts:<ol>
<li><a href='http://thefragens.com/blog/2010/08/setting-up-snow-leopard-ical-server/' rel='bookmark' title='Setting up Snow Leopard iCal Server'>Setting up Snow Leopard iCal Server</a> <small>After scouring through the official documentation, and finding that lacking,...</small></li>
<li><a href='http://thefragens.com/blog/2008/08/ical-exchange-time-zone-fix-part-2/' rel='bookmark' title='iCal - Exchange Time Zone Fix - part 2'>iCal - Exchange Time Zone Fix - part 2</a> <small>I&#8217;ve come across a problem with the original MailExchange2iCal-TZ-fix script....</small></li>
<li><a href='http://thefragens.com/blog/2010/05/server-side-email-filtering-with-sieve/' rel='bookmark' title='Server-Side Email Filtering with Sieve'>Server-Side Email Filtering with Sieve</a> <small>Another post for the peripheral brain. When I first set...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thefragens.com/blog/2008/12/subscribing-to-delegated-calendars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Laptop Envy</title>
		<link>http://thefragens.com/blog/2008/10/laptop-envy/</link>
		<comments>http://thefragens.com/blog/2008/10/laptop-envy/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 22:44:04 +0000</pubDate>
		<dc:creator>Andy Fragen</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://thefragens.com/blog/?p=570</guid>
		<description><![CDATA[OK, I have serious laptop envy. I need a new MacBook. Just have to figure out what to do about no firewire drive. Related posts: Apple USB Ethernet part 2 Well, after spending several hours on the phone with AppleCare... &#8230; <a href="http://thefragens.com/blog/2008/10/laptop-envy/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://thefragens.com/blog/2008/02/apple-usb-ethernet-part-2/' rel='bookmark' title='Apple USB Ethernet part 2'>Apple USB Ethernet part 2</a> <small>Well, after spending several hours on the phone with AppleCare...</small></li>
<li><a href='http://thefragens.com/blog/2008/02/in-for-repairs/' rel='bookmark' title='In for repairs'>In for repairs</a> <small>Well, I&#8217;m going to try and clone my server and...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>OK, I have serious laptop envy. I <strong>need</strong> a new MacBook. Just have to figure out what to do about no firewire drive.</p>
<p>Related posts:<ol>
<li><a href='http://thefragens.com/blog/2008/02/apple-usb-ethernet-part-2/' rel='bookmark' title='Apple USB Ethernet part 2'>Apple USB Ethernet part 2</a> <small>Well, after spending several hours on the phone with AppleCare...</small></li>
<li><a href='http://thefragens.com/blog/2008/02/in-for-repairs/' rel='bookmark' title='In for repairs'>In for repairs</a> <small>Well, I&#8217;m going to try and clone my server and...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thefragens.com/blog/2008/10/laptop-envy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New iTunes Store</title>
		<link>http://thefragens.com/blog/2008/09/new-itunes-store/</link>
		<comments>http://thefragens.com/blog/2008/09/new-itunes-store/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 18:54:32 +0000</pubDate>
		<dc:creator>Andy Fragen</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://thefragens.com/blog/?p=562</guid>
		<description><![CDATA[I just went to the App Store in iTunes and the choices to see All iPhone Applications, All Free Applications and All Paid Applications are now gone. Please bring it back. I want to be able to see all applications &#8230; <a href="http://thefragens.com/blog/2008/09/new-itunes-store/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://thefragens.com/blog/2005/06/my-trip-to-the-apple-store/' rel='bookmark' title='My Trip to the Apple Store'>My Trip to the Apple Store</a> <small>WOW. It was my first time in an Apple Store....</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I just went to the App Store in iTunes and the choices to see <em>All iPhone Applications</em>, <em>All Free Applications</em> and <em>All Paid Applications</em> are now gone.</p>

<p>Please bring it back. I want to be able to see all applications sorted by recent.</p>
<p>Related posts:<ol>
<li><a href='http://thefragens.com/blog/2005/06/my-trip-to-the-apple-store/' rel='bookmark' title='My Trip to the Apple Store'>My Trip to the Apple Store</a> <small>WOW. It was my first time in an Apple Store....</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thefragens.com/blog/2008/09/new-itunes-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

