<?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>Refreshingly Blue &#187; Ubuntu</title>
	<atom:link href="http://www.refreshinglyblue.com/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.refreshinglyblue.com</link>
	<description>Notes by Lee Blue</description>
	<lastBuildDate>Tue, 19 Jul 2011 19:41:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Share Files Between Linux and Mac</title>
		<link>http://www.refreshinglyblue.com/2009/04/21/share-files-between-linux-and-mac/</link>
		<comments>http://www.refreshinglyblue.com/2009/04/21/share-files-between-linux-and-mac/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 02:32:01 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Everyday Tips]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.refreshinglyblue.com/?p=131</guid>
		<description><![CDATA[It is EXTREMELY easy to happily share files between your linux system and your mac. I use both Ubuntu and Mac OS X. Simply login into you mac desktop, open up your system settings and turn on Remote Login. This enables incoming SSH connections to your mac. If you want to connect while you are [...]]]></description>
			<content:encoded><![CDATA[<p>It is EXTREMELY easy to happily share files between your linux system and your mac. I use both Ubuntu and Mac OS X. Simply login into you mac desktop, open up your system settings and turn on Remote Login. This enables incoming SSH connections to your mac. If you want to connect while you are away from home, you can set up some sort of dynamic IP service like DynDNS.org. Open up port 22 on your home firewall or router and you can connect to your home mac from anywhere you go with an internet connection.</p>
<p>Once your mac has SSH enabled, log into your Ubuntu machine and click Places &#8211;> Connect To Server. Choose SSH as your Service Type. Enter in the IP address of your mac or whatever name you may have assigned to it in your /etc/hosts file or whatever. Use the username and password you use to log into mac and there you go. You can browse files on your mac with your Ubuntu machine in Nautilus.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.refreshinglyblue.com/2009/04/21/share-files-between-linux-and-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recursive searching in vim with grep &#8211; vimgrep</title>
		<link>http://www.refreshinglyblue.com/2009/02/17/recursive-searching-in-vim-with-grep-vimgrep/</link>
		<comments>http://www.refreshinglyblue.com/2009/02/17/recursive-searching-in-vim-with-grep-vimgrep/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 22:50:42 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Everyday Tips]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Vim]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.refreshinglyblue.com/?p=102</guid>
		<description><![CDATA[One of the smartest people I&#8217;ve ever digitally met, Ryan Paul, taught me this awesome tip for doing a project wide search in vim. I needed to look for all occurrences of the patter _Models_ in a PHP project I was working on and you can do it right inside of vim &#8211; the best [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.digitalunderware.com/briefcase/vi-gang-sign-100.jpg" alt="Vi Gang Sign" align='right' style='padding: 10px;' /></p>
<p>One of the smartest people I&#8217;ve ever digitally met, <a href="http://arstechnica.com/authors/ryan-paul/">Ryan Paul</a>, taught me this awesome tip for doing a project wide search in vim. I needed to look for all occurrences of the patter _Models_ in a PHP project I was working on and you can do it right inside of vim &#8211; the best text editor ever invented.</p>
<ol>
<li>Open vim and make sure you are in the top level folder of your project by typing :pwd<enter></li>
<li>Then type :vimgrep <em>YourPattern</em> **/*.php</li>
<li>To open your search results in their own buffer type :copen</li>
</ol>
<p>The **/ recursively searches through all your directories for you pattern. <em>:copen</em> opens the search results in their own buffer. You can use the arrow keys to move up and down through the list and hit enter to have it open that result in the main buffer. You can also use <em>:cnext</em> and <em>:cprev</em> to move to the next and previous items in the list. Perhaps you might bind those to keyboard shortcuts so you can move through the search results quickly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.refreshinglyblue.com/2009/02/17/recursive-searching-in-vim-with-grep-vimgrep/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vim Uppercase &amp; Lowercase</title>
		<link>http://www.refreshinglyblue.com/2007/08/29/vim-uppercase-lowercase/</link>
		<comments>http://www.refreshinglyblue.com/2007/08/29/vim-uppercase-lowercase/#comments</comments>
		<pubDate>Wed, 29 Aug 2007 05:08:58 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Everyday Tips]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://refreshinglyblue.com/?p=13</guid>
		<description><![CDATA[I have been using vim for a couple years and every week it seems I learn some new feature or trick you can do. Recently I learned how to convert a selection to either all uppercase or all lowercase letters. Convert a visual selection to all uppercase letters. gU Convert to lowercase letters gu]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.digitalunderware.com/briefcase/vi-gang-sign-100.jpg" alt="" title="vi-gang-sign-100" width="100" height="100" class="alignright size-medium wp-image-27" /></p>
<p>I have been using vim for a couple years and every week it seems I learn some new feature or trick you can do. Recently I learned how to convert a selection to either all uppercase or all lowercase letters.</p>
<p>Convert a visual selection to all uppercase letters.</p>
<pre>gU</pre>
<p>Convert to lowercase letters</p>
<pre>gu</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.refreshinglyblue.com/2007/08/29/vim-uppercase-lowercase/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How To Get Your Scanner Working In Ubuntu Feisty</title>
		<link>http://www.refreshinglyblue.com/2007/08/01/how-to-get-your-scanner-working-in-ubuntu-feisty/</link>
		<comments>http://www.refreshinglyblue.com/2007/08/01/how-to-get-your-scanner-working-in-ubuntu-feisty/#comments</comments>
		<pubDate>Thu, 02 Aug 2007 04:55:30 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Everyday Tips]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://refreshinglyblue.com/?p=10</guid>
		<description><![CDATA[My scanner (Canoscan N676U) suddenly stopped responding when I upgraded to Ubuntu Feisty. I first noticed the problem when I was unable to import a scan through Gimp. Well it took a couple hours to figure this one out, but the sollution turned out to be easy to implement. From what I understand, the problem [...]]]></description>
			<content:encoded><![CDATA[<p>My scanner (Canoscan <span class="caps">N676U</span>) suddenly stopped responding when I upgraded to Ubuntu Feisty. I first noticed the problem when I was unable to import a scan through Gimp. Well it took a couple hours to figure this one out, but the sollution turned out to be easy to implement. From what I understand, the problem comes from the <span class="caps">USB</span> suspend functions built into the new kernel. I also understand that this isn&#8217;t just an Ubuntu problem. So if you are on another distro, this tip may work for you also.</p>
<p><span id="more-10"></span></p>
<p>Download and install scanbuttond which is a daemon that allows you to invoke actions such as shell scripts whenever one of the scanner front panel buttons is pressed. I do not use my scanners buttons, and this tip will work even if your scanner doesn&#8217;t have any buttons. The daemon periodically polls the scanner helping to prevent it from suspending and becoming unresponsive. So start up a terminal and&#8230;</p>
<p class="code">sudo apt-get install scanbuttond<br />
scanbuttond -r 1000000</p>
<p>The 1000000 is the number of microseconds between polls to the scanner. So the scanbuttond deamon will poll your scanner once per second. If you are finished with your scanning, and want to stop the scanbuttond daemon from polling your scanner, simply stop the daemon.</p>
<p class="code">killall scanbuttond</p>
]]></content:encoded>
			<wfw:commentRss>http://www.refreshinglyblue.com/2007/08/01/how-to-get-your-scanner-working-in-ubuntu-feisty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails + SSL + ISPConfig + Apache 2.0 + Mongrel</title>
		<link>http://www.refreshinglyblue.com/2007/06/13/ruby-on-rails-ssl-ispconfig-apache-mongrel/</link>
		<comments>http://www.refreshinglyblue.com/2007/06/13/ruby-on-rails-ssl-ispconfig-apache-mongrel/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 03:43:57 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://refreshinglyblue.com/?p=8</guid>
		<description><![CDATA[If you are using ISPConfig to manage the virtual hosts on your web server, you will notice that there is no way to separate SSL vs non-SSL Apache directives using the standard web interface. This is a problem if you are writing Ruby on Rails applications and proxying requests through Apache to a Mongrel cluster [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using ISPConfig to manage the virtual hosts on your web server, you will notice that there is no way to separate SSL vs non-SSL Apache directives using the standard web interface. This is a problem if you are writing Ruby on Rails applications and proxying requests through Apache to a Mongrel cluster because Mongrel won&#8217;t know what type of requests it is receiving. Being behind the proxy, Mongrel doesn&#8217;t know if the original requests are coming via HTTP or HTTPS. The solution is to add RequestHeader set X_FORWARDED_PROTO &#8216;https&#8217; as a line in your Apache virtual host configuration for the SSL virtual host. I will tell you how to get ISPConfig to handle that for you. I will also show how to get GoDaddy.com ssl certificates working and how our Apache 2.0 randomized proxy balancer works.</p>
<p><span id="more-8"></span></p>
<p>We are running Apache 2.0 and proxying to a Mongrel cluster for our latest e-commerce website <a href="http://www.quietheadphones.com">QuietHeadphones.com</a> which is scheduled to be launched at the end of June. Being an e-commerce site we needed to put the checkout functionality behind SSL. Since Apache is handling both the HTTPS/SSLfunctionality as well as the standard HTTP requests and proxying everything to the Mongrel cluster, the Mongrel cluster doesn&#8217;t know which requests are HTTPS and which are HTTP. To tell Rails which requests are HTTPS requests you can set up an environment variable in the Apache virtual host configuration in the httpd.conf file. The environement variable is: </p>
<p class="code">RequestHeader set X_FORWARDED_PROTO &#8216;https&#8217;</p>
<p>In Rails, request.rb checks for that variable and pleasantly handles everything else for you.</p>
<p>Now if you are using ISPConfig to manage the virtual hosts on your web server, you will notice that there is no way to separate SSL vs non-SSL Apache directives using the web interface. Since most of our sites are Ruby on Rails sites and since the RequestHeader variable doesn&#8217;t hurt anything if you aren&#8217;t using rails, I revised the source code of ISPConfig to always include the RequestHeader set X_FORWARDED_PROTO line in all of the SSL virtual host configurations. That way, anytime you set up a site in ISPConfig and select the SSL option, ISPConfig faithfully inserts the RequestHeader line so that Mongrel knows what sort of requests it is getting.</p>
<p>To make this revision to ISPConfig, open up config.lib.php then edit the SSL-Web section at approximately line 1521 by adding RequestHeader set X_FORWARDED_PROTO &#8216;https&#8217;</p>
<p class="code">file: /root/ispconfig/scripts/lib/config.lib.php<br />
<br />
RequestHeader set X_FORWARDED_PROTO &#8216;https&#8217;
</p>
<p>Once that is in place, all HTTPS requests will have that request header variable set and regular HTTP requests will not. Then you can use the standard web interface to configure the rest of the Apache directives for your Ruby on Rails application and the Mongrel cluster. Here&#8217;s an example of what the Apache Directives text box may look like in ISPConfig.</p>
<p class="code">
&lt;Proxy *&gt;<br />
  Order allow,deny<br />
  Allow from all<br />
&lt;/Proxy&gt;<br />
<br />
ProxyRequests Off<br />
ProxyPassReverse / http://www.mydomain.com:9001/<br />
ProxyPassReverse / http://www.mydomain.com:9002/<br />
ProxyPassReverse / http://www.mydomain.com:9003/<br />
ProxyPreserveHost On<br />
RewriteEngine On<br />
RewriteMap  servers rnd:/var/www/webX/rails/map.txt<br />
RewriteRule ^/(images|stylesheets|javascripts)/?(.*) $0 [L]<br />
RewriteRule ^/(.*)$ http://www.mydomain.com:${servers:ports}/$1 [P,L]<br />
Alias /images /var/www/webX/web/images<br />
Alias /stylesheets /var/www/webX/web/stylesheets<br />
Alias /javascripts /var/www/webX/web/javascripts<br />
SSLCertificateChainFile /var/www/webX/ssl/gd_intermediate_bundle.crt
</p>
<p>There are a couple things to note in this example. At the time of this writing, we are using Apache 2.0 and, therefore, don&#8217;t have access to the mod_proxy_balancer that many people are enjoying with Apache 2.2. Nevertheless, we wanted to run a Mongrel cluster so we are using a randomized proxy balancer by taking advantage of the RewriteMap feature of Apache 2.0. We created a text file that contains the port numbers that each of our Mongrel instances are using separated by pipes as follows:</p>
<p class="code">file: map.txt<br />
<br />
ports 9001|9002|9003
</p>
<p>Then on each request, Apache randomly selects on of the three ports from the map.txt file and rewrites the request for one of our mongrel instances.</p>
<p class="code">
RewriteRule ^/(.*)$ http://www.mydomain.com:${servers:ports}/$1 [P,L]
</p>
<p>Lastly, if you buy an SSL certificate from godaddy.com, you will need to add the SSLCertificateChainFile directive to your Apache configuration. Otherwise, most &#8211; perhaps all &#8211; browsers will complain about the ssl certificate not being trusted. Once you know about that, it&#8217;s an easy adjustment to make. Simply give Apache the path to the gd_intermediate_bundle.crt that you will get when you buy your ssl certificate at GoDaddy.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.refreshinglyblue.com/2007/06/13/ruby-on-rails-ssl-ispconfig-apache-mongrel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTP Login Delay With Proftpd &#8211; Ubuntu Perfect Setup</title>
		<link>http://www.refreshinglyblue.com/2007/06/11/ftp-login-delay-with-proftpd-ubuntu-perfect-setup/</link>
		<comments>http://www.refreshinglyblue.com/2007/06/11/ftp-login-delay-with-proftpd-ubuntu-perfect-setup/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 03:19:43 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://refreshinglyblue.com/?p=7</guid>
		<description><![CDATA[I manage serveral servers and &#8211; for the most part &#8211; they are all set up using the Perfect Setup for Ubuntu. Overall the setup is great, but I have been noticing a very annoying delay when trying to log in via FTP. Everything works, but when I initially connect, 5 &#8211; 10 seconds pass [...]]]></description>
			<content:encoded><![CDATA[<p>I manage serveral servers and &#8211; for the most part &#8211; they are all set up using the <a href="http://www.howtoforge.org/forums/showthread.php?t=6447">Perfect Setup for Ubuntu</a>. Overall the setup is great, but I have been noticing a very annoying delay when trying to log in via FTP. Everything works, but when I initially connect, 5 &#8211; 10 seconds pass by before I&#8217;m prompted for my login credentials. After many hours of pain and sadness, I finally discovered the solution.</p>
<p><span id="more-7"></span></p>
<p><a href="http://www.howtoforge.com/perfect_setup_ubuntu_6.10_p6">Page six</a> of the Perfect Setup tutorial says that you should add the following lines to your proftpd.conf file.</p>
<p class="code">vi /etc/proftpd/proftpd.conf<br />
&#8230;<br />
DefaultRoot ~<br />
IdentLookups off<br />
ServerIdent on &#8220;FTP Server ready.&#8221;<br />
&#8230;
</p>
<p>I found that if I include those lines inside of &lt;Global&gt;&#8230;&lt;/Global&gt; tags the delay goes away and I am instantly logged into the server. So, instead of the above format, add those lines inside the Global tags like this.</p>
<p class="code">vi /etc/proftpd/proftpd.conf<br />
&#8230;<br />
&lt;Global&gt;<br />
DefaultRoot ~<br />
IdentLookups off<br />
ServerIdent on &#8220;FTP Server ready.&#8221;<br />
&lt;/Global&gt;<br />
&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.refreshinglyblue.com/2007/06/11/ftp-login-delay-with-proftpd-ubuntu-perfect-setup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Long Delay Before SSH Authentication</title>
		<link>http://www.refreshinglyblue.com/2007/05/18/long-delay-before-ssh-authentication/</link>
		<comments>http://www.refreshinglyblue.com/2007/05/18/long-delay-before-ssh-authentication/#comments</comments>
		<pubDate>Sat, 19 May 2007 03:06:23 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://refreshinglyblue.com/?p=5</guid>
		<description><![CDATA[If you are experiencing a long, annoying delay when attempting to connect to a remote server via SSH &#8211; especially if you have recently noticed this problem after installing/upgrading Ubuntu Feisty &#8211; try commenting out the &#8220;GSSAPIAuthentication yes&#8221; line in your /etc/ssh/ssh_config file: File: /etc/ssh/ssh_config &#8230; &#160;&#160;HashKnownHosts yes # GSSAPIAuthentication yes &#160;&#160;GSSAPIDelegateCredentials no &#8230; GSSAPIAuthentication [...]]]></description>
			<content:encoded><![CDATA[<p>If you are experiencing a long, annoying delay when attempting to connect to a remote server via SSH &ndash; especially if you have recently noticed this problem after installing/upgrading Ubuntu Feisty &ndash; try commenting out the &#8220;GSSAPIAuthentication yes&#8221; line in your /etc/ssh/ssh_config file:</p>
<p><span id="more-5"></span></p>
<p class="code">
File: /etc/ssh/ssh_config<br />
&#8230;<br />
&nbsp;&nbsp;HashKnownHosts yes<br />
#  GSSAPIAuthentication yes<br />
&nbsp;&nbsp;GSSAPIDelegateCredentials no<br />
&#8230;</p>
<p>GSSAPIAuthentication specifies whether user authentication based on GSSAPI is allowed. Connections with GSSAPIAuthentication option enabled on non-kerberos SSH servers are very slow. If you run ssh in verbose mode you may get a &#8220;Miscellaneous failure&#8221; error message.</p>
<p class="code">
ssh -v -l <username> example.com<br />
&#8230;<br />
debug1: Miscellaneous failure<br />
No credentials cache found<br />
&#8230;
</p>
<p>After disabling GSSAPIAuthentication, you probably won&#8217;t have to wait as long to get your login in prompt.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.refreshinglyblue.com/2007/05/18/long-delay-before-ssh-authentication/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mail Not Delivered To Hotmail/MSN Accounts</title>
		<link>http://www.refreshinglyblue.com/2007/05/08/mail-not-delivered-to-hotmail-msn-accounts/</link>
		<comments>http://www.refreshinglyblue.com/2007/05/08/mail-not-delivered-to-hotmail-msn-accounts/#comments</comments>
		<pubDate>Wed, 09 May 2007 00:47:55 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://refreshinglyblue.com/?p=4</guid>
		<description><![CDATA[If you have a VPS or your own dedicated server and you can&#8217;t send mail to Hotmail or MSN email accounts, the good news is that the solution is easy. I manage a few Postfix mail servers and I was getting lines like this in my /var/log/mail.log file. May 8 05:46:07 hostname postfix/smtp: 23E507C950: to=, [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a <span class="caps">VPS</span> or your own dedicated server and you can&#8217;t send mail to Hotmail or <span class="caps">MSN</span> email accounts, the good news is that the solution is easy. I manage a few Postfix mail servers and I was getting lines like this in my /var/log/mail.log file.</p>
<p><span id="more-4"></span></p>
<p class="code">May  8 05:46:07 hostname postfix/smtp: 23E507C950: to=<username@hotmail.com>, relay=mx1.hotmail.com[65.54.244.136]:25, delay=0.6, delays=0.26/0.01/0.15/0.18, dsn=2.0.0, status=sent (250  <20070508054607.23E507C950@hostname.com> Queued mail for delivery)</p>
<p>Mail was successfully leaving my server and Hotmail was reporting back that the mail was successfully sent yet the mail was not ever getting delivered to my hotmail inbox. The solution is to make sure you have a valid <span class="caps">SPF</span> record for your domain. Microsoft has an online wizard to help you <a href="http://www.microsoft.com/mscorp/safety/content/technologies/senderid/wizard/">create the <span class="caps">SPF</span> record.</a></p>
<p>When you are creating the record, make sure not to include a &#8220;ptr&#8221; lookup. I got this email from Microsoft when trying to figure all this out.</p>
<p class="code">We reviewed your <span class="caps">SPF</span> record and note that it includes the &#8220;ptr&#8221; or reverse <span class="caps">DNS</span> lookup mechanism.  The specification for <span class="caps">SPF</span> records (RFC 4408) discourages use of &#8220;ptr&#8221; for performance and reliability reasons.  This is especially important for Windows Live Mail, Hotmail and other large ISPs as a result of the very high volume of mail we receive each day.   We highly recommend you remove the &#8220;ptr&#8221; mechanism from your <span class="caps">SPF</span> record and, if necessary, replace it with other <span class="caps">SPF</span> mechanisms that do not require a reverse <span class="caps">DNS</span> lookup, such as &#8220;a&#8221;, &#8220;mx&#8221;, &#8220;ip4&#8221; and &#8220;include.&#8221;  This will help ensure that Sender ID validation is performed as accurately as possible, maximizing your email deliverability while protecting your domain from spoofing.</p>
<p>Finally, you need to create a <span class="caps">TXT DNS</span> entry. Allow about 24 hours or so, and Hotmail and <span class="caps">MSN</span> will start accepting your mail. Note, however, they may be sending it to your Junk Mail folder.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.refreshinglyblue.com/2007/05/08/mail-not-delivered-to-hotmail-msn-accounts/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
