From d2643dad6d521a823b356539a9d6287920bb2f87 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 17 Oct 2012 17:24:03 -0500 Subject: [PATCH] add exampe for NotmuchMailChecker --- wrapper.py.dist | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wrapper.py.dist b/wrapper.py.dist index 7e035c0..b082ae3 100755 --- a/wrapper.py.dist +++ b/wrapper.py.dist @@ -41,5 +41,9 @@ if __name__ == '__main__': mde = modsde.ModsDeChecker(mdesettings) status.register_module(mde) + db_path = 'path_to_your_notmuch_database' + notmuch = notmuchmailchecker.NotmuchMailChecker(db_path) + status.register_module(notmuch) + # start the handler status.run()