<?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>42 &#187; Dreamhost</title>
	<atom:link href="http://www.42.mach7x.com/tag/dreamhost/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.42.mach7x.com</link>
	<description>Thoughts and tips about programming with Ruby on Rails</description>
	<lastBuildDate>Wed, 01 Feb 2012 14:38:36 +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>Internal 500 server error &#8211; Dreamhost &#8211; Rails 3.0.3 &#8211; Capistrano</title>
		<link>http://www.42.mach7x.com/2011/01/13/internal-500-server-error-dreamhost-rails-3-0-3-capistrano/</link>
		<comments>http://www.42.mach7x.com/2011/01/13/internal-500-server-error-dreamhost-rails-3-0-3-capistrano/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 12:31:42 +0000</pubDate>
		<dc:creator>kosmas</dc:creator>
				<category><![CDATA[Capistrano]]></category>
		<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[500 Internal Server Error]]></category>
		<category><![CDATA[capistrano]]></category>
		<category><![CDATA[Rails 3.0.3]]></category>

		<guid isPermaLink="false">http://www.42.mach7x.com/?p=292</guid>
		<description><![CDATA[Problem You want to deploy your Rails 3.0.3 in Dreamhost with capistrano, but even though you follow the steps from a previous post here, when you go to the application&#8217;s main page you still get an error: 500 Internal Server Error Solution Thanks to a blog post from Brendon Wilson here, the last missing piece [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
You want to deploy your Rails 3.0.3 in Dreamhost with capistrano, but even though you follow the steps from a previous post <a href="http://www.42.mach7x.com/2011/01/13/rails-3-bundler-dreamhost-capistrano/">here</a>, when you go to the application&#8217;s main page you still get an error: </p>
<p><code>500 Internal Server Error</code></p>
<p><strong>Solution</strong><br />
Thanks to a blog post from Brendon Wilson <a href="http://www.brendonwilson.com/blog/2011/01/07/rails-3-on-dreamhost-via-capistrano/">here</a>, the last missing piece from the puzzle in order to have your application running is to add the following line to the top of your deploy.rb file:</p>
<p><code>require 'bundler/capistrano'</code></p>
<p>and redo your cap deploy.</p>
<p>Thanks Brendon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.42.mach7x.com/2011/01/13/internal-500-server-error-dreamhost-rails-3-0-3-capistrano/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails 3 &#8211; Bundler &#8211; Dreamhost &#8211; Capistrano</title>
		<link>http://www.42.mach7x.com/2011/01/13/rails-3-bundler-dreamhost-capistrano/</link>
		<comments>http://www.42.mach7x.com/2011/01/13/rails-3-bundler-dreamhost-capistrano/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 12:01:39 +0000</pubDate>
		<dc:creator>kosmas</dc:creator>
				<category><![CDATA[Capistrano]]></category>
		<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[bundler]]></category>
		<category><![CDATA[capistrano]]></category>
		<category><![CDATA[Rails 3.0.3]]></category>

		<guid isPermaLink="false">http://www.42.mach7x.com/?p=289</guid>
		<description><![CDATA[Problem You want to deploy your Rails (3.0.3) application to Dreamhost using Capistrano, but you get errors like: bundle command not found or Enter your password to install the bundled RubyGems to your system: Solution You may be able to see in your deploy.rb file a commented section that says the following: As Capistrano executes [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
You want to deploy your Rails (3.0.3) application to Dreamhost using Capistrano, but you get errors like:</p>
<p><code>bundle command not found</code><br />
or<br />
<code>Enter your password to install the bundled RubyGems to your system:</code></p>
<p><strong>Solution</strong><br />
You may be able to see in your deploy.rb file a commented section that says the following:</p>
<blockquote><p>As Capistrano executes in a non-interactive mode and therefore doesn&#8217;t cause<br />
any of your shell profile scripts to be run &#8230;.</p></blockquote>
<p>So in order for capistrano to be able to find your bundle command you should add in your deploy.rb file a line with your paths (ie):</p>
<p><code>default_environment['PATH']='/usr/lib/ruby/gems/1.8/bin:/home/your_name/.gems/bin:/usr/local/bin:/usr/bin:/bin'</code></p>
<p>If you have the previous line your bundle command can run, but if you try to do cap:deploy your bundler will probably give you an error as it would ask for your sudo password. In order to avoid this error and to make it work you have to add another line with your gem path (ie):</p>
<p><code>default_environment['GEM_PATH']='/home/your_name/.gems:/usr/lib/ruby/gems/1.8'</code></p>
<p>making sure that your home directory path for your gems is first in the list.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.42.mach7x.com/2011/01/13/rails-3-bundler-dreamhost-capistrano/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>capistrano deployment fails after dreamhost server move</title>
		<link>http://www.42.mach7x.com/2010/10/08/capistrano-deployment-fails-after-dreamhost-server-move/</link>
		<comments>http://www.42.mach7x.com/2010/10/08/capistrano-deployment-fails-after-dreamhost-server-move/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 10:27:29 +0000</pubDate>
		<dc:creator>kosmas</dc:creator>
				<category><![CDATA[Capistrano]]></category>
		<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[capistrano]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[permission denied]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.42.mach7x.com/?p=259</guid>
		<description><![CDATA[Problem You have set up your capistrano recipe for deployment to dreamhost using password less logins, but after dreamhost moves your git repository server to a different server, the deployment breaks, with &#8216;permission denied&#8217; when trying to get the git repository. Solution As the server was moved you would need to copy your ssh public [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
You have set up your capistrano recipe for deployment to dreamhost using password less logins, but after dreamhost moves your git repository server to a different server, the deployment breaks, with &#8216;permission denied&#8217; when trying to get the git repository.</p>
<p><strong>Solution</strong><br />
As the server was moved you would need to copy your ssh public key from the deployment server to the new server again for the password-less logins to work again.<br />
Follow the details <a href="http://www.42.mach7x.com/2008/02/06/password-less-logins-and-aliases-with-ssh/">here</a> how to copy your public key across, login in once with your password, and after that your capistrano recipe should be working again as normal.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.42.mach7x.com/2010/10/08/capistrano-deployment-fails-after-dreamhost-server-move/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>git and dreamhost : refusing to update checked out branch: refs/heads/master</title>
		<link>http://www.42.mach7x.com/2010/09/30/git-and-dreamhost-refusing-to-update-checked-out-branch-refsheadsmaster/</link>
		<comments>http://www.42.mach7x.com/2010/09/30/git-and-dreamhost-refusing-to-update-checked-out-branch-refsheadsmaster/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 11:43:18 +0000</pubDate>
		<dc:creator>kosmas</dc:creator>
				<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[server moving]]></category>

		<guid isPermaLink="false">http://www.42.mach7x.com/?p=247</guid>
		<description><![CDATA[Problem After dreamhost decided to move my account that hosted the git repository to a new server, first time I&#8217;ve tried to push some changes to the git repository I was faced with the followng error: Counting objects: 13, done. Delta compression using up to 4 threads. Compressing objects: 100% (7/7), done. Writing objects: 100% [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
After dreamhost decided to move my account that hosted the git repository to a new server, first time I&#8217;ve tried to push some changes to the git repository I was faced with the followng error:</p>
<p><code>Counting objects: 13, done.<br />
Delta compression using up to 4 threads.<br />
Compressing objects: 100% (7/7), done.<br />
Writing objects: 100% (7/7), 699 bytes, done.<br />
Total 7 (delta 6), reused 0 (delta 0)<br />
error: refusing to update checked out branch: refs/heads/master<br />
error: By default, updating the current branch in a non-bare repository<br />
error: is denied, because it will make the index and work tree inconsistent<br />
error: with what you pushed, and will require 'git reset --hard' to match<br />
error: the work tree to HEAD.<br />
error:<br />
error: You can set 'receive.denyCurrentBranch' configuration variable to<br />
error: 'ignore' or 'warn' in the remote repository to allow pushing into<br />
error: its current branch; however, this is not recommended unless you<br />
error: arranged to update its work tree to match what you pushed in some<br />
error: other way.<br />
error:<br />
error: To squelch this message and still keep the default behaviour, set<br />
error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.<br />
To ssh://dh_user@dh_domain/home/repository_path/projects/project.git</code></p>
<p><strong>Solution</strong><br />
After searching and finding out various solutions to solve the problem, none of which was specific to a server move, I&#8217;ve tried the following:</p>
<ul>
<li>Followed the steps <a href="http://www.42.mach7x.com/2010/03/12/getting-your-github-git-project-to-dreamhost/">here</a> to set up a new repository project_asm.git</li>
<li>went to local project changed the config file to add the new remote repository</li>
<li>issued <code>git push new_remote master</code></li>
<li>make a code change and then <code>git push</code></li>
</ul>
<p>And everything should work as normal again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.42.mach7x.com/2010/09/30/git-and-dreamhost-refusing-to-update-checked-out-branch-refsheadsmaster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deploying a Rails project in a server that hosts the git repository</title>
		<link>http://www.42.mach7x.com/2010/09/20/deploying-a-rails-project-in-a-server-that-hosts-the-git-repository/</link>
		<comments>http://www.42.mach7x.com/2010/09/20/deploying-a-rails-project-in-a-server-that-hosts-the-git-repository/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 23:07:34 +0000</pubDate>
		<dc:creator>kosmas</dc:creator>
				<category><![CDATA[Capistrano]]></category>
		<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[capistrano]]></category>
		<category><![CDATA[local repository]]></category>

		<guid isPermaLink="false">http://www.42.mach7x.com/?p=228</guid>
		<description><![CDATA[Problem You want to deploy your project in a server (dreamhost), that also hosts your git repository. When you try to do that by only setting the set_repository, you get errors like &#8216;permission denied, please try again&#8217;, even though if you try to checkout the git repository on your server works. Solution Set your :repository [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
You want to deploy your project in a server (dreamhost), that also hosts your git repository. When you try to do that by only setting the set_repository, you get errors like &#8216;permission denied, please try again&#8217;, even though if you try to checkout the git repository on your server works.</p>
<p><strong>Solution</strong><br />
Set your :repository as a file in your host as in:<br />
<code>set :repository, "file:///home/username/git_on_server/projects/repo_name.git"</code></p>
<p>
Then also set up your local_repository, as in:<br />
<code>set :local_repository,  "user_name@server_domain_name:/home/username/git_on_server/projects/repo_name.git"</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.42.mach7x.com/2010/09/20/deploying-a-rails-project-in-a-server-that-hosts-the-git-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails Passenger Staging environment problem in Dreamhost</title>
		<link>http://www.42.mach7x.com/2010/09/09/rails-passenger-staging-environment-problem-in-dreamhost/</link>
		<comments>http://www.42.mach7x.com/2010/09/09/rails-passenger-staging-environment-problem-in-dreamhost/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 09:28:07 +0000</pubDate>
		<dc:creator>kosmas</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Phusion Passenger]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[Passenger]]></category>
		<category><![CDATA[phusion passenger]]></category>
		<category><![CDATA[Staging]]></category>

		<guid isPermaLink="false">http://www.42.mach7x.com/?p=226</guid>
		<description><![CDATA[Problem You want to deploy your rails application using Passenger in Dreamhost, but on a staging environment. It doesn&#8217;t work just changing your Capistrano recipe or your environment files, as the default environment for passenger is &#8216;production&#8217;. Solution Looking at the Passenger documentation here, there are four different ways of achieving that by changing the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
You want to deploy your rails application using Passenger in Dreamhost, but on a staging environment. It doesn&#8217;t work just changing your Capistrano recipe or your environment files, as the default environment for passenger is &#8216;production&#8217;.</p>
<p><strong>Solution</strong><br />
Looking at the Passenger documentation <a href="http://www.modrails.com/documentation/Users%20guide%20Apache.html#rails_env">here</a>, there are four different ways of achieving that by changing the RailsEnv option. If you don&#8217;t want to change the Apache configuration files, and as long as the option AllowOverride is on (which should be on Dreamhost), then you would need to create an .htaccess file in your application&#8217;s public folder with the following:</p>
<p><span class="code">RailsEnv staging</span> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.42.mach7x.com/2010/09/09/rails-passenger-staging-environment-problem-in-dreamhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreamhost &#8211; SquirrelMail &#8211; old-messages folder</title>
		<link>http://www.42.mach7x.com/2010/08/05/dreamhost-squirrelmail-old-messages-folder/</link>
		<comments>http://www.42.mach7x.com/2010/08/05/dreamhost-squirrelmail-old-messages-folder/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 17:14:50 +0000</pubDate>
		<dc:creator>kosmas</dc:creator>
				<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[old-messages]]></category>
		<category><![CDATA[squirrelmail]]></category>

		<guid isPermaLink="false">http://www.42.mach7x.com/?p=210</guid>
		<description><![CDATA[Problem You have left a message in a squirrel mail account in dreamhost for a long time and it gets archived by dreamhost. According to the dreamhost you should be able to get to your archived messages, by looking at the old-messages folder. The problem is that just by logging in to squirrel mail the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
You have left a message in a squirrel mail account in dreamhost for a long time and it gets archived by dreamhost. According to the dreamhost you should be able to get to your archived messages, by looking at the old-messages folder.<br />
The problem is that just by logging in to squirrel mail the folder doesn&#8217;t get displayed on the left hand side.</p>
<p><strong>Solution</strong><br />
Log on to squirrel mail and go to &#8216;Folders&#8217; menu at the top.<br />
In the &#8216;Create Folder&#8217; put &#8216;test&#8217; or anything that you would like in the text box, and make sure that in the dropdown box you select &#8216;INBOX.old-messages&#8217;, so your newly created folder is a subfolder of the &#8216;inbox/old-messages&#8217; folder.<br />
Create the subfolder, refresh the page, and in your left hand the old-messages folder should appear.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.42.mach7x.com/2010/08/05/dreamhost-squirrelmail-old-messages-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thunderbird &#8211; GoogleMail</title>
		<link>http://www.42.mach7x.com/2010/07/21/thunderbird-googlemail/</link>
		<comments>http://www.42.mach7x.com/2010/07/21/thunderbird-googlemail/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 08:27:50 +0000</pubDate>
		<dc:creator>kosmas</dc:creator>
				<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Thunderbird]]></category>

		<guid isPermaLink="false">http://www.42.mach7x.com/?p=207</guid>
		<description><![CDATA[Problem You want to add the Google calendar tab in your thunderbird but you don&#8217;t want to use the standard google mail calendar, but the one setup for your domain. Solution Install the Google Calendar add on in Thunderbird: Tools -> Addons -> Get Add-ons and then search for Calendar (Google Calendar Tab) The when [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
You want to add the Google calendar tab in your thunderbird but you don&#8217;t want to use the standard google mail calendar, but the one setup for your domain.</p>
<p><strong>Solution</strong><br />
Install the Google Calendar add on in Thunderbird:</p>
<p>Tools -> Addons -> Get Add-ons and then search for Calendar (Google Calendar Tab)</p>
<p>The when thunderbird is restarted go and change the default domain for logging in to the calender in:</p>
<p>Tools &#8211; Add-ons -> Extensions</p>
<p>and select the Preferences in the Google Calendar Tab.</p>
<p>from there select the &#8216;Google Apps for your domain&#8217; and then change the URL into something like:</p>
<p>&#8216;http://www.google.com/calendar/hosted/your_domain_hosted_with_google</p>
]]></content:encoded>
			<wfw:commentRss>http://www.42.mach7x.com/2010/07/21/thunderbird-googlemail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>406 Not Acceptable &#8211; Princely &#8211; Dreamhost</title>
		<link>http://www.42.mach7x.com/2010/04/22/406-not-acceptable-princely-dreamhost/</link>
		<comments>http://www.42.mach7x.com/2010/04/22/406-not-acceptable-princely-dreamhost/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 10:14:42 +0000</pubDate>
		<dc:creator>kosmas</dc:creator>
				<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[Prince XML]]></category>
		<category><![CDATA[princely]]></category>

		<guid isPermaLink="false">http://www.42.mach7x.com/?p=193</guid>
		<description><![CDATA[Problem You get a &#8217;406 Not Acceptable&#8217; response from the web server when you try to use the princely plugin for generating pdf on a Ruby on Rails application hosted on dreamhost. Solution Having tried the &#8216;Extra Web Security&#8217; settings in dreamhost Web panel, and setting them on/off did not get very far. Also setting [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
You get a &#8217;406 Not Acceptable&#8217;  response from the web server when you try to use the princely plugin for generating pdf on a Ruby on Rails application hosted on dreamhost.</p>
<p><strong>Solution</strong><br />
Having tried the &#8216;Extra Web Security&#8217; settings in dreamhost Web panel, and setting them on/off did not get very far.<br />
Also setting up an .htaccess file didn&#8217;t seem to make any difference.<br />
So the mod_security settings did not seem to be the cause of the problem.<br />
Having a look at the apache error log files which in the case of the dreamhost ps are in /usr/local/dh/apache2/logs/apache2-ps_name it turns out that the problem was that the path for the prince binary was not setting up correctly in the file vendor/plugins/princely/lib/prince.rb on line 26.<br />
A quick hack to make it work until finding the reason for the problem is to hardcode the path to the prince binary, so:<br />
<span class="code">@exe_path = `which prince`.chomp<br />
if @exe_path.nil?<br />
  @exe_path=&#8217;/usr/local/bin/prince&#8217;<br />
end</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.42.mach7x.com/2010/04/22/406-not-acceptable-princely-dreamhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>undefined method &#8216;remap&#8217; for class &#8216;Magick::Image&#8217;</title>
		<link>http://www.42.mach7x.com/2010/03/18/undefined-method-remap-for-class-magickimage/</link>
		<comments>http://www.42.mach7x.com/2010/03/18/undefined-method-remap-for-class-magickimage/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 10:13:10 +0000</pubDate>
		<dc:creator>kosmas</dc:creator>
				<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[ImageMagick]]></category>
		<category><![CDATA[Magick]]></category>
		<category><![CDATA[Remap]]></category>
		<category><![CDATA[Rmagick]]></category>

		<guid isPermaLink="false">http://www.42.mach7x.com/?p=180</guid>
		<description><![CDATA[Problem You have just deployed your rails application to dreamhost but you are getting this error from passenger. Solution There was a change in the ImageMagic between versions 6.4.3 and 6.4.4 from the affinity function to remap. If you don&#8217;t want, or don&#8217;t have time to recompile the ImageMagick and install the rmagick gem, you [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
You have just deployed your rails application to dreamhost but you are getting this error from passenger.</p>
<p><strong>Solution</strong><br />
There was a change in the ImageMagic between versions 6.4.3 and 6.4.4 from the affinity function to remap.<br />
If you don&#8217;t want, or don&#8217;t have time to recompile the ImageMagick and install the rmagick gem, you can comment out the two declarations for the alias functions, located around lines 782 and 1525 in the file rmagick-2.12.2/lib/RMagick.rb:</p>
<p><span class="code">alias_method :affinity, :remap</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.42.mach7x.com/2010/03/18/undefined-method-remap-for-class-magickimage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

