diff options
author | Urbain Vaes <urbain@vaes.uk> | 2016-01-20 14:57:24 +0000 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2016-01-20 14:57:24 +0000 |
commit | 5ed0ddfdfe8087f9f46a3419b5aa4d9b574e89e1 (patch) | |
tree | 1b7ebe20670e699a8cb8267b6f6d46425d511f9b /.offlineimap/offlineimap.py | |
parent | bc4befd997912eecf83b24bd5ef20e527b562a67 (diff) |
Switch to isync instead of offlineimap
Diffstat (limited to '.offlineimap/offlineimap.py')
-rw-r--r-- | .offlineimap/offlineimap.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/.offlineimap/offlineimap.py b/.offlineimap/offlineimap.py deleted file mode 100644 index 023f418..0000000 --- a/.offlineimap/offlineimap.py +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env python - -import os -import subprocess - -def mailpasswd(acct): - path = "/home/urbain/.password-store/%s.gpg" % acct - args = ["gpg2", "--use-agent", "--quiet", "--batch", "-d", path] - try: - return subprocess.check_output(args).strip() - except subprocess.CalledProcessError: - return "" |