<?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/"
		>
<channel>
	<title>Comments for SleePyCode</title>
	<atom:link href="http://sleepycode.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://sleepycode.com</link>
	<description>/dev/random</description>
	<lastBuildDate>Sun, 07 Apr 2013 03:43:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on JQuery week calendar reoccurring events by SleePy</title>
		<link>http://sleepycode.com/2011/12/jquery-week-calendar-reoccurring-events/comment-page-1/#comment-11238</link>
		<dc:creator>SleePy</dc:creator>
		<pubDate>Sun, 07 Apr 2013 03:43:41 +0000</pubDate>
		<guid isPermaLink="false">http://sleepycode.com/?p=1636#comment-11238</guid>
		<description><![CDATA[This was merged into their code base, so it shouldn&#039;t be a problem now.

But you still need to specify that its a recurring event]]></description>
		<content:encoded><![CDATA[<p>This was merged into their code base, so it shouldn&#8217;t be a problem now.</p>
<p>But you still need to specify that its a recurring event</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iRedMail on Nginx by SleePy</title>
		<link>http://sleepycode.com/2013/03/iredmail-on-nginx/comment-page-1/#comment-11237</link>
		<dc:creator>SleePy</dc:creator>
		<pubDate>Sat, 06 Apr 2013 21:55:41 +0000</pubDate>
		<guid isPermaLink="false">http://sleepycode.com/?p=1825#comment-11237</guid>
		<description><![CDATA[That sounds like it might be a cached page result.  I had it set in the configuration to move you over to the /webmail by default.
&lt;pre&gt;
        rewrite ^/$		/mail/	permanent;
&lt;/pre&gt;

I would want to guess a your browser is caching the page here.]]></description>
		<content:encoded><![CDATA[<p>That sounds like it might be a cached page result.  I had it set in the configuration to move you over to the /webmail by default.</p>
<pre class="wp-code-highlight prettyprint linenums:1">
        rewrite ^/$		/mail/	permanent;
</pre>
<p>I would want to guess a your browser is caching the page here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iRedMail on Nginx by Noah</title>
		<link>http://sleepycode.com/2013/03/iredmail-on-nginx/comment-page-1/#comment-11236</link>
		<dc:creator>Noah</dc:creator>
		<pubDate>Fri, 05 Apr 2013 22:02:25 +0000</pubDate>
		<guid isPermaLink="false">http://sleepycode.com/?p=1825#comment-11236</guid>
		<description><![CDATA[Yes, I have the config file set up and moved, but it does not detect the subdomain. Maybe it&#039;e because i&#039;ve made it a subdomain of another domain on another box/IP? So when I go to iredmail.mydomain.tld I get the nginx default index.html page, but when I go to /mail or /phpmyadmin, they both work.]]></description>
		<content:encoded><![CDATA[<p>Yes, I have the config file set up and moved, but it does not detect the subdomain. Maybe it&#8217;e because i&#8217;ve made it a subdomain of another domain on another box/IP? So when I go to iredmail.mydomain.tld I get the nginx default index.html page, but when I go to /mail or /phpmyadmin, they both work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iRedMail on Nginx by SleePy</title>
		<link>http://sleepycode.com/2013/03/iredmail-on-nginx/comment-page-1/#comment-11235</link>
		<dc:creator>SleePy</dc:creator>
		<pubDate>Fri, 05 Apr 2013 18:57:58 +0000</pubDate>
		<guid isPermaLink="false">http://sleepycode.com/?p=1825#comment-11235</guid>
		<description><![CDATA[Yes it does work, with a few minor details at the moment.

The commented code is because we can&#039;t do the admin panel on the same domain/ip address as the rest (or the mail section).  The iRedMail Admin panel does not include a way or detect properly that it is in a sub folder.  My own perl scripting skills are weak, but I didn&#039;t see a way to change this without having to maintain those edits on each update.  So I opted for moving the admin panel to its own subdomain and having it operate there.

There is a variable in his templates that appears to try to detect the path, but it seems this doesn&#039;t work or Nginx isn&#039;t passing the proper environment varibles over.  Again, my knowledge of perl is ok, but very limited when it comes to working with it from a running web service aspect.

If you are seeing the &quot;It Works&quot; page, you are hitting the nginx default page, which means its not detecting the subdomain being hit.  Don&#039;t forget to enable those subdomains in the nginx configuration file.
&lt;pre&gt;ln -s /etc/nginx/sites-available/iRedMail /etc/nginx/sites-enabled/
service nginx restart&lt;/pre&gt;

I attempted to contact the iRedMail admin for more information and to share him this blog post, but the support email seems to be broken.  I am hoping he would be able to adjust the admin panel code to detect its sub folder or add a setting for its base url, which then we can simply edit the default nginx configuration file and not need to worry about applying the subdomains/ips.


This was only done in a testing environment as well, I do intend to use it live someday, but at the moment it destroys/breaks down if any other setup has been done to the server.  Which makes it unusable for deploying in existing web/mail servers.]]></description>
		<content:encoded><![CDATA[<p>Yes it does work, with a few minor details at the moment.</p>
<p>The commented code is because we can&#8217;t do the admin panel on the same domain/ip address as the rest (or the mail section).  The iRedMail Admin panel does not include a way or detect properly that it is in a sub folder.  My own perl scripting skills are weak, but I didn&#8217;t see a way to change this without having to maintain those edits on each update.  So I opted for moving the admin panel to its own subdomain and having it operate there.</p>
<p>There is a variable in his templates that appears to try to detect the path, but it seems this doesn&#8217;t work or Nginx isn&#8217;t passing the proper environment varibles over.  Again, my knowledge of perl is ok, but very limited when it comes to working with it from a running web service aspect.</p>
<p>If you are seeing the &#8220;It Works&#8221; page, you are hitting the nginx default page, which means its not detecting the subdomain being hit.  Don&#8217;t forget to enable those subdomains in the nginx configuration file.</p>
<pre class="wp-code-highlight prettyprint linenums:1">ln -s /etc/nginx/sites-available/iRedMail /etc/nginx/sites-enabled/
service nginx restart</pre>
<p>I attempted to contact the iRedMail admin for more information and to share him this blog post, but the support email seems to be broken.  I am hoping he would be able to adjust the admin panel code to detect its sub folder or add a setting for its base url, which then we can simply edit the default nginx configuration file and not need to worry about applying the subdomains/ips.</p>
<p>This was only done in a testing environment as well, I do intend to use it live someday, but at the moment it destroys/breaks down if any other setup has been done to the server.  Which makes it unusable for deploying in existing web/mail servers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iRedMail on Nginx by Noah</title>
		<link>http://sleepycode.com/2013/03/iredmail-on-nginx/comment-page-1/#comment-11234</link>
		<dc:creator>Noah</dc:creator>
		<pubDate>Fri, 05 Apr 2013 08:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://sleepycode.com/?p=1825#comment-11234</guid>
		<description><![CDATA[So does iRedAdmin work? In the file a commented section says it doesn&#039;t work yet. And when I go to the subdomain, I just see the nginx &quot;it works&quot; page.]]></description>
		<content:encoded><![CDATA[<p>So does iRedAdmin work? In the file a commented section says it doesn&#8217;t work yet. And when I go to the subdomain, I just see the nginx &#8220;it works&#8221; page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JQuery week calendar reoccurring events by ali</title>
		<link>http://sleepycode.com/2011/12/jquery-week-calendar-reoccurring-events/comment-page-1/#comment-11231</link>
		<dc:creator>ali</dc:creator>
		<pubDate>Mon, 01 Apr 2013 06:12:21 +0000</pubDate>
		<guid isPermaLink="false">http://sleepycode.com/?p=1636#comment-11231</guid>
		<description><![CDATA[i put that above code in that section,  its not repaeting  every week when i click on next week]]></description>
		<content:encoded><![CDATA[<p>i put that above code in that section,  its not repaeting  every week when i click on next week</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamics CRM notes change ownership unexpectedly by SleePy</title>
		<link>http://sleepycode.com/2013/02/dynamics-crm-notes-change-ownership-unexpectedly/comment-page-1/#comment-11002</link>
		<dc:creator>SleePy</dc:creator>
		<pubDate>Thu, 28 Feb 2013 02:50:20 +0000</pubDate>
		<guid isPermaLink="false">http://sleepycode.com/?p=1822#comment-11002</guid>
		<description><![CDATA[I had ran a test upgrade in dev environment which was VM copys of the DC and CRM server (You need the DC to start CRM services).  So I knew what to expect for changes and incompatibilities.  The notes was missed in my testing.

I am sure this happened after Rollup 12 as well.  I even tested a fresh organization and this occurs.  So its not a bug from an upgraded organization.]]></description>
		<content:encoded><![CDATA[<p>I had ran a test upgrade in dev environment which was VM copys of the DC and CRM server (You need the DC to start CRM services).  So I knew what to expect for changes and incompatibilities.  The notes was missed in my testing.</p>
<p>I am sure this happened after Rollup 12 as well.  I even tested a fresh organization and this occurs.  So its not a bug from an upgraded organization.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamics CRM notes change ownership unexpectedly by Doug S</title>
		<link>http://sleepycode.com/2013/02/dynamics-crm-notes-change-ownership-unexpectedly/comment-page-1/#comment-11001</link>
		<dc:creator>Doug S</dc:creator>
		<pubDate>Wed, 27 Feb 2013 23:03:38 +0000</pubDate>
		<guid isPermaLink="false">http://sleepycode.com/?p=1822#comment-11001</guid>
		<description><![CDATA[Great post.  Same problem.  I am quite confident that this happened after rollup 12, but your fix did indeed correct the problem at our site.  Thank you!

I noticed quite a few changes in rollup 12 that I would not have expected to be included in a Rollup.  It has caused several different problems at our site.  I hope Microsoft is more careful in the future.]]></description>
		<content:encoded><![CDATA[<p>Great post.  Same problem.  I am quite confident that this happened after rollup 12, but your fix did indeed correct the problem at our site.  Thank you!</p>
<p>I noticed quite a few changes in rollup 12 that I would not have expected to be included in a Rollup.  It has caused several different problems at our site.  I hope Microsoft is more careful in the future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SMF in WordPress by Ford Club Bulgaria</title>
		<link>http://sleepycode.com/2012/01/smf-in-wordpress/comment-page-1/#comment-10994</link>
		<dc:creator>Ford Club Bulgaria</dc:creator>
		<pubDate>Fri, 15 Feb 2013 01:10:46 +0000</pubDate>
		<guid isPermaLink="false">http://sleepycode.com/?p=1681#comment-10994</guid>
		<description><![CDATA[That was f*** awesome! Thank you!]]></description>
		<content:encoded><![CDATA[<p>That was f*** awesome! Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chrome closes with CRM 2011 Rollup 12 by Helen</title>
		<link>http://sleepycode.com/2013/02/chrome-closes-with-crm-2011-rollup-12/comment-page-1/#comment-10992</link>
		<dc:creator>Helen</dc:creator>
		<pubDate>Wed, 13 Feb 2013 16:06:34 +0000</pubDate>
		<guid isPermaLink="false">http://sleepycode.com/?p=1807#comment-10992</guid>
		<description><![CDATA[Thanks for this tip, I had been searching for ages for a solution as Chrome kept closing on me after installing Rollup 12 and finally found your solution.  Very grateful!

Thanks]]></description>
		<content:encoded><![CDATA[<p>Thanks for this tip, I had been searching for ages for a solution as Chrome kept closing on me after installing Rollup 12 and finally found your solution.  Very grateful!</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
