<?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/"
	>

<channel>
	<title>Morroni Blog</title>
	<atom:link href="http://blog.morroni.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.morroni.com</link>
	<description>Possibly Useful Information from Morroni Technologies</description>
	<pubDate>Mon, 16 Aug 2010 15:17:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using the patch utility to remove a patch on Magento Enterprise Edition</title>
		<link>http://blog.morroni.com/2010/07/16/using-the-patch-utility-to-remove-a-patch-on-magento-enterprise-edition/</link>
		<comments>http://blog.morroni.com/2010/07/16/using-the-patch-utility-to-remove-a-patch-on-magento-enterprise-edition/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 15:02:07 +0000</pubDate>
		<dc:creator>jwatson</dc:creator>
		
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://blog.morroni.com/?p=234</guid>
		<description><![CDATA[I am making an assumption here that you already know the normal forward-usage of the patch command. If you&#8217;re unversed In case you didn&#8217;t want to decipher the entire man page just yet, you&#8217;re in luck. I came across an instance where I had to remove a previous patch file from the Magento Enterprise code-base. [...]]]></description>
			<content:encoded><![CDATA[<p>I am making an assumption here that you already know the normal forward-usage of the patch command. If you&#8217;re unversed In case you didn&#8217;t want to decipher the entire man page just yet, you&#8217;re in luck. I came across an instance where I had to remove a previous patch file from the Magento Enterprise code-base. The patch was originally applied as so:</p>
<p>patch -p0 &lt; firstpatch.patch</p>
<p>Problems ensued, and I was given a new patch, however it was a cumulative patch so it couldn&#8217;t be laid over the first patch. So how to remove? After a man-page reading, it&#8217;s quite a breeze. You need the original patch to be removed, and use the patch number you used in the first patching instance. In this case it equates to the following:</p>
<p>patch -R -p0 &lt; firstpatch.patch</p>
<p>now you can add the new patch.</p>
<p>patch -p0 &lt; secondpatch.patch</p>
<p>Hopefully this will save someone a man-page reading on a small terminal in a dimly lit server room. <img src='http://blog.morroni.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.morroni.com/2010/07/16/using-the-patch-utility-to-remove-a-patch-on-magento-enterprise-edition/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Setup IntelliJ 9 for Lift Framework Development</title>
		<link>http://blog.morroni.com/2010/07/14/setup-intellij-9-for-lift-framework-development/</link>
		<comments>http://blog.morroni.com/2010/07/14/setup-intellij-9-for-lift-framework-development/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 19:00:09 +0000</pubDate>
		<dc:creator>lmorroni</dc:creator>
		
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://blog.morroni.com/?p=198</guid>
		<description><![CDATA[This small tutorial may seem overly simplified but I think that a lot of newbies out there will find it helpful.  I also would consider using sbt instead of just maven but this tutorial covers just maven.
I have been developing using Lift for a little over a year now and I found the IDE [...]]]></description>
			<content:encoded><![CDATA[<p>This small tutorial may seem overly simplified but I think that a lot of newbies out there will find it helpful.  I also would consider using sbt instead of just maven but this tutorial covers just maven.<br />
I have been developing using Lift for a little over a year now and I found the IDE choices grim.  I tried Eclipse, Netbeans and IntelliJ.  My clear favorite is IntelliJ.  It does not specifically support the Lift Framework but it does have great support for Scala and Maven.  Here&#8217;s how I set things up.</p>
<p>Download and Install Maven 2.2.1:  http://maven.apache.org/download.html</p>
<p>You MUST set your M2_HOME environment variable.  Methods to accomplish this vary from system to system.</p>
<p>Go to a directory where you want to create your Lift app and run something like this(varies depending on archetype)</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">mvn archetype:generate <span style="color: #660033;">-U</span>        \
     <span style="color: #660033;">-DarchetypeGroupId</span>=net.liftweb        \
     <span style="color: #660033;">-DarchetypeArtifactId</span>=lift-archetype-basic        \
     <span style="color: #660033;">-DarchetypeVersion</span>=<span style="color: #000000;">2.0</span>        \
     <span style="color: #660033;">-DremoteRepositories</span>=http:<span style="color: #000000; font-weight: bold;">//</span>scala-tools.org<span style="color: #000000; font-weight: bold;">/</span>repo-releases        \
     <span style="color: #660033;">-Dversion</span>=<span style="color: #000000;">0.1</span>		\
     <span style="color: #660033;">-DgroupId</span>=com.morroni.jagger <span style="color: #660033;">-DartifactId</span>=store-jagger</pre></td></tr></table></div>

<p>Download and install intelliJ 9.02 Community Edition or Ultimate:  http://www.jetbrains.com/idea/download/</p>
<p>Open up IntelliJ and goto the menu item IntelliJ->Preferences.  Choose the Plugins menu on the left and click the Available tab at the top.  Type &#8220;scala&#8221; to search for the relevant plugins.  Highlight the Scala plugin and click the little disk/arrow icon to install them.<br />
<a href="http://blog.morroni.com/wp-content/uploads/2010/07/plugins1.png"><img src="http://blog.morroni.com/wp-content/uploads/2010/07/plugins1-300x208.png" alt="plugins1" title="plugins1" width="300" height="208" class="alignnone size-medium wp-image-218" /></a></p>
<p>Open up IntelliJ and goto File->New Project</p>
<p>Choose Import project from external model and click Next<br />
<a href="http://blog.morroni.com/wp-content/uploads/2010/07/openproject.png"><img src="http://blog.morroni.com/wp-content/uploads/2010/07/openproject-300x252.png" alt="openproject" title="openproject" width="300" height="252" class="alignnone size-medium wp-image-208" /></a></p>
<p>Choose Maven and click Next<br />
<a href="http://blog.morroni.com/wp-content/uploads/2010/07/openproject2.png"><img src="http://blog.morroni.com/wp-content/uploads/2010/07/openproject2-300x233.png" alt="openproject2" title="openproject2" width="300" height="233" class="alignnone size-medium wp-image-210" /></a></p>
<p>Enter the location of the folder where you generated your maven project and click next<br />
<a href="http://blog.morroni.com/wp-content/uploads/2010/07/openproject3.png"><img src="http://blog.morroni.com/wp-content/uploads/2010/07/openproject3-300x236.png" alt="openproject3" title="openproject3" width="300" height="236" class="alignnone size-medium wp-image-212" /></a></p>
<p>Select both profile radio boxes and click Next<br />
<a href="http://blog.morroni.com/wp-content/uploads/2010/07/openproject4.png"><img src="http://blog.morroni.com/wp-content/uploads/2010/07/openproject4-300x234.png" alt="openproject4" title="openproject4" width="300" height="234" class="alignnone size-medium wp-image-215" /></a></p>
<p>Make sure the only Maven project available is selected and click Next<br />
<a href="http://blog.morroni.com/wp-content/uploads/2010/07/openproject5.png"><img src="http://blog.morroni.com/wp-content/uploads/2010/07/openproject5-300x234.png" alt="openproject5" title="openproject5" width="300" height="234" class="alignnone size-medium wp-image-216" /></a></p>
<p>Click Finish. </p>
<p>When you are ready to run your project, right click on it and select Run &#8220;store-jagger [jetty:run]&#8221;<br />
<a href="http://blog.morroni.com/wp-content/uploads/2010/07/runit.png"><img src="http://blog.morroni.com/wp-content/uploads/2010/07/runit-160x300.png" alt="runit" title="runit" width="160" height="300" class="alignnone size-medium wp-image-224" /></a></p>
<p>Open up a web browser and go to http://localhost:8080<br />
<a href="http://blog.morroni.com/wp-content/uploads/2010/07/scfreenshot.png"><img src="http://blog.morroni.com/wp-content/uploads/2010/07/scfreenshot-300x139.png" alt="scfreenshot" title="scfreenshot" width="300" height="139" class="alignnone size-medium wp-image-229" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.morroni.com/2010/07/14/setup-intellij-9-for-lift-framework-development/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Centos 5.4, PHP, and Microsoft SQL Server</title>
		<link>http://blog.morroni.com/2010/04/29/centos-54-php-and-microsoft-sql-server/</link>
		<comments>http://blog.morroni.com/2010/04/29/centos-54-php-and-microsoft-sql-server/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 19:01:47 +0000</pubDate>
		<dc:creator>lmorroni</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.morroni.com/?p=188</guid>
		<description><![CDATA[I ran into this problem and got stuck on it for a day so I thought I would post.  The only way to get PHP to talk to Microsoft SQL server properly on a  Redhat/Centos 5.4 build is to ensure that you have disabled SELinux at start-up.  This option is available from the install menu [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into this problem and got stuck on it for a day so I thought I would post.  The only way to get PHP to talk to Microsoft SQL server properly on a  Redhat/Centos 5.4 build is to ensure that you have disabled SELinux at start-up.  This option is available from the install menu but can also be achieved by modifying the boot parameters.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.morroni.com/2010/04/29/centos-54-php-and-microsoft-sql-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Lift Framework Tips</title>
		<link>http://blog.morroni.com/2010/03/24/lift-framework-tips/</link>
		<comments>http://blog.morroni.com/2010/03/24/lift-framework-tips/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 18:27:25 +0000</pubDate>
		<dc:creator>lmorroni</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://blog.morroni.com/?p=174</guid>
		<description><![CDATA[Displaying a menu item only if a user is logged in.  If they are not logged in, route them to /login
This is inside Boot.scala

1
2
3
4
val LoggedIn = If&#40;&#40;&#41; =&#38;gt; User.loggedIn_?, &#40;&#41; =&#38;gt; RedirectResponse&#40;&#34;/login&#34;&#41;&#41;
val myLoc = Loc&#40;&#34;SecurePage&#34;, &#34;securePage&#34; :: Nil, &#34;Secure Page&#34;, LoggedIn&#41;
val myMenu = Menu&#40;myLoc&#41;
val entries = myMenu ::Menu&#40;Loc&#40;&#34;Home&#34;, List&#40;&#34;index&#34;&#41;, &#34;Home&#34;&#41;&#41; ::: User.sitemap

Generate the api [...]]]></description>
			<content:encoded><![CDATA[<p>Displaying a menu item only if a user is logged in.  If they are not logged in, route them to /login</p>
<p>This is inside Boot.scala</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="scala" style="font-family:monospace;"><span style="color: #0000ff; font-weight: bold;">val</span> LoggedIn <span style="color: #000080;">=</span> If<span style="color: #F78811;">&#40;</span><span style="color: #F78811;">&#40;</span><span style="color: #F78811;">&#41;</span> <span style="color: #000080;">=&amp;</span>gt<span style="color: #000080;">;</span> User.<span style="color: #000000;">loggedIn_</span><span style="color: #000080;">?</span>, <span style="color: #F78811;">&#40;</span><span style="color: #F78811;">&#41;</span> <span style="color: #000080;">=&amp;</span>gt<span style="color: #000080;">;</span> RedirectResponse<span style="color: #F78811;">&#40;</span><span style="color: #6666FF;">&quot;/login&quot;</span><span style="color: #F78811;">&#41;</span><span style="color: #F78811;">&#41;</span>
<span style="color: #0000ff; font-weight: bold;">val</span> myLoc <span style="color: #000080;">=</span> Loc<span style="color: #F78811;">&#40;</span><span style="color: #6666FF;">&quot;SecurePage&quot;</span>, <span style="color: #6666FF;">&quot;securePage&quot;</span> <span style="color: #000080;">::</span> Nil, <span style="color: #6666FF;">&quot;Secure Page&quot;</span>, LoggedIn<span style="color: #F78811;">&#41;</span>
<span style="color: #0000ff; font-weight: bold;">val</span> myMenu <span style="color: #000080;">=</span> Menu<span style="color: #F78811;">&#40;</span>myLoc<span style="color: #F78811;">&#41;</span>
<span style="color: #0000ff; font-weight: bold;">val</span> entries <span style="color: #000080;">=</span> myMenu <span style="color: #000080;">::</span>Menu<span style="color: #F78811;">&#40;</span>Loc<span style="color: #F78811;">&#40;</span><span style="color: #6666FF;">&quot;Home&quot;</span>, List<span style="color: #F78811;">&#40;</span><span style="color: #6666FF;">&quot;index&quot;</span><span style="color: #F78811;">&#41;</span>, <span style="color: #6666FF;">&quot;Home&quot;</span><span style="color: #F78811;">&#41;</span><span style="color: #F78811;">&#41;</span> <span style="color: #000080;">:::</span> User.<span style="color: #000000;">sitemap</span></pre></td></tr></table></div>

<p>Generate the api documents for a lift/scala project</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">mvn scala:doc</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.morroni.com/2010/03/24/lift-framework-tips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Email settings for avoiding quota issues</title>
		<link>http://blog.morroni.com/2010/01/25/email-settings-for-avoiding-quota-issues/</link>
		<comments>http://blog.morroni.com/2010/01/25/email-settings-for-avoiding-quota-issues/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 21:08:32 +0000</pubDate>
		<dc:creator>jwatson</dc:creator>
		
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://blog.morroni.com/?p=170</guid>
		<description><![CDATA[You may receive trouble if you receive so much email that your quota of space on the mailserver goes beyond the limits. There are a few things you can do to stop this from happening, and if it is too late, you can recover some space and your email will begin functioning properly thereafter.
First off, [...]]]></description>
			<content:encoded><![CDATA[<p>You may receive trouble if you receive so much email that your quota of space on the mailserver goes beyond the limits. There are a few things you can do to stop this from happening, and if it is too late, you can recover some space and your email will begin functioning properly thereafter.</p>
<p>First off, you can set your email client to delete the messages from your trashcan when you close the application.</p>
<p>If you are running Mozilla Thunderbird:<br />
1) Go to the Tools -&gt; Account Settings from the menu.</p>
<p>2) Make sure your account is expanded in the left pane and Select &#8220;Server Settings&#8221; underneath your account.</p>
<p>3) Make sure you have checked &#8220;Empty Trash on Exit&#8221;. Now when you close your email client, it will automatically delete your trashed items and they will no longer be taking up space on the server.</p>
<p>Maybe your account is locked because you are already over quota? You can use the webmail interface to get into your email and delete large old messages.</p>
<p>1) go to &lt;a href=&#8221;http://morronimail.com&#8221;&gt;morronimail.com&lt;/a&gt; and log in using your email user id and password.</p>
<p>2) click on the &#8220;size&#8221; label on the far right column of your email listings. this will sort your email by size. If if is not sorted largest to smallest, click on it again to attain this sort order.</p>
<p>3) you can click the checkbox on the left of your older and larger emails, especially those with attachments (PDF, Images, etc) that you no longer need. Click the delete option at the the top and it will place a strike-through font to all the emails you selected. Now click the purge emails option, and they will be permanently deleted, thus freeing space up on your account.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.morroni.com/2010/01/25/email-settings-for-avoiding-quota-issues/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to setup a Merchant Account</title>
		<link>http://blog.morroni.com/2010/01/25/how-to-setup-a-merchant-account/</link>
		<comments>http://blog.morroni.com/2010/01/25/how-to-setup-a-merchant-account/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 19:20:22 +0000</pubDate>
		<dc:creator>jwatson</dc:creator>
		
		<category><![CDATA[ecommerce]]></category>

		<guid isPermaLink="false">http://blog.morroni.com/?p=165</guid>
		<description><![CDATA[If you will be creating a web store, you will definitely need to setup a Merchant Account and a payment gateway. When creating a merchant account, it is a good practice to start with a bank you already work with. You can certainly shop around for better rates. For a payment gateway we recommend authorize.net
What [...]]]></description>
			<content:encoded><![CDATA[<p>If you will be creating a web store, you will definitely need to setup a Merchant Account and a payment gateway. When creating a merchant account, it is a good practice to start with a bank you already work with. You can certainly shop around for better rates. For a payment gateway we recommend <a href="http://authorize.net">authorize.net</a></p>
<p>What to know for your Merchant Account application process:<br />
1) If you have started development of your e-commerce site, get your merchant account under wraps as soon as possible. It takes time to work out a deal and even get approval from a bank, and if you are shopping around for the best deal, it will take even longer.</p>
<p>2) Know your products, and know your sales potential. You will need to offer the banks prospective sales numbers when negotiating the terms of your merchant account.</p>
<p>3) Be prepared to deal with fraud. Credit fraud happens. What will your recourse be if someone uses a stolen credit card through your e-commerce site? There are certainly steps to take to head this off. New sites most likely take advantage of better security measures such as Address Verification for the cardholder, as well as confirmation of CV2 codes. (the numbers on the back of your credit card) </p>
<p>Payment Gateways:<br />
Payment gateways work through a secure encrypted route of communication between your e-commerce site and credit authorization services for validating transactions. They are a necessary safeguard against credit fraud. Additionally, you can use services through a payment gateway to process repeated billing cycles. This would be an additional plus if the services you are rendering are to be charged in some recurring basis. </p>
<p>With a merchant account and a proper payment gateway, you will be properly equipped to enter the e-commerce realm. If you are interested in more information on our e-commerce solutions, please <a href="http://morroni.com/contact.htm">contact us</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.morroni.com/2010/01/25/how-to-setup-a-merchant-account/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How do I set up my e-mail in Microsoft Outlook?</title>
		<link>http://blog.morroni.com/2010/01/21/how-do-i-set-up-my-e-mail-in-microsoft-outlook/</link>
		<comments>http://blog.morroni.com/2010/01/21/how-do-i-set-up-my-e-mail-in-microsoft-outlook/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 21:51:46 +0000</pubDate>
		<dc:creator>jwatson</dc:creator>
		
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://blog.morroni.com/?p=151</guid>
		<description><![CDATA[Method 1: Microsoft Office Outlook 2007

Start Outlook.
 On the Tools menu, click Account Settings.
 Click New.
 Click Microsoft Exchange, POP3, IMAP, or HTTP, and then click Next.
 In the Auto Account Setup dialog box, click to select the Manually configure server settings or additional server types check box, and then click Next.
 Click Internet E-Mail, [...]]]></description>
			<content:encoded><![CDATA[<h3>Method 1: Microsoft Office Outlook 2007</h3>
<ol>
<li>Start Outlook.</li>
<li> On the Tools menu, click Account Settings.</li>
<li> Click New.</li>
<li> Click Microsoft Exchange, POP3, IMAP, or HTTP, and then click Next.</li>
<li> In the Auto Account Setup dialog box, click to select the Manually configure server settings or additional server types check box, and then click Next.</li>
<li> Click Internet E-Mail, and then click Next.</li>
<li> In the Server Information section, select IMAP for Account Type.</li>
<li> In the Your Name box, enter your name exactly as you want it to appear to recipients.</li>
<li>In the E-mail Address box, type your e-mail address, for example, jdoe@example.com</li>
<li> In the User Name box, type your account name. Your account name is comprised of a &#8220;mor&#8221; prefix, and then four numbers.</li>
<li> In the Password box, type your password.</li>
<li> In the Incoming mail server box, type the name of your IMAP4 server, in this case &#8220;mailserver.morronimail.com&#8221;</li>
<li> In the Outgoing mail server (SMTP) box, type the name of your SMTP server, in this case &#8220;smtpserver.morronimail.com&#8221;</li>
<p>    Note IMAP4 is a retrieval protocol. You must have SMTP to send your messages.</p>
<li> Click Next after you have completed entering this configuration information, and then click Finish.</li>
</ol>
<h3>Method 2: Microsoft Office Outlook 2003 and earlier versions of Outlook</h3>
<ol>
<li>Start Outlook.</li>
<li>On the Tools menu, click E-mail Accounts.</li>
<p><img src="http://blog.morroni.com/wp-content/uploads/2010/01/w_outlook2k3_11.png" alt="w_outlook2k3_11" title="w_outlook2k3_11" width="546" height="412" class="alignnone size-full wp-image-159" /></p>
<li>Under E-mail Accounts, click Add a new e-mail account, and then click Next.</li>
<p>    <img class="alignnone size-full wp-image-153" title="w_outlook2k3_2" src="http://blog.morroni.com/wp-content/uploads/2010/01/w_outlook2k3_2.png" alt="w_outlook2k3_2" width="577" height="451" /></p>
<li>Click IMAP as the type of account that you are creating, and then click Next.</li>
<p>    <img class="alignnone size-full wp-image-154" title="w_outlook2k3_3" src="http://blog.morroni.com/wp-content/uploads/2010/01/w_outlook2k3_3.png" alt="w_outlook2k3_3" width="574" height="448" /></p>
<li>In the Your Name box, enter your name exactly as you would like it to appear to recipients.</li>
<li>In the E-mail Address box, type your e-mail address., for example, jdoe@example.com</li>
<li>In the User Name box, type your account name. Your account name is comprised of a &#8220;mor&#8221; prefix, and then four numbers.</li>
<li>In the Password box, type your password.</li>
<li>In the Incoming mail server (IMAP) box, type the name of your IMAP4 server,in this case &#8220;mailserver.morronimail.com&#8221;</li>
<li>In the Outgoing mail server (SMTP) box, type the name of your SMTP server, in this case &#8220;smtpserver.morronimail.com&#8221;</li>
<p>    <img class="alignnone size-full wp-image-155" title="w_outlook2k3_4" src="http://blog.morroni.com/wp-content/uploads/2010/01/w_outlook2k3_4.png" alt="w_outlook2k3_4" width="574" height="447" /></p>
<li>Click Next after you have completed entering this configuration information, and then click Finish.</li>
<p>    <img class="alignnone size-full wp-image-156" title="w_outlook2k3_5" src="http://blog.morroni.com/wp-content/uploads/2010/01/w_outlook2k3_5.png" alt="w_outlook2k3_5" width="575" height="447" />
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.morroni.com/2010/01/21/how-do-i-set-up-my-e-mail-in-microsoft-outlook/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Things to remember when disabling SELinux</title>
		<link>http://blog.morroni.com/2010/01/21/things-to-remember-when-disabling-selinux/</link>
		<comments>http://blog.morroni.com/2010/01/21/things-to-remember-when-disabling-selinux/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 20:31:34 +0000</pubDate>
		<dc:creator>jwatson</dc:creator>
		
		<category><![CDATA[operating systems]]></category>

		<category><![CDATA[system admin]]></category>

		<guid isPermaLink="false">http://blog.morroni.com/?p=141</guid>
		<description><![CDATA[Perhaps SELinux was provided by default from your linux distribution of choice, or maybe it has been determined that it is not needed anymore for whatever applications the server is currently performing. Disabling SELinux is a matter of changing a line in your selinux config. The normal location would be to look in /etc/selinux/config and [...]]]></description>
			<content:encoded><![CDATA[<p>Perhaps SELinux was provided by default from your linux distribution of choice, or maybe it has been determined that it is not needed anymore for whatever applications the server is currently performing. Disabling SELinux is a matter of changing a line in your selinux config. The normal location would be to look in /etc/selinux/config and change the value of the SELINUX line.</p>
<pre><span><span class="code">
# SELinux turned off
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
<strong>SELINUX=disabled</strong>
</span>
</span></pre>
<p>However, we&#8217;re not done yet! Before you reboot your system you need to make sure that your<br />
kernel boot line isn&#8217;t expecting SELinux to be active. We can set it to be specifically deactivated as<br />
follows:</p>
<p>with Grub:</p>
<p>edit your /boot/grub/menu.lst</p>
<pre><span><span class="code">
title  Ubuntu 9.04, kernel 2.6.28-11-generic
uuid   28cd3d96-e22c-4230-a63d-f7a73ec323e3
kernel  /boot/vmlinuz-2.6.28-11-generic root=/dev/sda3 ro rootdelay=10 quiet splash selinux=0
initrd  /boot/initrd.img-2.6.28-11-generic
quiet
</span></span></pre>
<p><strong>Note:</strong> you may also need to add <strong>enforcing=0</strong> to your kernel line, depending on your setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.morroni.com/2010/01/21/things-to-remember-when-disabling-selinux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Setup email for thunderbird in Windows</title>
		<link>http://blog.morroni.com/2010/01/08/setup-email-for-thunderbird-in-windows/</link>
		<comments>http://blog.morroni.com/2010/01/08/setup-email-for-thunderbird-in-windows/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 20:42:31 +0000</pubDate>
		<dc:creator>jwatson</dc:creator>
		
		<category><![CDATA[support]]></category>

		<category><![CDATA[how-to]]></category>

		<guid isPermaLink="false">http://blog.morroni.com/?p=103</guid>
		<description><![CDATA[
You can download the latest version of Mozilla Thunderbird from this page:
http://www.mozilla.com/en-US/thunderbird
After the download completes, double click on the executable. It will start the install process. If a window appears asking you if you want to run the program, click &#8220;run&#8221;.
You will see the intro screen to the installation proccess like so: simply click &#8220;next&#8221;

Select [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>You can download the latest version of Mozilla Thunderbird from this page:<br />
<a href="http://www.mozilla.com/en-US/thunderbird/">http://www.mozilla.com/en-US/thunderbird</a><br />
After the download completes, double click on the executable. It will start the install process. If a window appears asking you if you want to run the program, click &#8220;run&#8221;.</li>
<li>You will see the intro screen to the installation proccess like so: simply click &#8220;next&#8221;
<p><div id="attachment_104" class="wp-caption alignnone" style="width: 514px"><img class="size-full wp-image-104" title="intro_installscreen" src="http://blog.morroni.com/wp-content/uploads/2010/01/intro_installscreen.png" alt="Installation intro screen" width="504" height="395" /><p class="wp-caption-text">Installation intro screen</p></div></li>
<li>Select Standard Install on the next screen and press next.<img class="alignnone size-full wp-image-105" title="install_2" src="http://blog.morroni.com/wp-content/uploads/2010/01/install_2.png" alt="install_2" width="503" height="394" /></li>
<li>Verify installation Location and click next<img class="alignnone size-full wp-image-107" title="install_3" src="http://blog.morroni.com/wp-content/uploads/2010/01/install_3.png" alt="install_3" width="503" height="392" /></li>
<li>Installation will proceed, make sure the &#8220;Launch Thunderbird&#8221; checkbox is checked and click finish to proceed.</li>
<li><img class="alignnone size-full wp-image-108" title="install_4" src="http://blog.morroni.com/wp-content/uploads/2010/01/install_4.png" alt="install_4" width="504" height="393" /><img class="alignnone size-full wp-image-109" title="install_final" src="http://blog.morroni.com/wp-content/uploads/2010/01/install_final.png" alt="install_final" width="505" height="396" /></li>
<li>Now that the installation is complete, we can configure the email settings in the application. When thunderbird first starts up, you see this screen:<img class="alignnone size-full wp-image-111" title="config_1" src="http://blog.morroni.com/wp-content/uploads/2010/01/config_1.png" alt="config_1" width="632" height="225" />as you can see, I filled in my name, my email address and my password. press continue. Thunderbird will try and autodetect settings for you but we have to specify more information yet. Click continue.<img class="alignnone size-full wp-image-112" title="config_2" src="http://blog.morroni.com/wp-content/uploads/2010/01/config_2.png" alt="config_2" width="632" height="342" /></li>
</ol>
<p>Click Stop on this screen. We want to correct the information as follows. Click the Manual Setup button.</p>
<p>username is your supplied username for the system.</p>
<p>incoming: mailserver.morronimail.com , port 143, SSL/TLS</p>
<p>outgoing: smtpserver.morronimail.com, port 587, None</p>
<p><img class="alignnone size-full wp-image-117" title="settints2" src="http://blog.morroni.com/wp-content/uploads/2010/01/settints2.png" alt="settints2" width="588" height="570" /></p>
<p>and the SMTP settings (which can be reached by clicking on outgoing smtp server on the left pane and then pressing &#8220;edit&#8221; or &#8220;add&#8221; if there is no selection</p>
<p><img class="alignnone size-full wp-image-114" title="config_smtp" src="http://blog.morroni.com/wp-content/uploads/2010/01/config_smtp.png" alt="config_smtp" width="591" height="577" /></p>
<p>when you&#8217;re done with all the settings press ok and send yourself a test email. If you are prompted for your account password, enter it and select the box to remember the password. You&#8217;re set!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.morroni.com/2010/01/08/setup-email-for-thunderbird-in-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Setup IMAP E-mail on Apple Mail</title>
		<link>http://blog.morroni.com/2010/01/08/setup-imap-e-mail-on-apple-mail/</link>
		<comments>http://blog.morroni.com/2010/01/08/setup-imap-e-mail-on-apple-mail/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 15:09:23 +0000</pubDate>
		<dc:creator>lmorroni</dc:creator>
		
		<category><![CDATA[support]]></category>

		<category><![CDATA[how-to]]></category>

		<guid isPermaLink="false">http://blog.morroni.com/?p=85</guid>
		<description><![CDATA[This short tutorial covers adding an e-mail account to Apple&#8217;s Mail Application.  It includes specific information for Morroni technologies servers.
Goto Applications-&#62;Mail

Once Apple mail is open, goto the file menu item Mail-&#62;Preferences

Once inside Preferences, click on the Account tab at the top and fill in your user information.  Click the + bottom in the bottom left [...]]]></description>
			<content:encoded><![CDATA[<p>This short tutorial covers adding an e-mail account to Apple&#8217;s Mail Application.  It includes specific information for Morroni technologies servers.</p>
<p>Goto Applications-&gt;Mail</p>
<p><img class="alignnone size-full wp-image-86" title="screen-shot-2010-01-08-at-94354-am" src="http://blog.morroni.com/wp-content/uploads/2010/01/screen-shot-2010-01-08-at-94354-am.png" alt="screen-shot-2010-01-08-at-94354-am" width="511" height="406" /></p>
<p>Once Apple mail is open, goto the file menu item <strong>Mail-&gt;Preferences</strong></p>
<p><img class="alignnone size-full wp-image-98" title="screen-shot-2010-01-08-at-95629-am" src="http://blog.morroni.com/wp-content/uploads/2010/01/screen-shot-2010-01-08-at-95629-am.png" alt="screen-shot-2010-01-08-at-95629-am" width="592" height="285" /></p>
<p>Once inside Preferences, click on the Account tab at the top and fill in your user information.  Click the + bottom in the bottom left of the screen.</p>
<p><img class="alignnone size-full wp-image-94" title="screen-shot-2010-01-08-at-93902-am" src="http://blog.morroni.com/wp-content/uploads/2010/01/screen-shot-2010-01-08-at-93902-am.png" alt="screen-shot-2010-01-08-at-93902-am" width="546" height="566" /></p>
<p>This will bring up the new mail account wizard where you should insert your provided information.</p>
<p><img class="alignnone size-full wp-image-93" title="screen-shot-2010-01-08-at-93937-am" src="http://blog.morroni.com/wp-content/uploads/2010/01/screen-shot-2010-01-08-at-93937-am.png" alt="screen-shot-2010-01-08-at-93937-am" width="579" height="417" /></p>
<p>Click Continue and you will be at step 2.  Choose IMAP for Account Type.  Enter a description of your choice.  For incoming mail server use <strong>mailserver.morroni.com</strong>.  Enter the user name and password provided to you.</p>
<p><img class="alignnone size-full wp-image-92" title="screen-shot-2010-01-08-at-94021-am" src="http://blog.morroni.com/wp-content/uploads/2010/01/screen-shot-2010-01-08-at-94021-am.png" alt="screen-shot-2010-01-08-at-94021-am" width="579" height="417" /></p>
<p>Click continue.  make sure to click Connect when you get the verify dialogue box (seen below).</p>
<p><img class="alignnone size-full wp-image-91" title="screen-shot-2010-01-08-at-94034-am" src="http://blog.morroni.com/wp-content/uploads/2010/01/screen-shot-2010-01-08-at-94034-am.png" alt="screen-shot-2010-01-08-at-94034-am" width="580" height="417" /></p>
<p>The next screen sets up the outgoing mailserver.  Use your provided login information and enter the fields as they are below.</p>
<p><img class="alignnone size-full wp-image-90" title="screen-shot-2010-01-08-at-94057-am" src="http://blog.morroni.com/wp-content/uploads/2010/01/screen-shot-2010-01-08-at-94057-am.png" alt="screen-shot-2010-01-08-at-94057-am" width="578" height="418" /></p>
<p>Click Continue and again make sure to accept the verification of the security certificate.</p>
<p><img class="alignnone size-full wp-image-88" title="screen-shot-2010-01-08-at-94118-am" src="http://blog.morroni.com/wp-content/uploads/2010/01/screen-shot-2010-01-08-at-94118-am.png" alt="screen-shot-2010-01-08-at-94118-am" width="578" height="417" /></p>
<p>Verify the information and click <strong>Create</strong>.</p>
<p>You are now done, enjoy your new setup!</p>
<p><img src="file:///Users/lmorroni/Desktop/Screen%20shot%202010-01-08%20at%209.34.56%20AM.png" alt="" /></p>
<p><img src="file:///Users/lmorroni/Library/Caches/TemporaryItems/moz-screenshot.png" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.morroni.com/2010/01/08/setup-imap-e-mail-on-apple-mail/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
