├── .gitignore ├── AUTHORS ├── COPYING ├── COPYING-GPL-3 ├── INSTALL ├── ISSUES ├── Makefile ├── README.MUTT.md ├── README.md ├── mutt ├── .muttrc ├── README └── bin │ ├── notmuch_tag │ └── prompt_mkdir ├── notmuchfs.c ├── tests ├── include └── main.sh └── version /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.dep 3 | notmuchfs 4 | tags 5 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING-GPL-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/COPYING-GPL-3 -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/INSTALL -------------------------------------------------------------------------------- /ISSUES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/ISSUES -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/Makefile -------------------------------------------------------------------------------- /README.MUTT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/README.MUTT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/README.md -------------------------------------------------------------------------------- /mutt/.muttrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/mutt/.muttrc -------------------------------------------------------------------------------- /mutt/README: -------------------------------------------------------------------------------- 1 | See ../README.MUTT.md 2 | -------------------------------------------------------------------------------- /mutt/bin/notmuch_tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/mutt/bin/notmuch_tag -------------------------------------------------------------------------------- /mutt/bin/prompt_mkdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/mutt/bin/prompt_mkdir -------------------------------------------------------------------------------- /notmuchfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/notmuchfs.c -------------------------------------------------------------------------------- /tests/include: -------------------------------------------------------------------------------- 1 | NOTMUCHFS=../notmuchfs 2 | TEST_ROOT=`pwd`/testdir/ 3 | 4 | die() { 5 | echo $1 6 | exit 1; 7 | } 8 | -------------------------------------------------------------------------------- /tests/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsto/notmuchfs/HEAD/tests/main.sh -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 0.3 2 | --------------------------------------------------------------------------------