8000 GitHub - cpfaff/mutt-ical: Script to support answering ical invitations from mutt
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

cpfaff/mutt-ical

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

mutt-ical.py is meant as a simple way to display and reply to ical invitations from mutt.

Warning
-------

This script was written during a few days in 2013 for Python 2. I currently do
not use it myself. There might be still issues with recent versions of Python 3.

If this script does not work for you, please consider fixing it yourself. It
is just a few lines of code after all.

Pull requests are accepted, but please do not expect me to test them, they
will be merged after a quick and shallow review.

You have been warned.

Installing
----------

1) Copy it into somewhere in your PATH, (or you can specify the PATH in your .mailcap)
2) Edit your mailcap (~/.mailcap or /etc/mailcap) to have the following line:

    text/calendar; <path>mutt-ical.py -i -e "user@domain.tld" %s
    application/ics; <path>mutt-ical.py -i -e "user@domain.tld" %s

(Don't forget to add your email address)

OSX Users
---------

3) For added fun on OSX, you can extend it to the following, to get iCal to open it nicely too (iCal cares not for mime types it seems):

    text/calendar; mv %s %s.ics && open %s.ics && <path>mutt-ical.py -i -e "user@domain.tld" %s.ics && rm %s.ics

4) You can force iCal to stop trying to send mail on your behalf by replacing
the file /Applications/iCal.app/Contents/Resources/Scripts/Mail.scpt with your
own ActionScript. I went with the following: `error number -128`
Which tells it that the user cancelled the action.

    i) Open AppleScript Editor, paste the code from above into a new script, then save it.
    ii) Move the old script /Applications/iCal.app/Contents/Resources/Scripts/Mail.scpt just in case you want to re-enable the functionality.
    iii) Copy your new script into place.

Usage
-----

To reply, just open the ical file from mutt by:
	i) Viewing the attachements (usually 'v')
	ii) Invoking the mailcap entry (usually 'm')
	iii) Choosing your reply

Martin also included the sendmail wrapper, but since mutt's SMTP support has now improved, rather configure your SMTP settings through mutt's config. The wrapper is kept in case someone finds it useful. However, the get_mutt_command function will need the relevant code uncommented to use it.

Requirements
------------

mutt, python, bash, vobject:
http://vobject.skyhouseconsulting.com/ or 'easy_install vobject'

Inspired by:
    http://weirdzone.ru/~veider/accept.py
    http://vpim.rubyforge.org/files/samples/README_mutt.html

About

Script to support answering ical invitations from mutt

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 94.6%
  • Shell 5.4%
0