diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-09-08 12:28:11 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-09-08 12:28:11 -0400 |
commit | 5b768b6d87e212bab7c92bc94d0fb6f9c92ecb21 (patch) | |
tree | 65311184f0185f297d4dc1f96dddc5d8d32966ca /.config/maildirproc/purdue.rc | |
parent | 6044bda519b31eeaebba1522ed758b8918bb59b0 (diff) |
maildirproc: use XDG
Diffstat (limited to '.config/maildirproc/purdue.rc')
-rw-r--r-- | .config/maildirproc/purdue.rc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/maildirproc/purdue.rc b/.config/maildirproc/purdue.rc index 6a37bc3..4277a54 100644 --- a/.config/maildirproc/purdue.rc +++ b/.config/maildirproc/purdue.rc @@ -1,9 +1,11 @@ # -*- mode: python; -*- +import os import subprocess processor.maildir_base = "~/Maildir.purdue" processor.auto_reload_rcfile = True +processor.logfile = os.getenv('XDG_CACHE_HOME', "~/.cache")+"/maildirproc/purdue.log" def is_to_or_from(mail,address): """ |