<?xml version="1.0"?>
<!-- name="generator" content="blosxom/2.0" -->
<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN" "http://my.netscape.com/publish/formats/rss-0.91.dtd">

<rss version="0.91">
  <channel>
    <title>sjh - mountain biking running linux vegan geek spice   </title>
    <link>https://svana.org/sjh/diary</link>
    <description>mtb / vegan / running / linux / canberra / cycling / etc</description>
    <language>en</language>

  <item>
    <title>[comp/email] Interest in data from an email spike</title>
    <pubDate>Fri, 13 Jun 2008 13:56:00 </pubDate>
    <link>https://svana.org/sjh/diary/2008/06/13#2008-06-13_01</link>
    <description>&lt;!-- 2008-06-13 13:56:20 --&gt;

A few minutes ago in my work email I saw an email appear from the 
&lt;a href=&quot;http://www.nteu.org.au/bd/act&quot;&gt;ACT NTEU&lt;/a&gt; division. The surprising
thing about this email was they attached a 47 MB file to the email (they
really should have put a link to it and said it was a large download). Sure
if you are at work the size does not take long to download, however it is
rather bone-headed for any members to be given an email that size at any other
location. (once expanded with the attachment encoding it becomes a fair bit
larger anyway).

&lt;p&gt;

I can not find the department NTEU person to learn if there are any numbers on
how many staff on campus are actually union members, nor can I get hold of the
campus wide email system admin people so I can not predict how much this hit
storage and network load on the email systems campus wide. I could do some
analysis on the department email server, though I am not sure if that would
provide much insight. As I suspect there are a fairly large number of union
members on campus and they all will have received this email as it is valid
email and will have come in through the spam filters.
</description>
  </item>
  <item>
    <title>[comp/email] The pungent smell of spam</title>
    <pubDate>Wed, 05 Jul 2006 08:44:00 </pubDate>
    <link>https://svana.org/sjh/diary/2006/07/05#2006-07-05_01</link>
    <description>&lt;!-- 2006-07-05 08:44:09 --&gt;

It is obviously true that spammers really do find you anywhere, today I
received spam to my 
&lt;a href=&quot;https://svana.org/sjh/diary/2006/03/27#2006-03-27_01&quot;&gt;palindromic
ua.di.hjs@sjh.id.au email address&lt;/a&gt;. It however only received a spam
assassin score of 3.5, ahh well.
</description>
  </item>
  <item>
    <title>[comp/email] Palindromic email address</title>
    <pubDate>Mon, 27 Mar 2006 15:12:00 </pubDate>
    <link>https://svana.org/sjh/diary/2006/03/27#2006-03-27_01</link>
    <description>&lt;!-- 2006-03-27 15:12:04 --&gt;

I was just sitting here wondering, I do not think I have ever seen someone use
a palindromic email address, such as gro.anavs@svana.org. So there is no real
point to it but I thought, for the heck of it I may as well add a palindromic
email address to one of my domains. 
&lt;a href=&quot;mailto:ua.di.hjs@sjh.id.au&quot;&gt;ua.di.hjs@sjh.id.au&lt;/a&gt;.

&lt;p&gt;

I guess one of the reasons not to is that is harder to type/remember than a
normal address such as sjh@sjh.id.au.</description>
  </item>
  <item>
    <title>[comp/email] 500 Mile Email Limit</title>
    <pubDate>Tue, 01 Nov 2005 22:19:00 </pubDate>
    <link>https://svana.org/sjh/diary/2005/11/01#2005-11-01_05</link>
    <description>&lt;!-- 2005-11-01 22:19:50 --&gt;

This is cool, freaky but cool. This story of a sysadmin trying to find out the
cause of a email fault reported by the statistics department claiming email
would not deliver to locations much more than 
&lt;a href=&quot;http://www.ibiblio.org/harris/500milemail.html&quot;&gt;500 miles away&lt;/a&gt;.

&lt;p&gt;

Reading it, by the end it makes perfect sense, but half way through I was
going through the same thoughts he must have been, wtf is happening sort of
thoughts.</description>
  </item>
  <item>
    <title>[comp/email] Random Ani sig thing</title>
    <pubDate>Tue, 03 May 2005 15:13:00 </pubDate>
    <link>https://svana.org/sjh/diary/2005/05/03#2005-05-03_01</link>
    <description>&lt;!-- 2005-05-03 15:13:58 --&gt;

I previously 
&lt;a href=&quot;https://svana.org/sjh/diary/2004/12/21#2004-12-21_04&quot;&gt;mentioned&lt;/a&gt; a
plan to have random signatures in my email using quotes I selected from all
Ani Difranco songs. As &lt;a href=&quot;http://lca2005.linux.org.au/&quot;&gt;lca&lt;/a&gt; is now
over and I do not feel the need to advertise the conference in my signature I
thought it was time to finish implementing this. (after all only about one
hour was required to finish it)

&lt;p&gt;

The perl code may be found 
&lt;a href=&quot;https://svana.org/sjh/various/aqgen.pl&quot;&gt;here&lt;/a&gt; and the source data
is this files of &lt;a href=&quot;https://svana.org/sjh/ani_quotes.text&quot;&gt;quotes&lt;/a&gt;. It
is not particularly difficult to change the code to use a different data
source and different thing to print. As for the code, it would be pretty easy
to implement a random selection of a quote every time the program runs. My
ideal implementation however uses each quote from the file once until it runs
out then starts over again, the same quote can not appear twice in a row.

&lt;p&gt;

To do the easy only random implementation I would only need the
read_quote_file, serialise_quotes and remove_random_quote functions (it could
in fact be simplified far more than this too). So I added command line options
(give it an alternate data source, and alternate cache file, an alternate
static sig content file, a unique option and a help option). Run as is it uses
the default filenames that I set in the code and sits out a random quote.

&lt;p&gt;

For my usage the unique option maintains a cache of quotes that diminishes
every time the program is run with the -u option. I used Data::Dumper to store
the cache, messy and hackish but really easy to do. Anyway pretty basic code,
did not take long to implement, and sure it can be simplified a lot (lets hope
it does not get &lt;a href=&quot;http://www.stillhq.com/diary/000813.html&quot;&gt;out&lt;/a&gt; of 
&lt;a href=&quot;http://ozlabs.org/~jk/diary/tech/software/pmkdir.diary/&quot;&gt;hand&lt;/a&gt; (on
the recursive mkdir case, 
&lt;a href=&quot;http://bakeyournoodle.com/~tony/diary/&quot;&gt;Tony&lt;/a&gt; removed a few more
characters from &lt;a href=&quot;http://ozlabs.org/~jk/diary/&quot;&gt;Jeremy's&lt;/a&gt; example,
maybe he should &lt;a href=&quot;http://bakeyournoodle.com/~tony/diary/&quot;&gt;blog&lt;/a&gt;
about it)) but it works and passes the test case I created for it (small
files, missing files, running a thousand times, using various options, etc)
though I did not bother making it handle bad input data correctly, oh well no
matter.

&lt;p&gt;

Getting back into geeky things lightly.</description>
  </item>
  <item>
    <title>[comp/email] ACAP for data access appears difficult</title>
    <pubDate>Wed, 22 Dec 2004 20:50:00 </pubDate>
    <link>https://svana.org/sjh/diary/2004/12/22#2004-12-22_03</link>
    <description>&lt;!-- 2004-12-22 20:50:36 --&gt;

In response to my 
&lt;a href=&quot;https://svana.org/sjh/diary/2004/12/22#2004-12-22_01&quot;&gt;post&lt;/a&gt;
suggesting address book data be placed in an IMAP folder for easy access from
any IMAP client. &lt;a href=&quot;http://www.frogmouth.net&quot;&gt;Brad&lt;/a&gt; pointed out the
&lt;a href=&quot;http://asg.web.cmu.edu/acap/&quot;&gt;ACAP&lt;/a&gt; effort. Admittedly I noticed
this rfc on the &lt;a href=&quot;http://www.imap.org/papers/biblio.html&quot;&gt;imap rfcs
page&lt;/a&gt; when I glanced at it earlier, I did however ignore it as it looked
complex. Now looking closer I think I was right it is complex.

&lt;p&gt;

About two years ago when a vulnerability in the default implementation of 
&lt;a href=&quot;http://asn1.elibel.tm.fr/en/&quot;&gt;ASN.1&lt;/a&gt; was discovered, almost every
appliance or library using it was found to be vulnerable. Although many
important protocols (SSL, LDAP, SNMP, etc) use ASN.1 no one had bothered
reimplementing it due to the huge size and complexity of the standard. The 
&lt;a href=&quot;http://asg.web.cmu.edu/acap/&quot;&gt;ACAP&lt;/a&gt; people say their protocol is
supposed to fill &quot;niche somewhere between a full-blown directory service, a
file system, and specialised single-service protocol support&quot;.

&lt;p&gt;

I still think it is too complex, if you think about basic rss and how much it
has taken off, there is no real formal protocol or XML dtd, or anything, rss
is simple to implement on both client and server end and it tends to work
using standard libraries and tools. I did a 
&lt;a href=&quot;http://search.cpan.org&quot;&gt;CPAN&lt;/a&gt; search for ACAP, there was nothing remotely
usable available in CPAN to speak ACAP, nor was there a Debian library
(apt-cache search acap) or something to make it easier. If you have an IMAP
client already however, there are a bunch of vCard libraries in CPAN and
Debian, the same applies for the other stuff (email with vCard mime
attachments) in Bill's suggestion for an address book in IMAP.

&lt;p&gt;

The other thing is I have never seen any mention of ACAP support in a feature
list for an email client. (though I have not looked explicitly for this)</description>
  </item>
  <item>
    <title>[comp/email] Address book storage in an IMAP folder</title>
    <pubDate>Wed, 22 Dec 2004 17:52:00 </pubDate>
    <link>https://svana.org/sjh/diary/2004/12/22#2004-12-22_01</link>
    <description>&lt;!-- 2004-12-22 17:52:47 --&gt;

Talking with &lt;a href=&quot;http://llib.cjb.net/&quot;&gt;Bill Clarke&lt;/a&gt; last night at work
about &lt;a href=&quot;http://www.imap.org&quot;&gt;IMAP&lt;/a&gt; issues (I was doing work on more
features and stuff for our new email system at work) and he made what I
thought was a pretty bloody good suggestion. One of the problems with IMAP
storage of email, is though you can access your email from anywhere, you do
not have an associated address book accessible from anywhere in all email
clients that support IMAP.

&lt;p&gt;

&lt;a href=&quot;http://llib.cjb.net/&quot;&gt;Bill's&lt;/a&gt; suggestion though simple and not
some sort of IMAP extension or anything, to me appears elegant and useful. Store
address books in a folder in your IMAP mail storage area. I thought, that
sounds neat, use some common format such as 
&lt;a href=&quot;http://www.imc.org/pdi/&quot;&gt;vcard&lt;/a&gt; attachments to emails. So the
folder, could be called anything and store an email per vcard file. The email
client could be told to use the IMAP folder named &quot;whatever&quot; to get its
address book information. Now all we need is someone to write a 
&lt;a href=&quot;http://www.mozilla.org/products/thunderbird/&quot;&gt;thunderbird&lt;/a&gt;
extension and a &lt;a href=&quot;http://www.squirrelmail.org/&quot;&gt;squirrelmail&lt;/a&gt;
extension to do this and we will be set.

&lt;p&gt;

I did look around google a bit and glance through the 
&lt;a href=&quot;http://www.imap.org/papers/biblio.html&quot;&gt;IMAP rfcs&lt;/a&gt; and could not
see that anyone had done anything similar yet, of course I may have missed it.
&lt;a href=&quot;http://www.ozlabs.org/people/dgibson/&quot;&gt;David Gibson&lt;/a&gt; has talked
about plans to make a better mail retrieval protocol than IMAP from time to
time, to get around problems such as the need for tools like 
&lt;a href=&quot;gopher://gopher.quux.org/1/devel/offlineimap&quot;&gt;offlineimap&lt;/a&gt; (and
may I note, how cool is it that this is hosted on gopher). David may have
thought of some way to add useful information to his protocol, however nothing
is implemented yet so who knows.</description>
  </item>
  </channel>
</rss>