add a task to taskwarrior via email
Find a file
2020-09-13 17:50:35 +02:00
.gitignore 🧹 .gitignore builds 2020-09-10 14:45:56 +02:00
mail2taskwarrior make conversion of task properties explicit & strip whitespace in description 2013-03-18 07:08:39 +01:00
README.md 📝 README: More about the tags 2020-09-13 17:50:35 +02:00
setup.py 📦 1.0.0 2020-09-13 17:46:24 +02: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
}

Make a RPM

If needed:

  • Update version in setup.py
  • Commit
  • Tag using git tag -a -m 'vx.y.z' 'vx.y.z'
  • Push tags
    • Also to GitHub!

Make the RPM:

  • python setup.py bdist_rpm