📝 markdownify README

This commit is contained in:
neingeist 2019-12-24 21:00:33 +01:00
parent 4026195fd9
commit d87763942a
2 changed files with 14 additions and 14 deletions

14
README
View file

@ -1,14 +0,0 @@
Add a task to taskwarrior via email. Makes use of the taskw Python bindings.
http://taskwarrior.org
https://github.com/ralphbean/taskw
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
}

14
README.md Normal file
View file

@ -0,0 +1,14 @@
Add a task to [taskwarrior](http://taskwarrior.org) via email. Makes use of the
[taskw](https://github.com/ralphbean/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
}
~~~