<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>MurtadaShah.com</title>
	
	<link>http://murtadashah.com</link>
	<description />
	<lastBuildDate>Wed, 23 Nov 2011 03:48:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/MurtadaShah" /><feedburner:info uri="murtadashah" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>iOS 5 OpenFlow tweaks</title>
		<link>http://feedproxy.google.com/~r/MurtadaShah/~3/Akb8OF-b1h0/</link>
		<comments>http://murtadashah.com/2011/11/23/ios-5-openflow-tweaks/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 03:48:39 +0000</pubDate>
		<dc:creator>murtada</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[serene]]></category>

		<guid isPermaLink="false">http://murtadashah.com/?p=135</guid>
		<description><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/mobile/" title="Mobile">Mobile</a><a href="http://murtadashah.com/category/serene/" title="serene">serene</a></p>Openflow is an open source library that implements an iTunes style cover flow. [http://apparentlogic.com/openflow/] When iOS5 was released, though, it started looking funny &#8211; the covers were coming in from the front instead of the back. The perspective was completely off. This can be fixed with a few tweaks outlined at http://stackoverflow.com/questions/7686506/how-can-i-make-openflow-work-correctly-in-ios-5-0 Specifically the following   ]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/mobile/" title="Mobile">Mobile</a><a href="http://murtadashah.com/category/serene/" title="serene">serene</a></p><p>Openflow is an open source library that implements an iTunes style cover flow. [<a href="http://apparentlogic.com/openflow/" target="_blank">http://apparentlogic.com/openflow/</a>]</p>
<p>When iOS5 was released, though, it started looking funny &#8211; the covers were coming in from the front instead of the back. The perspective was completely off.</p>
<p>This can be fixed with a few tweaks outlined at <a href="http://stackoverflow.com/questions/7686506/how-can-i-make-openflow-work-correctly-in-ios-5-0" target="_blank">http://stackoverflow.com/questions/7686506/how-can-i-make-openflow-work-correctly-in-ios-5-0</a></p>
<p>Specifically the following</p>
<pre><code>    leftTransform = CATransform3DIdentity;
    leftTransform = CATransform3DRotate(leftTransform, SIDE_COVER_ANGLE, 0.0f, 1.0f, 0.0f);
    rightTransform = CATransform3DIdentity;
    rightTransform = CATransform3DRotate(rightTransform, SIDE_COVER_ANGLE, 0.0f, -1.0f, 0.0f);
</code></pre>
<div><span style="font-family: monospace;">Turns into</span></div>
<div>
<pre><code>    leftTransform = CATransform3DTranslate(CATransform3DIdentity, 0, 0, SIDE_COVER_ZPOSITION);
    leftTransform = CATransform3DRotate(leftTransform, SIDE_COVER_ANGLE, 0.0f, 1.0f, 0.0f);
    rightTransform = CATransform3DTranslate(CATransform3DIdentity, 0, 0, SIDE_COVER_ZPOSITION);
    rightTransform = CATransform3DRotate(rightTransform, SIDE_COVER_ANGLE, 0.0f, -1.0f, 0.0f);
</code></pre>
<div><code>in AFOpenFlowView.m</code></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://murtadashah.com/2011/11/23/ios-5-openflow-tweaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://murtadashah.com/2011/11/23/ios-5-openflow-tweaks/</feedburner:origLink></item>
		<item>
		<title>OSX Lion default python v 2.6</title>
		<link>http://feedproxy.google.com/~r/MurtadaShah/~3/VZ4uHlh7Ets/</link>
		<comments>http://murtadashah.com/2011/10/13/osx-lion-default-python-v-2-6/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 07:26:01 +0000</pubDate>
		<dc:creator>murtada</dc:creator>
				<category><![CDATA[serene]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://murtadashah.com/?p=130</guid>
		<description><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/serene/" title="serene">serene</a></p>OSX Lion ships with python 2.7 as the default, but there is a way to make it use 2.6 by default. The following was retrieved from http://stackoverflow.com/questions/6998545/how-can-i-make-python-2-6-my-default-in-mac-os-x-lion $ man python  $ which python /usr/bin/python  $ python -V Python 2.7.1  # # temporarily change version #  $ export VERSIONER_PYTHON_VERSION=2.6 $ python -V Python 2.6.6  $ unset VERSIONER_PYTHON_VERSION ]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/serene/" title="serene">serene</a></p><p>OSX Lion ships with python 2.7 as the default, but there is a way to make it use 2.6 by default.</p>
<p>The following was retrieved from <a href="http://stackoverflow.com/questions/6998545/how-can-i-make-python-2-6-my-default-in-mac-os-x-lion">http://stackoverflow.com/questions/6998545/how-can-i-make-python-2-6-my-default-in-mac-os-x-lion</a></p>
<div>
<pre><code>$ man python </code>
<code>$ which python /usr/bin/python </code>
<code>$ python -V Python 2.7.1 </code>
<code># # temporarily change version # </code>
<code>$ export VERSIONER_PYTHON_VERSION=2.6 $ python -V Python 2.6.6 </code>
<code>$ unset VERSIONER_PYTHON_VERSION $ python -V Python 2.7.1 </code>
<code># # persistently change version # </code>
<code>$ defaults write com.apple.versioner.python Version 2.6 </code>
<code>$ python -V Python 2.6.6 </code></pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://murtadashah.com/2011/10/13/osx-lion-default-python-v-2-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://murtadashah.com/2011/10/13/osx-lion-default-python-v-2-6/</feedburner:origLink></item>
		<item>
		<title>PhpMyadmin #2002 Cannot Log In To MySQL Server</title>
		<link>http://feedproxy.google.com/~r/MurtadaShah/~3/rG-gXvbpABU/</link>
		<comments>http://murtadashah.com/2011/10/13/phpmyadmin-2002-cannot-log-in-to-mysql-server/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 07:17:52 +0000</pubDate>
		<dc:creator>murtada</dc:creator>
				<category><![CDATA[serene]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://murtadashah.com/?p=126</guid>
		<description><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/serene/" title="serene">serene</a></p>If you get a &#8220;#2002 Cannog Log In to MySQL Server&#8221; error from PhpMyAdmin Try changing the &#8220;localhost&#8221; to &#8220;127.0.0.1&#8243; in config.inc.php in the root directory]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/serene/" title="serene">serene</a></p><p>If you get a</p>
<p>&#8220;#2002 Cannog Log In to MySQL Server&#8221; error from PhpMyAdmin</p>
<p>Try changing the &#8220;localhost&#8221; to &#8220;127.0.0.1&#8243; in config.inc.php in the root directory</p>
]]></content:encoded>
			<wfw:commentRss>http://murtadashah.com/2011/10/13/phpmyadmin-2002-cannot-log-in-to-mysql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://murtadashah.com/2011/10/13/phpmyadmin-2002-cannot-log-in-to-mysql-server/</feedburner:origLink></item>
		<item>
		<title>Cleaning Build in XCode 4</title>
		<link>http://feedproxy.google.com/~r/MurtadaShah/~3/jxuoK1q6fNQ/</link>
		<comments>http://murtadashah.com/2011/09/14/cleaning-build-in-xcode-4/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 16:26:10 +0000</pubDate>
		<dc:creator>murtada</dc:creator>
				<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://murtadashah.com/?p=123</guid>
		<description><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/mobile/" title="Mobile">Mobile</a></p>This was a bit confusing &#8211; if you just do a clean in XCode 4 you may still have old files lying around, completely disrupting your test process. There is also no apparent clean all option unlike previous version of XCode. All you have to do is: press the option key and click on Product ]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/mobile/" title="Mobile">Mobile</a></p><p>This was a bit confusing &#8211; if you just do a clean in XCode 4 you may still have old files lying around, completely disrupting your test process.</p>
<p>There is also no apparent clean all option unlike previous version of XCode.</p>
<p>All you have to do is: press the option key and click on Product menu -&gt; the &#8220;Clean&#8221; changes to &#8220;Clean Build Folder&#8221;!</p>
<p>Done</p>
]]></content:encoded>
			<wfw:commentRss>http://murtadashah.com/2011/09/14/cleaning-build-in-xcode-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://murtadashah.com/2011/09/14/cleaning-build-in-xcode-4/</feedburner:origLink></item>
		<item>
		<title>Embedding Custom Fonts in iOS [iPhone, iPad]</title>
		<link>http://feedproxy.google.com/~r/MurtadaShah/~3/fXbKNB5olKg/</link>
		<comments>http://murtadashah.com/2011/09/10/embedding-custom-fonts-in-ios-iphone-ipad/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 19:25:52 +0000</pubDate>
		<dc:creator>murtada</dc:creator>
				<category><![CDATA[digitalfractal]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[serene]]></category>

		<guid isPermaLink="false">http://murtadashah.com/?p=120</guid>
		<description><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/digitalfractal/" title="digitalfractal">digitalfractal</a><a href="http://murtadashah.com/category/mobile/" title="Mobile">Mobile</a><a href="http://murtadashah.com/category/serene/" title="serene">serene</a></p>Though iOS 4 comes with a variety of fonts, you may want to include additional ones for an application. Recently, we had to include Arial Black in our UIWebView for a card viewer application. Here is how: You drag the *.ttf file into the Resources folder Add a row to the *-info.plist file called &#8220;UIAppFonts&#8221; ]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/digitalfractal/" title="digitalfractal">digitalfractal</a><a href="http://murtadashah.com/category/mobile/" title="Mobile">Mobile</a><a href="http://murtadashah.com/category/serene/" title="serene">serene</a></p><p>Though iOS 4 comes with a variety of fonts, you may want to include additional ones for an application.</p>
<p>Recently, we had to include Arial Black in our UIWebView for a card viewer application.</p>
<p>Here is how:</p>
<ol>
<li>You drag the *.ttf file into the Resources folder</li>
<li>Add a row to the *-info.plist file called &#8220;UIAppFonts&#8221; (of type Array)</li>
<li>It will change to say &#8220;Fonts provided by application&#8221;</li>
<li>Add the full name of the font in the Array &#8211; i.e. &#8220;Arial Black.ttf&#8221;</li>
<li>Now you can use the font in your HTML as you would regularly.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://murtadashah.com/2011/09/10/embedding-custom-fonts-in-ios-iphone-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://murtadashah.com/2011/09/10/embedding-custom-fonts-in-ios-iphone-ipad/</feedburner:origLink></item>
		<item>
		<title>Android requires compiler compliance level 5.0 or 6.0. Found ’1.4′ instead</title>
		<link>http://feedproxy.google.com/~r/MurtadaShah/~3/Nj4RJpi0cZI/</link>
		<comments>http://murtadashah.com/2011/09/07/android-requires-compiler-compliance-level-5-0-or-6-0-found-1-4-instead/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 19:56:52 +0000</pubDate>
		<dc:creator>murtada</dc:creator>
				<category><![CDATA[digitalfractal]]></category>
		<category><![CDATA[serene]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://murtadashah.com/?p=117</guid>
		<description><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/digitalfractal/" title="digitalfractal">digitalfractal</a><a href="http://murtadashah.com/category/serene/" title="serene">serene</a><a href="http://murtadashah.com/category/tech/" title="Tech">Tech</a></p>In Eclipse, you may run into the following error while developing Android apps: Android requires compiler compliance level 5.0 or 6.0. Found &#8217;1.4&#8242; instead.  Please use Android Tools &#62; Fix Project Properties. The fix to this is to right click on the project, go to project properties, and under java compiler set it to 1.6 ]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/digitalfractal/" title="digitalfractal">digitalfractal</a><a href="http://murtadashah.com/category/serene/" title="serene">serene</a><a href="http://murtadashah.com/category/tech/" title="Tech">Tech</a></p><p>In Eclipse, you may run into the following error while developing Android apps:</p>
<p>Android requires compiler compliance level 5.0 or 6.0. Found &#8217;1.4&#8242; instead.  Please use Android Tools &gt; Fix Project Properties.</p>
<p>The fix to this is to right click on the project, go to project properties, and under java compiler set it to 1.6 [it may be set to 1.5 or 1.4]</p>
]]></content:encoded>
			<wfw:commentRss>http://murtadashah.com/2011/09/07/android-requires-compiler-compliance-level-5-0-or-6-0-found-1-4-instead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://murtadashah.com/2011/09/07/android-requires-compiler-compliance-level-5-0-or-6-0-found-1-4-instead/</feedburner:origLink></item>
		<item>
		<title>Mosquers Website</title>
		<link>http://feedproxy.google.com/~r/MurtadaShah/~3/G8t3YjqVvtI/</link>
		<comments>http://murtadashah.com/2011/08/21/mosquers-website/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 00:28:23 +0000</pubDate>
		<dc:creator>murtada</dc:creator>
				<category><![CDATA[digitalfractal]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://murtadashah.com/?p=105</guid>
		<description><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/digitalfractal/" title="digitalfractal">digitalfractal</a><a href="http://murtadashah.com/category/tech/" title="Tech">Tech</a></p>Mosquers &#8211; an annual video contest for the Muslim community &#8211; needed their website changed and put up within a couple of days. We were able to integrate a wordpress design for them within 24 hours and give them a highly professional look]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/digitalfractal/" title="digitalfractal">digitalfractal</a><a href="http://murtadashah.com/category/tech/" title="Tech">Tech</a></p><p>Mosquers &#8211; an annual video contest for the Muslim community &#8211; needed their website changed and put up within a couple of days.</p>
<p>We were able to integrate a wordpress design for them within 24 hours and give them a highly professional look.<a href="http://murtadashah.com/wp-content/uploads/2011/08/mosquers-screenshot-20110820.png"><img class="alignnone size-medium wp-image-108" title="mosquers screenshot 20110820" src="http://murtadashah.com/wp-content/uploads/2011/08/mosquers-screenshot-20110820-300x300.png" alt="" width="300" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://murtadashah.com/2011/08/21/mosquers-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://murtadashah.com/2011/08/21/mosquers-website/</feedburner:origLink></item>
		<item>
		<title>Crystal Reports Web Portal</title>
		<link>http://feedproxy.google.com/~r/MurtadaShah/~3/NoL2-MWK4JY/</link>
		<comments>http://murtadashah.com/2011/07/22/crystal-reports-web-portal/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 16:53:16 +0000</pubDate>
		<dc:creator>murtada</dc:creator>
				<category><![CDATA[digitalfractal]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[serene]]></category>

		<guid isPermaLink="false">http://murtadashah.com/?p=102</guid>
		<description><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/digitalfractal/" title="digitalfractal">digitalfractal</a><a href="http://murtadashah.com/category/enterprise/" title="enterprise">enterprise</a><a href="http://murtadashah.com/category/serene/" title="serene">serene</a></p>We just began working on a web portal for crystal reports for a large company. The data warehousing has already been completed. The web portal will eventually include other tools the company currently uses but are not centrally accessible &#8211; i.e. dispatching contractors is still done on excel spreadsheets. The reporting services will make it ]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/digitalfractal/" title="digitalfractal">digitalfractal</a><a href="http://murtadashah.com/category/enterprise/" title="enterprise">enterprise</a><a href="http://murtadashah.com/category/serene/" title="serene">serene</a></p><p>We just began working on a web portal for crystal reports for a large company. The data warehousing has already been completed.</p>
<p>The web portal will eventually include other tools the company currently uses but are not centrally accessible &#8211; i.e. dispatching contractors is still done on excel spreadsheets.</p>
<p>The reporting services will make it easy for the C-level executives to quickly get a pulse of the company. The money spent so far in just data warehousing has already saved them 6 figures.</p>
<p>More on the technical challenges of this soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://murtadashah.com/2011/07/22/crystal-reports-web-portal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://murtadashah.com/2011/07/22/crystal-reports-web-portal/</feedburner:origLink></item>
		<item>
		<title>PhoneGap on XCode 4.0</title>
		<link>http://feedproxy.google.com/~r/MurtadaShah/~3/ZYOiRv-BXhU/</link>
		<comments>http://murtadashah.com/2011/06/28/phonegap-on-xcode-4-0/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 19:52:58 +0000</pubDate>
		<dc:creator>murtada</dc:creator>
				<category><![CDATA[digitalfractal]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[serene]]></category>

		<guid isPermaLink="false">http://murtadashah.com/?p=92</guid>
		<description><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/digitalfractal/" title="digitalfractal">digitalfractal</a><a href="http://murtadashah.com/category/mobile/" title="Mobile">Mobile</a><a href="http://murtadashah.com/category/serene/" title="serene">serene</a></p>If you are using the open source mobile framework PhoneGap to develop mobile applications, you may run into a problem first running it on the newly released XCode 4.0 development tool. When you try to go through the Phonegap Tutorial, you will notice that on Step 4 there is no such folder called &#8220;www&#8221;. To ]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/digitalfractal/" title="digitalfractal">digitalfractal</a><a href="http://murtadashah.com/category/mobile/" title="Mobile">Mobile</a><a href="http://murtadashah.com/category/serene/" title="serene">serene</a></p><p>If you are using the <a href="http://phonegap.com/">open source mobile framework PhoneGap</a> to develop mobile applications, you may run into a problem first running it on the newly released XCode 4.0 development tool.</p>
<p>When you try to go through the <a href="http://www.phonegap.com/start">Phonegap Tutorial</a>, you will notice that on Step 4 there is no such folder called &#8220;www&#8221;.</p>
<p>To fix this issue, simply right click on the project itself and click &#8220;show in finder&#8221; -&gt; there you will see the &#8220;WWW&#8221; folder along with index.html. Now drag this folder into the XCode project and voila, www is present.</p>
]]></content:encoded>
			<wfw:commentRss>http://murtadashah.com/2011/06/28/phonegap-on-xcode-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://murtadashah.com/2011/06/28/phonegap-on-xcode-4-0/</feedburner:origLink></item>
		<item>
		<title>Mailserver Setups: Verify Your Timezone</title>
		<link>http://feedproxy.google.com/~r/MurtadaShah/~3/6oWciFlkAAQ/</link>
		<comments>http://murtadashah.com/2011/06/09/mailserver-setups-verify-your-timezone/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 02:01:52 +0000</pubDate>
		<dc:creator>murtada</dc:creator>
				<category><![CDATA[serene]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://murtadashah.com/?p=75</guid>
		<description><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/serene/" title="serene">serene</a><a href="http://murtadashah.com/category/tech/" title="Tech">Tech</a></p>We have been busy setting up the mail server on one of our web properties. Instead of paying a 3rd party such as Vertical Response $500+ / month, we decided to purchase a $500 software [Active Campaign] and set it up. Within the next few days, we will post a complete tutorial, but we noticed ]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://murtadashah.com/category/serene/" title="serene">serene</a><a href="http://murtadashah.com/category/tech/" title="Tech">Tech</a></p><p>We have been busy setting up the mail server on one of our web properties. Instead of paying a 3rd party such as Vertical Response $500+ / month, we decided to purchase a $500 software [Active Campaign] and set it up.</p>
<p>Within the next few days, we will post a complete tutorial, but we noticed one issue that others may face and have sleepless nights over.</p>
<p>It is good practice to have a DKIM signature [It is a digital signature verifying that the email did come from your domain - without it, your delivery rates will drop significantly].</p>
<p>Anyhow, you may want to send an email to sa-test@sendmail.net to verify that your email is working ok. It will reply with error messages if applicable.</p>
<p>If you continue to get an error, scroll down to see the header of the reply message &#8211; if it says that the time is in the future, go ahead and install ntp and sync your time&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://murtadashah.com/2011/06/09/mailserver-setups-verify-your-timezone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://murtadashah.com/2011/06/09/mailserver-setups-verify-your-timezone/</feedburner:origLink></item>
	</channel>
</rss>

