aboutsummaryrefslogtreecommitdiffstats
path: root/_offlineimap
diff options
context:
space:
mode:
Diffstat (limited to '_offlineimap')
-rwxr-xr-x_offlineimap/offlineimap.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/_offlineimap/offlineimap.py b/_offlineimap/offlineimap.py
index 7d9d2fd..9a60d99 100755
--- a/_offlineimap/offlineimap.py
+++ b/_offlineimap/offlineimap.py
@@ -21,7 +21,7 @@
#
# Aaron LI
# Created: 2015-02-02
-# Updated: 2016-01-11
+# Updated: 2016-01-29
#
@@ -31,9 +31,9 @@ import subprocess
def mailpasswd(account):
account = os.path.basename(account)
- path = '{0}/.offlineimap/{1}.gpg'.format(os.environ['HOME'], account)
+ passfile = os.path.expanduser('~/.private/{0}.gpg'.format(account))
args = ['gpg2', '--for-your-eyes-only', '--no-tty',
- '--quiet', '--batch', '--decrypt', path]
+ '--quiet', '--batch', '--decrypt', passfile]
try:
return subprocess.check_output(args).strip()
except subprocess.CalledProcessError: