add a task to taskwarrior via email
Find a file
2019-12-25 12:13:50 +01:00
mail2taskwarrior make conversion of task properties explicit & strip whitespace in description 2013-03-18 07:08:39 +01:00
README.md 📝 markdownify README 2019-12-24 21:00:33 +01:00
setup.py 📦 add setup.py 2019-12-25 12:13:50 +01:00

Add a task to taskwarrior via email. Makes use of the taskw Python bindings.

For use with procmail or maildrop. Example using maildrop's .mailfilter:

if ($SIZE < 8192 && /^From:.*myaddress@example.com/ && /^To:.*taskwarrior@/)
{
  log "add task via mail2taskwarrior"
  xfilter "devel/mail2taskwarrior/mail2taskwarrior"
  exit
}