<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:go='http://ns.gigaom.com/'
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>Comments on: &#8220;Disabling&#8221; Launch Services File Quarantine</title>
	<atom:link href="http://gigaom.com/apple/disabling-launch-services-file-quarantine/feed/" rel="self" type="application/rss+xml" />
	<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/</link>
	<description></description>
	<lastBuildDate>Fri, 10 Feb 2012 14:08:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Joseph Beeson</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-622585</link>
		<dc:creator><![CDATA[Joseph Beeson]]></dc:creator>
		<pubDate>Mon, 09 May 2011 16:54:10 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-622585</guid>
		<description><![CDATA[For those of you who use the command line, here&#039;s a bash script that will do the trick as well.

#!/bin/bash

## this little script unquarantines all files passed via stdin.
## acts recursively.
## big thx to http://gigaom.com/apple/disabling-launch-services-file-quarantine/.

ARGC=$#  
i=1 
while true; do.
	if [ $1 ]; then.
		xattr -dr com.apple.quarantine $1.
		shift
	else
		break
	fi
	i=$((i+1))
done
echo &quot;Done.&quot;]]></description>
		<content:encoded><![CDATA[<p>For those of you who use the command line, here&#8217;s a bash script that will do the trick as well.</p>
<p>#!/bin/bash</p>
<p>## this little script unquarantines all files passed via stdin.<br />
## acts recursively.<br />
## big thx to <a href="http://gigaom.com/apple/disabling-launch-services-file-quarantine/" rel="nofollow">http://gigaom.com/apple/disabling-launch-services-file-quarantine/</a>.</p>
<p>ARGC=$#<br />
i=1<br />
while true; do.<br />
	if [ $1 ]; then.<br />
		xattr -dr com.apple.quarantine $1.<br />
		shift<br />
	else<br />
		break<br />
	fi<br />
	i=$((i+1))<br />
done<br />
echo &#8220;Done.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PA5CAL</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326970</link>
		<dc:creator><![CDATA[PA5CAL]]></dc:creator>
		<pubDate>Thu, 06 May 2010 09:26:17 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326970</guid>
		<description><![CDATA[&lt;p&gt;In order to prevent the warning dialog to appear, you can add an item named &#039;LSQuarantine&#039; with type &#039;boolean&#039; in the LaunchServices preferences file (e.g. ~/Library/Preferences/com.apple.LaunchServices.plist) and set it to &#039;false&#039;. For instance, you can make it by typing the following command in Terminal:&lt;/p&gt;

&lt;p&gt;defaults write com.apple.LaunchServices LSQuarantine -bool NO&lt;/p&gt;

&lt;p&gt;Then the Mac has to be restarted. The same command with &#039;YES&#039; at the end enables the quarantine warning dialog again (you will have to restart your Mac too).&lt;/p&gt;

&lt;p&gt;This works fine in Mac OS 10.6.&lt;/p&gt;

&lt;p&gt;Note that this only prevents the appearance of the dialog. Quarantine data will still be attached to your downloaded files anyway.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>In order to prevent the warning dialog to appear, you can add an item named &#8216;LSQuarantine&#8217; with type &#8216;boolean&#8217; in the LaunchServices preferences file (e.g. ~/Library/Preferences/com.apple.LaunchServices.plist) and set it to &#8216;false&#8217;. For instance, you can make it by typing the following command in Terminal:</p>
<p>defaults write com.apple.LaunchServices LSQuarantine -bool NO</p>
<p>Then the Mac has to be restarted. The same command with &#8216;YES&#8217; at the end enables the quarantine warning dialog again (you will have to restart your Mac too).</p>
<p>This works fine in Mac OS 10.6.</p>
<p>Note that this only prevents the appearance of the dialog. Quarantine data will still be attached to your downloaded files anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Questor</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326969</link>
		<dc:creator><![CDATA[Questor]]></dc:creator>
		<pubDate>Sun, 14 Feb 2010 01:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326969</guid>
		<description><![CDATA[As I&#039;m interested in quarantine-ing NZB files, I added that as a file type via the the script at MyMacinations but it doesn&#039;t work, even as I ADD NZB as a file type to NOT be flagged with an alert. 

Several people at various websites have reported that it doesn&#039;t work for them. The 2nd method, the Folder Action Scripts doesn&#039;t work for me either and I&#039;m on Mac OS X 10.5.8 It would be nice if this was isolated. It&#039;s really annoying! And will Apple ever release Mac OS X 10.5.9? I hope so!]]></description>
		<content:encoded><![CDATA[<p>As I&#8217;m interested in quarantine-ing NZB files, I added that as a file type via the the script at MyMacinations but it doesn&#8217;t work, even as I ADD NZB as a file type to NOT be flagged with an alert. </p>
<p>Several people at various websites have reported that it doesn&#8217;t work for them. The 2nd method, the Folder Action Scripts doesn&#8217;t work for me either and I&#8217;m on Mac OS X 10.5.8 It would be nice if this was isolated. It&#8217;s really annoying! And will Apple ever release Mac OS X 10.5.9? I hope so!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clint</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326968</link>
		<dc:creator><![CDATA[Clint]]></dc:creator>
		<pubDate>Tue, 14 Jul 2009 17:46:50 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326968</guid>
		<description><![CDATA[Yes, it would be much easier to just click OK when the dialog box comes up; however, I encountered a situation where clicking OK didn&#039;t make it stop. Each and every program that was downloaded from the internet on a group of computers came up with the same message each and every time it was launched. I had downloaded all the apps as the Admin user, I repaired permissions, tried under a different admin user account, I re-downloaded the apps, I tried all kinds of things... nothing would clear that message on subsequent launches of those apps.  There was some kind of  glitch somewhere that prevented that attribute from clearing.  I used that command to clear the attributes and now my users are happy again.]]></description>
		<content:encoded><![CDATA[<p>Yes, it would be much easier to just click OK when the dialog box comes up; however, I encountered a situation where clicking OK didn&#8217;t make it stop. Each and every program that was downloaded from the internet on a group of computers came up with the same message each and every time it was launched. I had downloaded all the apps as the Admin user, I repaired permissions, tried under a different admin user account, I re-downloaded the apps, I tried all kinds of things&#8230; nothing would clear that message on subsequent launches of those apps.  There was some kind of  glitch somewhere that prevented that attribute from clearing.  I used that command to clear the attributes and now my users are happy again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Tempelmann</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326967</link>
		<dc:creator><![CDATA[Thomas Tempelmann]]></dc:creator>
		<pubDate>Sat, 04 Apr 2009 10:58:41 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326967</guid>
		<description><![CDATA[@James, can you be a bit more explicit about what you did when you declared &quot;public.item&quot; as Neutral? How does this &quot;neutral&quot; word come into play here?]]></description>
		<content:encoded><![CDATA[<p>@James, can you be a bit more explicit about what you did when you declared &#8220;public.item&#8221; as Neutral? How does this &#8220;neutral&#8221; word come into play here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dorian</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326966</link>
		<dc:creator><![CDATA[Dorian]]></dc:creator>
		<pubDate>Mon, 15 Dec 2008 11:52:39 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326966</guid>
		<description><![CDATA[This script doesnt seem to work for me. I add php files and subfolder containing CSS files and other php files, but I still get the warning for some of the php files, saying it&#039;s a &quot;script&quot; downloaded from the internet.

Any one found a way to work around that ? It&#039;s driving me crazy...]]></description>
		<content:encoded><![CDATA[<p>This script doesnt seem to work for me. I add php files and subfolder containing CSS files and other php files, but I still get the warning for some of the php files, saying it&#8217;s a &#8220;script&#8221; downloaded from the internet.</p>
<p>Any one found a way to work around that ? It&#8217;s driving me crazy&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter da Silva</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326965</link>
		<dc:creator><![CDATA[Peter da Silva]]></dc:creator>
		<pubDate>Tue, 11 Nov 2008 15:30:23 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326965</guid>
		<description><![CDATA[I STRONGLY recommend disabling this kind of stupid dialog. Speaking as someone who has been a Windows network admin for 20 years, the biggest effect these kinds of &quot;you&#039;re about to do sothing that might occasionally be stupid, but is almost always normal&quot; dialogs is to train people to answer warning dialogs in the affirmative.

And it&#039;s really hard to un-train them.

I&#039;ve had several people come to me and as &quot;Peter, it asked me &#039;do you want to install a virus on your computer&#039; (or something equally scary) and I clicked &#039;install&#039; before I noticed what it was saying, and now my computer&#039;s acting funny&quot;. The same people. Multiple times. Yes, really.

THIS IS NOT A SECURITY FEATURE. IT IS A SECURITY FLAW.

When Apple added &quot;open safe files&quot; to Safari I groaned. I knew some stupid thing like this was coming up.

The most fun I&#039;ve had with this was when a screen saver tried to run a program, and LaunchServices came up with the stupid warning, AND I COULDN&#039;T DO ANYTHING ABOUT IT BECAUSE IT WAS UNDER THE SCREEN SAVER, AND THE SCREEN SAVER WAS WAITING FOR IT. I mean, Whisky Tango Foxtrot, Apple...]]></description>
		<content:encoded><![CDATA[<p>I STRONGLY recommend disabling this kind of stupid dialog. Speaking as someone who has been a Windows network admin for 20 years, the biggest effect these kinds of &#8220;you&#8217;re about to do sothing that might occasionally be stupid, but is almost always normal&#8221; dialogs is to train people to answer warning dialogs in the affirmative.</p>
<p>And it&#8217;s really hard to un-train them.</p>
<p>I&#8217;ve had several people come to me and as &#8220;Peter, it asked me &#8216;do you want to install a virus on your computer&#8217; (or something equally scary) and I clicked &#8216;install&#8217; before I noticed what it was saying, and now my computer&#8217;s acting funny&#8221;. The same people. Multiple times. Yes, really.</p>
<p>THIS IS NOT A SECURITY FEATURE. IT IS A SECURITY FLAW.</p>
<p>When Apple added &#8220;open safe files&#8221; to Safari I groaned. I knew some stupid thing like this was coming up.</p>
<p>The most fun I&#8217;ve had with this was when a screen saver tried to run a program, and LaunchServices came up with the stupid warning, AND I COULDN&#8217;T DO ANYTHING ABOUT IT BECAUSE IT WAS UNDER THE SCREEN SAVER, AND THE SCREEN SAVER WAS WAITING FOR IT. I mean, Whisky Tango Foxtrot, Apple&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326964</link>
		<dc:creator><![CDATA[James]]></dc:creator>
		<pubDate>Thu, 16 Oct 2008 09:05:31 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326964</guid>
		<description><![CDATA[I FINALLY got it.
&lt;a href=&quot;http://pseudogreen.org/blog/yes_leopard_i_want_to_open_it_already.html&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;

I can&#039;t believe I didn&#039;t try that.  You just have to declare &quot;public.item&quot; as Neutral.

I also added a folder action script that puts a red label on applications that are moved into the download folder, and removes it when they are moved out of the folder.  I preserved almost all of the security and removed most of the inconvenience.]]></description>
		<content:encoded><![CDATA[<p>I FINALLY got it.<br />
<a href="http://pseudogreen.org/blog/yes_leopard_i_want_to_open_it_already.html" rel="nofollow"></a></p>
<p>I can&#8217;t believe I didn&#8217;t try that.  You just have to declare &#8220;public.item&#8221; as Neutral.</p>
<p>I also added a folder action script that puts a red label on applications that are moved into the download folder, and removes it when they are moved out of the folder.  I preserved almost all of the security and removed most of the inconvenience.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326963</link>
		<dc:creator><![CDATA[James]]></dc:creator>
		<pubDate>Thu, 16 Oct 2008 00:31:46 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326963</guid>
		<description><![CDATA[How about this: forcing the .app extension to be visible until an application has been opened for the first time.

I suppose you&#039;re right though, it shouldn&#039;t be default and Apple doesn&#039;t like options.  Although I have to say, a nag screen this annoying isn&#039;t very &quot;Apple&quot;]]></description>
		<content:encoded><![CDATA[<p>How about this: forcing the .app extension to be visible until an application has been opened for the first time.</p>
<p>I suppose you&#8217;re right though, it shouldn&#8217;t be default and Apple doesn&#8217;t like options.  Although I have to say, a nag screen this annoying isn&#8217;t very &#8220;Apple&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nectar</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326962</link>
		<dc:creator><![CDATA[Nectar]]></dc:creator>
		<pubDate>Wed, 15 Oct 2008 14:21:15 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326962</guid>
		<description><![CDATA[James wrote, “I don’t even understand the security benefit. If it’s trying to protect me from executables that appear to be something else, why does it bother me about executables that appear to be executables?”

Remember that by default, file extensions are not displayed.  So for example, an application with a PDF icon will look like a PDF and not an application unless one examines it carefully (e.g. with Get Info).  Even when file extensions are displayed,  the “.app” at the end is a very subtle hint and easily missed.

Not a bad suggestion you make though:  Perhaps when file extensions *are* displayed, the warning could be done away with.  This could not be the default behavior, of course… but Apple is known for minimizing options, which may be why this is not configurable.]]></description>
		<content:encoded><![CDATA[<p>James wrote, “I don’t even understand the security benefit. If it’s trying to protect me from executables that appear to be something else, why does it bother me about executables that appear to be executables?”</p>
<p>Remember that by default, file extensions are not displayed.  So for example, an application with a PDF icon will look like a PDF and not an application unless one examines it carefully (e.g. with Get Info).  Even when file extensions are displayed,  the “.app” at the end is a very subtle hint and easily missed.</p>
<p>Not a bad suggestion you make though:  Perhaps when file extensions *are* displayed, the warning could be done away with.  This could not be the default behavior, of course… but Apple is known for minimizing options, which may be why this is not configurable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326961</link>
		<dc:creator><![CDATA[James]]></dc:creator>
		<pubDate>Wed, 15 Oct 2008 09:04:11 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326961</guid>
		<description><![CDATA[I&#039;m having the same problem as Bob.  I added:

public.html
public.executable
com.apple.application
com.apple.applicaiton-bundle
com.apple.aplication-file

and I don&#039;t get warnings for html documents anymore, but I still get warnings for applications.  Maybe it&#039;s impossible to override the settings for applications?

This warning is extremely annoying (and insulting) and I don&#039;t even understand the security benefit.  If it&#039;s trying to protect me from executables that appear to be something else, why does it bother me about executables that appear to be executables?  Seriously... at the very least it should be disabled for files whose only extension is .app]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m having the same problem as Bob.  I added:</p>
<p>public.html<br />
public.executable<br />
com.apple.application<br />
com.apple.applicaiton-bundle<br />
com.apple.aplication-file</p>
<p>and I don&#8217;t get warnings for html documents anymore, but I still get warnings for applications.  Maybe it&#8217;s impossible to override the settings for applications?</p>
<p>This warning is extremely annoying (and insulting) and I don&#8217;t even understand the security benefit.  If it&#8217;s trying to protect me from executables that appear to be something else, why does it bother me about executables that appear to be executables?  Seriously&#8230; at the very least it should be disabled for files whose only extension is .app</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ∞ Infinite Mac &#187; Blog Archive &#187; “Disabling” Launch Services File Quarantine</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326949</link>
		<dc:creator><![CDATA[∞ Infinite Mac &#187; Blog Archive &#187; “Disabling” Launch Services File Quarantine]]></dc:creator>
		<pubDate>Sun, 30 Mar 2008 18:14:24 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326949</guid>
		<description><![CDATA[[...] by R0GUE on March 26th, 2008 in Mac OS X &#124;     The Apple Blog has a very informative piece regarding the open confirmation dialog in Leopard that pops up when you attempt to access a [...]]]></description>
		<content:encoded><![CDATA[<p>[...] by R0GUE on March 26th, 2008 in Mac OS X |     The Apple Blog has a very informative piece regarding the open confirmation dialog in Leopard that pops up when you attempt to access a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Rudis</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326954</link>
		<dc:creator><![CDATA[Bob Rudis]]></dc:creator>
		<pubDate>Fri, 28 Mar 2008 14:56:07 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326954</guid>
		<description><![CDATA[@John: I never said (I actually contraindicated using any of this in the post) this was a good idea :-)]]></description>
		<content:encoded><![CDATA[<p>@John: I never said (I actually contraindicated using any of this in the post) this was a good idea :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326959</link>
		<dc:creator><![CDATA[Sean]]></dc:creator>
		<pubDate>Fri, 28 Mar 2008 07:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326959</guid>
		<description><![CDATA[Whoops, that&#039;s using the &lt;a href=&quot;rixstep.com&quot; rel=&quot;nofollow&quot;&gt;ACP.&lt;/a&gt;

find . -print0 &#124; xargs -0 xattr -d com.apple.quarantine]]></description>
		<content:encoded><![CDATA[<p>Whoops, that&#8217;s using the <a href="rixstep.com" rel="nofollow">ACP.</a></p>
<p>find . -print0 | xargs -0 xattr -d com.apple.quarantine</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326958</link>
		<dc:creator><![CDATA[Sean]]></dc:creator>
		<pubDate>Fri, 28 Mar 2008 07:05:01 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326958</guid>
		<description><![CDATA[Apple&#039;s answer to Oompa is a nag prompt? Hilarious.

Anyway, when you get tired of the nagging:

find . -print0 &#124; xargs -0 ~/Applications/etc/xabatch ~/Applications/etc/com.apple.xabatch {}]]></description>
		<content:encoded><![CDATA[<p>Apple&#8217;s answer to Oompa is a nag prompt? Hilarious.</p>
<p>Anyway, when you get tired of the nagging:</p>
<p>find . -print0 | xargs -0 ~/Applications/etc/xabatch ~/Applications/etc/com.apple.xabatch {}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nectar</title>
		<link>http://gigaom.com/apple/disabling-launch-services-file-quarantine/#comment-326957</link>
		<dc:creator><![CDATA[Nectar]]></dc:creator>
		<pubDate>Thu, 27 Mar 2008 16:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2008/03/26/disabling-launch-services-file-quarantine/#comment-326957</guid>
		<description><![CDATA[Note for those disabling quarantine:
The purpose of this functionality is one last line of defense against trojans such as &lt;a href=&quot;http://www.symantec.com/security_response/writeup.jsp?docid=2006-021614-4006-99&amp;tabid=2&quot; title=&quot;Symantec description of OSX.Leap.A&quot; rel=&quot;nofollow&quot;&gt;OSX.Leap.A.&lt;/a&gt;.  If you disable quarantine, you will get no warning if you download an item that &lt;em&gt;appears&lt;/em&gt; to be an image or PDF but is actually a malicious application.]]></description>
		<content:encoded><![CDATA[<p>Note for those disabling quarantine:<br />
The purpose of this functionality is one last line of defense against trojans such as <a href="http://www.symantec.com/security_response/writeup.jsp?docid=2006-021614-4006-99&amp;tabid=2" title="Symantec description of OSX.Leap.A" rel="nofollow">OSX.Leap.A.</a>.  If you disable quarantine, you will get no warning if you download an item that <em>appears</em> to be an image or PDF but is actually a malicious application.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

