You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

405 B

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
}