On 2007-12-20 12:23:50 -0800, Eric Davis wrote: > Check out my command line interface to Google Calendar. Using > the quick add feature it's easy to cut-n-paste Microsoft events > or write a wrapper script with better iCal parsing.
> http://code.google.com/p/gcalcli FYI, if you're on a Mac, it's fairly easy to let mutt handle calendar (and vcard) attachments with the usual Apple applications; from my ~/.mailcap: text/calendar; waitopen -a /Applications/iCal.app %s; nametemplate=%s.ics text/directory; waitopen -a /Applications/Address\\ Book.app %s; nametemplate=%s.vcf text/x-vcard; waitopen -a /Applications/Address\\ Book.app %s; nametemplate=%s.vcf waitopen is this: #!/bin/sh echo "Launching application..." open "$@" echo -n "Press Enter to continue..." read dummy (The usual problem of open terminating before the process that was launched as actually acquired the file that's being passed.) Regards, -- Thomas Roessler <[EMAIL PROTECTED]>