<?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>Politivi Blog</title>
	<atom:link href="http://www.politivi.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.politivi.com</link>
	<description>Here you&#039;ll find a few writings on marketing, web stuff, and sometimes politics.</description>
	<lastBuildDate>Fri, 03 Sep 2010 02:06:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Find out Python version</title>
		<link>http://www.politivi.com/2010/09/02/find-out-python-version/</link>
		<comments>http://www.politivi.com/2010/09/02/find-out-python-version/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 02:06:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.politivi.com/?p=259</guid>
		<description><![CDATA[To see what version of Python you have installed on your machine, type the following at the command line: python -V (Capital V, kiddo)]]></description>
			<content:encoded><![CDATA[<p></p><p>To see what version of Python you have installed on your machine, type the following at the command line:</p>
<pre>python -V
</pre>
<p>(Capital V, kiddo)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.politivi.com/2010/09/02/find-out-python-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress MU (3.0+) and Thesis Theme</title>
		<link>http://www.politivi.com/2010/09/02/wordpress-mu-3-0-and-thesis-theme/</link>
		<comments>http://www.politivi.com/2010/09/02/wordpress-mu-3-0-and-thesis-theme/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 17:50:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[network of sites]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[thesis theme]]></category>
		<category><![CDATA[wordpress 3.0]]></category>
		<category><![CDATA[wordpress mu]]></category>

		<guid isPermaLink="false">http://www.politivi.com/?p=231</guid>
		<description><![CDATA[I&#8217;m running a WordPress MU (3.0+) installation for a cluster of websites and the Thesis theme works great out of the box.  Unfortunately, you need to hack Thesis up a little if you want the sites to have unique styles.  After searching around for a little, I stumbled on Kristarella&#8217;s awesome WPMU + Thesis tutorial.  [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I&#8217;m running a <a title="Create a network of WordPress sites" href="http://codex.wordpress.org/Create_A_Network" target="_self">WordPress MU</a> (3.0+) installation for a cluster of websites and the <a title="Thesis Theme" rel="nofollow" href="http://www.politivi.com/get-thesis/" target="_self">Thesis theme</a> works great out of the box.  Unfortunately, you need to hack Thesis up a little if you want the sites to have unique styles.  After searching around for a little, I stumbled on <a title="Using Thesis with WPMU" href="http://www.kristarella.com/2009/09/using-thesis-with-wpmu/" target="_self">Kristarella&#8217;s awesome WPMU + Thesis tutorial</a>.  Exactly what I was looking for.  It only involves changing a few lines of code in the <strong>functions.php</strong> file (found in your Thesis theme home directory) and allows you to then customize the style for each of your WordPress blogs.  I highly recommend you check out her tutorial and other excellent Thesis how-tos.</p>
<p>There were two changes I needed to make to Kristarella&#8217;s code because</p>
<ol>
<li>I didn&#8217;t want to use blog names (I used blog domain*) for the subdirectories, and</li>
<li>I&#8217;m using Thesis 1.8 which has some slightly different syntax compared to version 1.7 and below.</li>
</ol>
<p>So here&#8217;s the 3 things I changed in <strong>/wp-content/themes/thesis_18/functions.php</strong> (which varies only slightly from her guide):</p>
<p>Change this line:</p>
<pre>define('THESIS_CUSTOM', STYLESHEETPATH . '/custom');</pre>
<p>by tacking on a variable (we&#8217;ll define <strong>$blog</strong> later) so that it looks like this:</p>
<pre>define('THESIS_CUSTOM', STYLESHEETPATH . '/custom' . $blog);</pre>
<p>Next, find this line:</p>
<pre>define('THESIS_CUSTOM_FOLDER', get_bloginfo('stylesheet_directory') . '/custom'); #wp
</pre>
<p>and add <strong>$blog</strong> to the end here as well:</p>
<pre>define('THESIS_CUSTOM_FOLDER', get_bloginfo('stylesheet_directory') . '/custom' . $blog); #wp
</pre>
<p>Finally, define <strong>$blog</strong> at the top of the file (<em>N.B. do this at the very top of functions.php, right below the intro comments</em>) like this:</p>
<pre>$blog = "/" . str_replace("/", "", substr(get_bloginfo('url'),7));
</pre>
<p>[Basically, what I'm doing here is removing the 'http://' as well as any trailing slashes.  Then I'm adding a leading '/' so that it plays nicely when it gets concatenated with the other two strings above].</p>
<p>Save that file, and create sub-directories beneath <strong>/wp-content/themes/thesis_18/custom</strong> for each of your domains that you&#8217;re running (e.g. <strong>/wp-content/themes/thesis_18/custom/example.com </strong>, <strong>/wp-content/themes/thesis_18/custom/examplepart2.com</strong>).  Another note on this, is that depending on what you put in Site URL under Settings &gt; General in the WordPress admin, you may need to include a &#8220;www.&#8221; in front of your domains.</p>
<p>Copy over everything from the <strong>custom</strong> directory into each of these new subdirectories, and before you go, don&#8217;t forget to <strong>chmod</strong> each of these like you do each time you do a fresh Thesis installation!  Set the <strong>cache</strong> directory to 775 and <strong>layout.css</strong> to 666.  And don&#8217;t blame me if you kill your sites.</p>
<p>*Only do this if you are mapping domains to unique blogs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.politivi.com/2010/09/02/wordpress-mu-3-0-and-thesis-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Header Image in Thesis Theme (v1.7+)</title>
		<link>http://www.politivi.com/2010/08/27/remove-header-image-in-thesis-theme-v1-7/</link>
		<comments>http://www.politivi.com/2010/08/27/remove-header-image-in-thesis-theme-v1-7/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 20:08:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[1.7]]></category>
		<category><![CDATA[thesis 1.8]]></category>
		<category><![CDATA[thesis theme]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://www.politivi.com/?p=209</guid>
		<description><![CDATA[When using the Thesis Theme (versions 1.7, 1.8) in WordPress, to remove the header image that you&#8217;ve installed, select &#8220;Header Image&#8221; under the Thesis menu in the admin, and hovering the mouse over the image gives you the option to &#8220;Remove Image.&#8221;  Ah, one long run-on sentence and now back to the old text header.]]></description>
			<content:encoded><![CDATA[<p></p><p>When using the Thesis Theme (versions 1.7, 1.8) in WordPress, to remove the header image that you&#8217;ve installed, select &#8220;Header Image&#8221; under the Thesis menu in the admin, and hovering the mouse over the image gives you the option to &#8220;Remove Image.&#8221;  Ah, one long run-on sentence and now back to the old text header.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.politivi.com/2010/08/27/remove-header-image-in-thesis-theme-v1-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML  Displaying With Price In Magento 1.4.x</title>
		<link>http://www.politivi.com/2010/08/25/html-displaying-with-price-in-magento-1-4-x/</link>
		<comments>http://www.politivi.com/2010/08/25/html-displaying-with-price-in-magento-1-4-x/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 01:34:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[magento]]></category>
		<category><![CDATA[code bugs]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.politivi.com/?p=206</guid>
		<description><![CDATA[After upgrading to Magento 1.4.x, you may notice &#8220;&#60;span&#62;&#8230;&#60;/span&#62;&#8221; HTML tag being displayed around price information within the &#8220;Additional Information&#8221; section on product pages.  This is a known bug introduced in the most recent releases of Magento.  While it will probably be fixed in the next release, who wants to wait around for that? To [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>After upgrading to Magento 1.4.x, you may notice &#8220;&lt;span&gt;&#8230;&lt;/span&gt;&#8221; HTML tag being displayed around price information within the &#8220;Additional Information&#8221; section on product pages.  This is a <a title="Known Magento Bug" href="http://www.magentocommerce.com/bug-tracking/issue?issue=9577" target="_self">known bug</a> introduced in the most recent releases of Magento.  While it will probably be fixed in the next release, who wants to wait around for that?</p>
<p>To fix this bug, fire up your text editor and open<strong> /app/code/core/Mage/Catalog/Helper/Output.php</strong>, then add the following to the end of the &#8220;If&#8221; statement on line 106 (Magento 1.4.0) or line 123 in later versions:</p>
<pre> &amp;&amp; ($attribute-&gt;getFrontendInput() != 'price')</pre>
<p>This will ensure that the &lt;span&gt; disappears.  Now back to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.politivi.com/2010/08/25/html-displaying-with-price-in-magento-1-4-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What version of Ubuntu am I using?</title>
		<link>http://www.politivi.com/2010/07/26/ubuntu-version/</link>
		<comments>http://www.politivi.com/2010/07/26/ubuntu-version/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 14:53:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.politivi.com/?p=203</guid>
		<description><![CDATA[To find the version of Ubuntu that you are using, from the shell enter the following: lsb_release -a It will print out some niceties that you are looking for.]]></description>
			<content:encoded><![CDATA[<p></p><p>To find the version of Ubuntu that you are using, from the shell enter the following:</p>
<ul>
<li>lsb_release -a</li>
</ul>
<p>It will print out some niceties that you are looking for.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.politivi.com/2010/07/26/ubuntu-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Set Default Timezone in PHP</title>
		<link>http://www.politivi.com/2010/07/26/howto-set-default-timezone-in-php/</link>
		<comments>http://www.politivi.com/2010/07/26/howto-set-default-timezone-in-php/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 14:45:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[timezones]]></category>

		<guid isPermaLink="false">http://www.politivi.com/?p=201</guid>
		<description><![CDATA[Setting your default timezone in PHP is a very easy task and may be needed for some applications.  If you fall into this bucket, all you need to do is&#8230;. Open up your default php.ini file (or the one you wish to edit).  I can help you find your default php.ini file, if you don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Setting your default timezone in PHP is a very easy task and may be needed for some applications.  If you fall into this bucket, all you need to do is&#8230;.</p>
<ol>
<li>Open up your default php.ini file (or the one you wish to edit).  I can help you <a title="Find your default php.ini file" href="http://www.politivi.com/2010/07/26/how-to-find-php-ini-in-ubuntu/">find your default php.ini file</a>, if you don&#8217;t know where it is.</li>
<li>Find the line that says <strong>;date.timezone</strong></li>
<li>Uncomment that line by removing the semi-colon, then set it equal to the <a title="Available timezones in PHP" href="http://www.php.net/manual/en/timezones.php">appropriate timezone</a>.  For instance:
<ul>
<li><strong>date.timezone = America/New_York</strong></li>
</ul>
</li>
<li>Save the file and restart Apache</li>
</ol>
<p>In case you&#8217;re wondering&#8230; I write these how to&#8217;s to help me remember.  Might not be so helpful for everyone else, but maybe.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.politivi.com/2010/07/26/howto-set-default-timezone-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW TO find php.ini in Ubuntu</title>
		<link>http://www.politivi.com/2010/07/26/how-to-find-php-ini-in-ubuntu/</link>
		<comments>http://www.politivi.com/2010/07/26/how-to-find-php-ini-in-ubuntu/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 14:31:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.politivi.com/?p=199</guid>
		<description><![CDATA[Looking for the primary php.ini in Ubuntu to change some default settings across Apache?  No problemo.  Here are three different options for finding it: Try running this &#60;?php phpinfo(); ?&#62; through your PHP interpreter.  This will show you where your main php.ini file is. Or you can try searching for it in the shell:  find [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Looking for the primary php.ini in Ubuntu to change some default settings across Apache?  No problemo.  Here are three different options for finding it:</p>
<ul>
<li>Try running this <code>&lt;?php phpinfo(); ?&gt;</code> through your PHP interpreter.  This will show you where your main php.ini file is.</li>
<li>Or you can try searching for it in the shell:  <code>find / -name php.ini<br />
</code></li>
<li>If all else fails, give it the old college try, and see if my setting works for you:  <code>/etc/php5/apache2/php.ini (</code>I&#8217;m on Ubuntu 9.10 &#8211; karmic).</li>
</ul>
<p>This should just about do it for you, old chap.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.politivi.com/2010/07/26/how-to-find-php-ini-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hear me wax philosophical on APIs and Jabberwockies</title>
		<link>http://www.politivi.com/2010/07/19/hear-me-wax-philosophical-on-apis-and-jabberwockies/</link>
		<comments>http://www.politivi.com/2010/07/19/hear-me-wax-philosophical-on-apis-and-jabberwockies/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 15:40:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[announcements]]></category>
		<category><![CDATA[Affiliate Marketing Fanatics]]></category>
		<category><![CDATA[affiliate summit east]]></category>
		<category><![CDATA[APIs]]></category>
		<category><![CDATA[GeekCast.fm]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[Mike Buechele]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[Tisha Lyn Fawyer]]></category>

		<guid isPermaLink="false">http://www.politivi.com/?p=197</guid>
		<description><![CDATA[Last week I had the delight of being interviewed by Mike Buechele and Trisha Lyn Fawver for their Affiliate Marketing Fanatics podcast on GeekCast Radio. They&#8217;re currently conducting a series of interviews with some speakers at the upcoming Affiliate Summit East (8/15 through 8/17 in NYC).  In the interview, we discuss my work at Adknowledge, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Last week I had the delight of being interviewed by <a title="Mike Buechele's Twitter" href="http://twitter.com/mikebuechele">Mike Buechele</a> and <a title="Trisha Lyn Fawyer's blog" href="http://www.trishalyn.com/">Trisha Lyn Fawver</a> for their <a title="My interview on the Affiliate Marketing Fanatics podcast" href="http://geekcast.fm/archives/affiliate-marketing-fanatics-28-interviewing-christopher-calvi/">Affiliate Marketing Fanatics podcast on GeekCast Radio</a>.</p>
<p>They&#8217;re currently conducting a series of interviews with some speakers at the upcoming <a href="http://www.affiliatesummit.com/10e-agenda/">Affiliate Summit East</a> (8/15 through 8/17 in NYC).  In the interview, we discuss my work at Adknowledge, APIs in the affiliate space, plus some Lewis Carroll trivia.</p>
<p>If you&#8217;d like to give it a listen, please head on over to <a title="My interview on the Affiliate Marketing Fanatics podcast" href="http://geekcast.fm/archives/affiliate-marketing-fanatics-28-interviewing-christopher-calvi/">GeekCast.fm</a>.  Let me know what you think on <a href="http://twitter.com/politivi">Twitter</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.politivi.com/2010/07/19/hear-me-wax-philosophical-on-apis-and-jabberwockies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Setup Google Public DNS on Windows 7</title>
		<link>http://www.politivi.com/2010/07/18/howto-setup-google-public-dns-on-windows-7/</link>
		<comments>http://www.politivi.com/2010/07/18/howto-setup-google-public-dns-on-windows-7/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 13:19:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Google Public DNS]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[technical support]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.politivi.com/?p=192</guid>
		<description><![CDATA[You may want to consider changing your default DNS server on your Windows 7 computer to Google Public DNS.  There are a few reasons why you&#8217;d want to do this: More speed Enhanced security (debatable) Perhaps most importantly, goodbye sponsored DNS error pages from your ISP. You&#8217;re running Windows 7, so you&#8217;re either fresh off [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>You may want to consider changing your default DNS server on your Windows 7 computer to <a title="Google Public DNS" href="http://code.google.com/speed/public-dns/">Google Public DNS</a>.  There are a few reasons why you&#8217;d want to do this:</p>
<ul>
<li>More <a title="Google Public DNS Speed Improvement" href="http://code.google.com/speed/public-dns/docs/performance.html">speed</a></li>
<li>Enhanced <a title="Google Public DNS Security Improvement" href="http://code.google.com/speed/public-dns/docs/security.html">security</a> (debatable)</li>
<li>Perhaps most importantly, goodbye sponsored <a title="Wired story on ISP DNS error page vulns" href="http://www.wired.com/threatlevel/2008/04/isps-error-page/">DNS error pages from your ISP</a>.</li>
</ul>
<p>You&#8217;re running Windows 7, so you&#8217;re either fresh off an upgrade or have a relatively new computer.  Either way, now is the time to switch over to Google Public DNS.</p>
<p>DNS (Domain Name System) is the Internet&#8217;s lookup system whereby easily remembered domain names are translated on-the-fly to cryptic IP addresses where the content resides that you&#8217;re trying to access.  In an effort to speed up the web, Google <a title="Google launches free public DNS service" href="http://googleblog.blogspot.com/2009/12/introducing-google-public-dns.html">launched</a> a free DNS service in 2009.</p>
<p>To switch over to Google Public DNS on Windows 7, please follow these instructions (or check out <a title="Google Public DNS instructions" href="http://code.google.com/speed/public-dns/docs/using.html">Google&#8217;s</a>):</p>
<ol>
<li>Click the &#8220;Start&#8221; button</li>
<li>Click &#8220;Control Panel&#8221; in the menu</li>
<li>Click &#8220;Network and Sharing Center</li>
<li>Select the connection for which you want to configure Google Public DNS (I recommend doing this for all connections)</li>
<li>A prompt will open showing the connection&#8217;s status, click &#8220;Properties&#8221;</li>
<li>Under the &#8220;Networking&#8221; tab, double click on &#8220;Internet Protocol Version 4 (TCP/IPv4)&#8221; beneath &#8220;This connection uses the following items&#8221;</li>
<li><strong>IMPORTANT:</strong> Make note of the current settings (write them down!) and also write down Google&#8217;s Public DNS telephone support numbers which are 877-590-4367 (inside the USA) and 770-200-1201 (outside the USA).  You&#8217;ll need this stuff if you mess up.</li>
<li>Select &#8220;Use the following DNS server addresses:&#8221;  (Note: do not modify the IP address section)
<ol>
<li>Change the &#8220;Preferred DNS server&#8221; to 8.8.8.8</li>
<li>Change the &#8220;Alternate DNS server&#8221; to 8.8.4.4</li>
</ol>
</li>
<li>Click &#8220;OK&#8221;</li>
<li>Click &#8220;OK&#8221; again (on the Connection Properties window)</li>
<li>Repeat these steps for all connections you wish to enable Google DNS for (wireless, LAN, etc.)</li>
<li>Restart the computer</li>
</ol>
<p><a href="http://www.politivi.com/wp-content/uploads/2010/07/network-and-sharing-center.jpg"><img class="aligncenter size-medium wp-image-193" title="Network and Sharing Center Prompt" src="http://www.politivi.com/wp-content/uploads/2010/07/network-and-sharing-center-300x201.jpg" alt="Network and Sharing Center Prompt" width="300" height="201" /></a></p>
<p>After this, you&#8217;re all good to go!  Remember, if you want to use Google Public DNS on future connections (at the office, for instance), you&#8217;ll need to configure it for each new connection.  Just remember to use the DNS servers 8.8.8.8 and 8.8.4.4.   The steps above can also be roughly followed on other versions of Windows, but the prompts may be slightly different.</p>
<p>If you run into problems getting Internet access after making these changes, Google Public DNS telephone support can be reached at 877-590-4367 (inside the USA) and 770-200-1201 (outside the USA).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.politivi.com/2010/07/18/howto-setup-google-public-dns-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Fix 550 Invalid Recipient Error on Citadel</title>
		<link>http://www.politivi.com/2010/07/12/howto-fix-550-invalid-recipient-error-on-citadel/</link>
		<comments>http://www.politivi.com/2010/07/12/howto-fix-550-invalid-recipient-error-on-citadel/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 02:01:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[citadel]]></category>
		<category><![CDATA[550]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[mail server]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://www.politivi.com/?p=189</guid>
		<description><![CDATA[If you&#8217;re like me and did a hasty install of Citadel and didn&#8217;t pay much mind to the manual, you may have found a few quirks here and there. For instance, you may have found yourself able to configure the mail server to receive mail without issue, and allow users to connect via a POP3 [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>If you&#8217;re like me and did a hasty install of Citadel and didn&#8217;t pay much mind to the manual, you may have found a few quirks here and there.</p>
<p>For instance, you may have found yourself able to configure the mail server to receive mail without issue, and allow users to connect via a POP3 connection.  But you&#8217;d be stymied if you tried to make a similar connection to send outgoing mail via SMTP.  And that&#8217;s why you&#8217;re probably on this page.</p>
<p>So without further ado, the answer is in the command line, my friends:</p>
<pre>sendcommand IGAB</pre>
<p>If the user account is configured, that should just about do it for you.  Four words for you:  Initialize Global Address Book.  Then again, I&#8217;m the most novice Citadel admin on the planet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.politivi.com/2010/07/12/howto-fix-550-invalid-recipient-error-on-citadel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
