<?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>adamblog &#187; Uncategorized</title>
	<atom:link href="http://blog.amyl.org.uk/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.amyl.org.uk</link>
	<description>my half-arsed attempt at blogging</description>
	<lastBuildDate>Tue, 06 Dec 2011 19:09:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mailman and Googlemail -&gt; Gmail: A three step approach&#8230;</title>
		<link>http://blog.amyl.org.uk/2010/06/mailman-googlemail-to-gmail/</link>
		<comments>http://blog.amyl.org.uk/2010/06/mailman-googlemail-to-gmail/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 14:53:42 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[lazy]]></category>
		<category><![CDATA[mailman]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://blog.amyl.org.uk/?p=83</guid>
		<description><![CDATA[I thought other listadmins might be having fun with gmail now being available in the UK (rather than &#8220;googlemail&#8221;, as it has been for a while (despite &#8216;gmail&#8217; originally being available, back in the days of invitation only)), and thought I&#8217;d share my hackish way around this,  so listfolks can post from their gmail.com]]></description>
			<content:encoded><![CDATA[<p>I thought other listadmins might be having fun with gmail now being available in the UK (rather than &#8220;googlemail&#8221;, as it has been for a while (despite &#8216;gmail&#8217; originally being available, back in the days of invitation only)), and thought I&#8217;d share my hackish way around this,  so listfolks can post from their gmail.com addresses.</p>
<p>It&#8217;s not pretty, but works for me &#8212; pre-requisite, Mark&#8217;s very useful &#8220;non-members&#8221; script: <a href="http://www.msapiro.net/scripts/non_members">http://www.msapiro.net/scripts/non_members</a></p>
<ol>
<li>find who you need to work with:<br />
<code><br />
mkdir ~/tmp/gmail &#038;&#038; list_lists -b | while read L; do list_members ${L} | grep googlemail > ~/tmp/gmail/${L}; done<br />
</code></li>
<li>Zap annoucement lists from the files, remove empty files, too.</li>
<li>Let them post!<br />
<code><br />
/var/lib/mailman/bin$ ls -1 ~/tmp/gmail | while read L; do sed 's/@googlemail.com/@gmail.com/' ~/tmp/gmail/${L} | while read X; do ./non_members --list=${L} --filter=accept --add ${X} --verbose; done; done<br />
</code></li>
</ol>
<p>(nb: the path (/var/lib/mailman/bin) is from a Debian machine &#8212; Mailman installed via packages &#8212; and in my case /var/lib/mailman/bin being in<br />
my ${PATH} &#8212; so replace those as appropriate in your cases.)</p>
<p>Which seems to have done the trick.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amyl.org.uk/2010/06/mailman-googlemail-to-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t upload images to a Wordpress blog?</title>
		<link>http://blog.amyl.org.uk/2008/10/cant-upload-images-to-a-wordpress-blog/</link>
		<comments>http://blog.amyl.org.uk/2008/10/cant-upload-images-to-a-wordpress-blog/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 16:24:10 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[openrights]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[detective work]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[internet weenies]]></category>
		<category><![CDATA[ORG]]></category>
		<category><![CDATA[uploads]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://tanqueray.amyl.org.uk/~adam/blog/?p=25</guid>
		<description><![CDATA[If, like the guys in the ORG HQ, you find yourself unable to upload images in a Wordpress Blog, and are befuddled by the reams of posts &#38;c on the web, well, here&#8217;s another idea that might sort you out:
Remove the crap from old installs, in your ~/.mozilla directory. And by crap, well, I mean:

appreg
mozver.dat
pluginreg.dat
plugins/

cd]]></description>
			<content:encoded><![CDATA[<p>If, like the guys in the <a href="http://www.openrightsgroup.org"><acronym title="Open Rights Group">ORG</acronym></a> HQ, you find yourself unable to upload images in a Wordpress Blog, and are befuddled by the reams of posts &amp;c on the web, well, here&#8217;s another idea that might sort you out:</p>
<p>Remove the crap from old installs, in your ~/.mozilla directory. And by crap, well, I mean:</p>
<ul>
<li>appreg</li>
<li>mozver.dat</li>
<li>pluginreg.dat</li>
<li>plugins/</li>
</ul>
<p><code>cd .mozilla<br />
rm -rf plugins/<br />
rm appreg<br />
rm mozver.dat</p>
<p>cd firefox/<br />
rm -rf pluginreg.dat</code></p>
<p>Astonishingly, by removing a couple of bits of pelt, the uploads worked for the guys.</p>
<p>Seeing as this is my blog, and people expect me to be miserable, here&#8217;s my whine: why the fuck don&#8217;t people SEARCH THE FUCKING ARCHIVES on forums before posting a new question? I gave up, and went back to old-fashioned testing.</p>
<p>Oh, and I should probably plug a fairly new site I recently discovered: <a href="http://stackoverflow.com/">stackoverflow</a> &#8212; about all I can whine about with that is that is uses OpenID&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amyl.org.uk/2008/10/cant-upload-images-to-a-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>oh yeah&#8230;</title>
		<link>http://blog.amyl.org.uk/2008/03/oh-yeah/</link>
		<comments>http://blog.amyl.org.uk/2008/03/oh-yeah/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 17:02:20 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[crap]]></category>
		<category><![CDATA[helo]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[welcome]]></category>

		<guid isPermaLink="false">http://tanq.amyl.org.uk/~adam/blog/?p=4</guid>
		<description><![CDATA[i should say &#8216;helo&#8217;, really&#8230; seeing as I&#8217;ve just re-stated blogging on my own blog for the first time in aeons.
Expect irregular updates, rants, course language, sarcasm, vitriol, and general other blogosphere crap.
Occasional brokenness may happen too  
]]></description>
			<content:encoded><![CDATA[<p>i should say &#8216;helo&#8217;, really&#8230; seeing as I&#8217;ve just re-stated blogging <strong>on my own blog</strong> for the first time in <em>aeons</em>.</p>
<p>Expect irregular updates, rants, course language, sarcasm, vitriol, and general other blogosphere crap.</p>
<p>Occasional brokenness may happen too <img src='http://blog.amyl.org.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amyl.org.uk/2008/03/oh-yeah/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

