add a task to taskwarrior via email
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.
neingeist 7878c4a450 📝 README: More about the tags 4 years ago
.gitignore 🧹 .gitignore builds 4 years ago
README.md 📝 README: More about the tags 4 years ago
mail2taskwarrior make conversion of task properties explicit & strip whitespace in description 11 years ago
setup.py 📦 1.0.0 4 years ago

README.md

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