There are 2 posts tagged with email.

There is an Atom feed for posts tagged with email.

Doctorow on emails

2008-04-02 Tags:

Cory Doctorow, coeditor of the Boing Boing blog, recently wrote a really good essay on asynchronous communications.

With several million pieces of archived email -- and hundreds of non-spam messages arriving daily -- you'd think that I was kind of guy who'd carry an email-based mobile phone, a crackberry or Treo or iPhone or what-have-you. You'd think that I ran some kind of IM in the background, and picked up the phone a dozen times a day to chat.

You'd be wrong.

I'm a polyphasic sleeper; I'm writing this at 2AM as I wake up from my first evening sleep cycle. Asynchronous communication is the only thing that works for me. Perhaps it's the other way around: thanks to emails, I can enjoy taking naps all over the day.

Exporting kmail filters

2007-12-23 Tags: , , ,

I love emails. Emails can be threaded into conversations, sent to multiple recipients, contain attachments, and be archived into folders for easy retrieval. Emails are scriptable. You can setup filters that will classify them according to complex criteria, put them into folders, call scripts to trigger events, pipe them through commands, or simply delete them.

I use kmail. It has a great filter system with a visual regular expression editor and filters can be bound to toolbar icon or to keyboard shortcuts. But kmail has a really poor filter export facility. I can understand why it's hard to export them: filters are not just action units; they are part of a pipeline and many of my filters are completely meaning less if they are not executed in a very specific order. Nevertheless, I have a set of non-trivial filters at work that I want to keep in sync with my filters at home.

Kmail hides its filters in kmailrc, a .ini file a lot a auto generated noise. At first, I tried to copy all the [Filter XX] blocks from one kmailrc to the other but there is a really big problem with this solution: it seems to work. Some of the filters will indeed get imported but if you end up with more filters than you previously had, the last few filters in your pipeline will silently get discarded. For some reason, kmail can't figure out how many filters you have so it keeps the count in the [General] section of the kmailrc. I don't want to count my filters each time I synchronize them so I wrote a convenient script to take care of that. Enjoy!