<?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>All the way from Cambridge &#187; Internet</title>
	<atom:link href="http://blog.pc-tony.com/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pc-tony.com</link>
	<description></description>
	<lastBuildDate>Thu, 20 Oct 2011 23:35:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>www.us.apachecon.com  &#8212; It&#8217;s back!</title>
		<link>http://blog.pc-tony.com/2009/09/wwwusapacheconcom-its-back/</link>
		<comments>http://blog.pc-tony.com/2009/09/wwwusapacheconcom-its-back/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 22:16:40 +0000</pubDate>
		<dc:creator>pctony</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://blog.pc-tony.com/?p=169</guid>
		<description><![CDATA[After all the fun and games of the past few days Aaron and I have managed to rebuild the entire VM, and apachecon website.  It was a lot of fun and games, and I&#8217;m sure in we&#8217;ll be buying each &#8230; <a href="http://blog.pc-tony.com/2009/09/wwwusapacheconcom-its-back/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After all the fun and games of the past few days <a href="http://cubiclemuses.com/pg">Aaron</a> and I have managed to rebuild the entire VM, and apachecon website.  It was a lot of fun and games, and I&#8217;m sure in we&#8217;ll be buying each other a lot of beer in Oakland.</p>
<p>So, go, get your daily dose of apachecon fun, over at http://us.apachecon.com</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pc-tony.com/2009/09/wwwusapacheconcom-its-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Postfix + SASL + Dovecot</title>
		<link>http://blog.pc-tony.com/2009/06/postfix-sasl-dovecot/</link>
		<comments>http://blog.pc-tony.com/2009/06/postfix-sasl-dovecot/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 10:48:44 +0000</pubDate>
		<dc:creator>pctony</dc:creator>
				<category><![CDATA[email]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Note to self]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.pc-tony.com/?p=153</guid>
		<description><![CDATA[After trying to find a way to make my postfix installation allow authenticated users (over TLS will come later) relay mail using SASL, on a CentOS machine using only CentOS packages I discovered it was not as easy as I &#8230; <a href="http://blog.pc-tony.com/2009/06/postfix-sasl-dovecot/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After trying to find a way to make my postfix installation allow authenticated users (over TLS will come later) relay mail using SASL, on a CentOS machine using only CentOS packages I discovered it was not as easy as I may have liked.</p>
<p>So after installing cyrus-sasl, postfix and dovecot all I needed to do was:</p>
<p>Edit /etc/postfix/main.cf  &#8211; At the end of your configuration add:</p>
<blockquote><p>smtpd_sasl_auth_enable = yes<br />
smtpd_recipient_restrictions = permit_mynetworks,permit_sasl_authenticated,reject_unauth_destination<br />
smtpd_sasl_security_options = noanonymous<br />
smtpd_sasl_type = dovecot<br />
smtpd_sasl_path = private/auth</p></blockquote>
<p>Don&#8217;t forget that postfix by default runs in it&#8217;s own chroot jail, so the smptd_sasl_path above is relative to the postfix root. So in my case on CentOS 5 that equates to &#8220;/var/spool/postfix/private/auth&#8221;</p>
<p>Now go on and edit your /etc/dovecot.conf file.  Find the lines</p>
<blockquote><p>userdb passwd {<br />
}</p></blockquote>
<p>Then add this immediately below it</p>
<blockquote><p>socket listen {<br />
client {<br />
path = /var/spool/postfix/private/auth<br />
mode = 0660<br />
user = postfix<br />
group = postfix<br />
}<br />
}</p></blockquote>
<p>Now all you need to do is restart postfix, dovecot and (re)start saslauthd</p>
<blockquote><p>/etc/init.d/postfix restart<br />
/etc/init.d/dovecot restart<br />
/etc/init.d/saslauthd restart</p></blockquote>
<p>If you now telnet to your mail server on port 25, and use EHLO you should be able to see the following</p>
<blockquote><p>ehlo me<br />
250-your.server.domain.com<br />
250-PIPELINING<br />
250-SIZE 10240000<br />
250-VRFY<br />
250-ETRN<br />
250-AUTH PLAIN LOGIN<br />
250-ENHANCEDSTATUSCODES<br />
250-8BITMIME<br />
250 DSN</p></blockquote>
<p>My next posting will include details on how to extend this to include the use of TLS</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pc-tony.com/2009/06/postfix-sasl-dovecot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>webroot &#8211; wow how good?</title>
		<link>http://blog.pc-tony.com/2008/08/webroot-wow-how-good/</link>
		<comments>http://blog.pc-tony.com/2008/08/webroot-wow-how-good/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 19:56:30 +0000</pubDate>
		<dc:creator>pctony</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://blog.pc-tony.com/?p=39</guid>
		<description><![CDATA[Earlier today I was on the end of yet another presentation. Only this time I walked out wanting to buy the service(s) on offer.  Webroot are a provider of hosted email, and web filtering tools.  My employer currently uses an &#8230; <a href="http://blog.pc-tony.com/2008/08/webroot-wow-how-good/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Earlier today I was on the end of yet another presentation. Only this time I walked out wanting to buy the service(s) on offer.  <a href="http://www.webroot.com">Webroot</a> are a provider of hosted email, and web filtering tools.  My employer currently uses an alternate solution, but sufficed to say after today&#8217;s meeting we may be looking elsewhere.</p>
<p>The product is far superior to that of all it&#8217;s competitors. 24&#215;7 support, true TLS support, <abbr title="Business Continuity"> BC</abbr> capabilities, mail archiving and LDAP support.  The presentation literally blew me away with the features, quality of the product and more simply the speed of the portal.</p>
<p>I am hopeful this will be the end to a few of my bugbears with the current supplier.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pc-tony.com/2008/08/webroot-wow-how-good/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Botnets! Seek and destroy!</title>
		<link>http://blog.pc-tony.com/2008/06/botnets-seek-and-destroy/</link>
		<comments>http://blog.pc-tony.com/2008/06/botnets-seek-and-destroy/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 21:01:45 +0000</pubDate>
		<dc:creator>pctony</dc:creator>
				<category><![CDATA[email]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.pc-tony.com/?p=22</guid>
		<description><![CDATA[I have just had over 11, 200 emails delivered.  Sadly they were all NDRs [1]. Sadly some flaming idiot in Poland, has been sending out emails claiming to be me. I have looked at the message headers for a few &#8230; <a href="http://blog.pc-tony.com/2008/06/botnets-seek-and-destroy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have just had over 11, 200 emails delivered.  Sadly they were all <a href="http://en.wikipedia.org/wiki/Non-delivery_report" target="_blank">NDRs</a> [1].</p>
<p>Sadly some flaming idiot in Poland, has been sending out emails claiming to be me.<br />
I have looked at the message headers for a few of them, they all came from different servers, different providers.</p>
<p>Now, I wonder if there is an MTA addon that checks the message headers as they come in, especially if the message looks like an NDR, and if the message didn&#8217;t originate from one of my known IPs (SPF records perhaps) then reject the message, or pass it to SpamAssassin, or the likes. Any ideas?<br />
[1] NDR &#8211; Non-Delivery Report</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pc-tony.com/2008/06/botnets-seek-and-destroy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Slicehost</title>
		<link>http://blog.pc-tony.com/2008/06/slicehost/</link>
		<comments>http://blog.pc-tony.com/2008/06/slicehost/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 12:30:32 +0000</pubDate>
		<dc:creator>pctony</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://blog.pc-tony.com/?p=20</guid>
		<description><![CDATA[As with DrBacchus, I am now the proud owner of a slice. I decided to migrate all my websites, hosted email, and other miscellaneous hosted services to a dedicated service,  rather than hosting it elsewhere.  I had struggled to keep &#8230; <a href="http://blog.pc-tony.com/2008/06/slicehost/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As with <a href="http://wooga.drbacchus.com/slicehost" target="_blank">DrBacchus</a>, I am now the proud owner of a <a href="http://www.slicehost.com/" target="_blank">slice</a>.</p>
<p>I decided to migrate all my websites, hosted email, and other miscellaneous hosted services to a dedicated service,  rather than hosting it elsewhere.  I had struggled to keep the box located in my employers datacentre racks, due to space and the somewhat agreessive use of the corpororate bandwidth.</p>
<p>So I opted to use a CentOS slicehost service.  The host has been up for nearing 20 days now, not long in the scheme of things I know, but, I don&#8217;t care.  I now have all my services off-site, and backed up two fold (by myself and by slicehost snapshots. Daily, weekly, and monthly.) I dont need to worry about a thing.</p>
<p>The only downside for me, personally, is that the hardware is co-located in the US.  Which means my round-trip times have increased from ~25ms to in excess of 75ms.  Not huge, I know. But noticeable.</p>
<p>I am considering upgrading from my 256 slice, to a 512.  As I have a few php sites (this one included) and a few MySQL databases.  My assigned phisyical RAM is almost gone. Oh well, let&#8217;s see how she gets on.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pc-tony.com/2008/06/slicehost/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eyeing up an 17&#8243; MBP</title>
		<link>http://blog.pc-tony.com/2008/05/3/</link>
		<comments>http://blog.pc-tony.com/2008/05/3/#comments</comments>
		<pubDate>Mon, 26 May 2008 11:30:42 +0000</pubDate>
		<dc:creator>pctony</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Shopping]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.pc-tony.com/?p=3</guid>
		<description><![CDATA[Right, for the past few weeks I have been trying to get my hands on a 17&#8243; MBP. Not the standard retail model, I want the smaller but faster disk, more RAM, and a few other tweaks. In the UK &#8230; <a href="http://blog.pc-tony.com/2008/05/3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="entry-content">
<p>Right, for the past few weeks I have been trying to get my hands on a 17&#8243; MBP. Not the standard retail model, I want the smaller but faster disk, more RAM, and a few other tweaks.</p>
<p>In the UK (apple.com/uk) retail price for this unit is about £2,200. However in the US the same spec will typically retail for about $2,150. That is near as damn it half the price of the UK model. Now I know that the UK (and EU) has steep import taxes for goods, but this does not justify the 100% difference in price.</p>
<p>So, Apple. Why oh why, are you so expensive over here? I mean your pricing is so exhorbantly high that drive people to look for alternate methods of getting their grubby little mits on the toy that they want.</p>
<p>The price for me is so vast, I could probably take a week long trip to the US, buy it locally there, and bring it back with me. With enough change for a cup of tea at LHR.</p>
<p>Does anyone have any ideas? The wife is struggling to see how a £2k+ laptop is value for money, unless it can clean the house, and cook.</p>
<p>This is by no means the only tale of Apple hiking up prices as soon as their products hit the shelves ok UK resellers. In fact Apple are not the only US brand to do this. Levi jeans are another good example. But these are not just 100% more expensive, during my last visit stateside they were near enough 350% more expensive.</p>
<p>It&#8217;s things like these that make you wonder if your future lies in the Country in which you were born. Don&#8217;t even get me started on the state of the UK political climate, it is worse than feeding time at the Zoo of late.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.pc-tony.com/2008/05/3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3 &#8211; RC1</title>
		<link>http://blog.pc-tony.com/2008/05/firefox-3-rc1/</link>
		<comments>http://blog.pc-tony.com/2008/05/firefox-3-rc1/#comments</comments>
		<pubDate>Wed, 21 May 2008 22:52:26 +0000</pubDate>
		<dc:creator>pctony</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://blog.pc-tony.com/?p=5</guid>
		<description><![CDATA[So far so good&#8230; Using on the desktop PC at home, and the $work laptop. I have to say I have seen a massive decrease in time it takes most of my frequently visited sites to load. No crashes or &#8230; <a href="http://blog.pc-tony.com/2008/05/firefox-3-rc1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="entry-content">
<p>So far so good&#8230;</p>
<p>Using on the desktop PC at home, and the $work laptop.<br />
I have to say I have seen a massive decrease in time it takes most of my frequently visited sites to load.</p>
<p>No crashes or other issues I may expect from an RC, but heck.  I aint one to argue.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.pc-tony.com/2008/05/firefox-3-rc1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>freenode-staff -= pctony</title>
		<link>http://blog.pc-tony.com/2008/05/freenode-staff-pctony/</link>
		<comments>http://blog.pc-tony.com/2008/05/freenode-staff-pctony/#comments</comments>
		<pubDate>Tue, 13 May 2008 10:09:28 +0000</pubDate>
		<dc:creator>pctony</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.pc-tony.com/?p=6</guid>
		<description><![CDATA[As of this morning I have just resigned my position as a freenode staffer. I just couldn&#8217;t offer the sort of time that is needed to operate as a staff member for this busy IRC network. I deeply regret not &#8230; <a href="http://blog.pc-tony.com/2008/05/freenode-staff-pctony/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="entry-content">
<p>As of this morning I have just resigned my position as a freenode staffer.</p>
<p>I just couldn&#8217;t offer the sort of time that is needed to operate as a staff member for this busy IRC network. I deeply regret not having 32 hour days so I could fit all my daily activities into one day.</p>
<p>So I have had to decide which projects I do have time for, and of those which am I more involved with and/or passionate about.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.pc-tony.com/2008/05/freenode-staff-pctony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Technical naivete</title>
		<link>http://blog.pc-tony.com/2008/05/technical-naivete/</link>
		<comments>http://blog.pc-tony.com/2008/05/technical-naivete/#comments</comments>
		<pubDate>Thu, 01 May 2008 11:14:16 +0000</pubDate>
		<dc:creator>pctony</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.pc-tony.com/?p=7</guid>
		<description><![CDATA[I am currently helping out with the SVN server issues at Apache, and I have spend a considerable amount of time using the Dell DRAC cards to monitor the console of the said server. I live in the UK, and &#8230; <a href="http://blog.pc-tony.com/2008/05/technical-naivete/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="entry-content">
<p>I am currently helping out with the SVN server issues at Apache, and I have spend a considerable amount of time using the Dell DRAC cards to monitor the console of the said server. I live in the UK, and this server is in Oregon. A fair old distance away.</p>
<p>To me this is no magical mystery, but to my wife on the other hand, well. I was running the remote media option, to boot a Dell diagnostic CD. She simply could not fathom how a single ISO image file on my laptop could make a server 9 hours flying time away boot up and run a new set of programs. She was baffled to say the least.</p>
<p>Oh how some days I wish I could go back to being that naive.  But this is not likely to happen any time soon, alas.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.pc-tony.com/2008/05/technical-naivete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website update</title>
		<link>http://blog.pc-tony.com/2008/04/website-update/</link>
		<comments>http://blog.pc-tony.com/2008/04/website-update/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 00:27:19 +0000</pubDate>
		<dc:creator>pctony</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://blog.pc-tony.com/?p=10</guid>
		<description><![CDATA[I have finally found time to upload the new design for www.pc-tony.com Not sure many of you will use it, but it does have some links to all my other online presence.]]></description>
			<content:encoded><![CDATA[<div class="entry-content">
<p>I have finally found time to upload the new design for <a href="http://www.pc-tony.com/">www.pc-tony.com</a></p>
<p>Not sure many of you will use it, but it does have some links to all my other online presence.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.pc-tony.com/2008/04/website-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

