diff options
author | Luke Smith <luke@lukesmith.xyz> | 2019-02-21 10:14:17 -0500 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2019-02-21 10:14:17 -0500 |
commit | 03279ea318805b3fa7545f01385485e8053daea5 (patch) | |
tree | b015842b634f78d2f0f3a275ef561a75c153dab8 /credentials/imappwd.py | |
parent | f2dcd92c30d4d595a3daa4f8e977ffb967839b69 (diff) |
rewrite underway
Diffstat (limited to 'credentials/imappwd.py')
-rwxr-xr-x | credentials/imappwd.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/credentials/imappwd.py b/credentials/imappwd.py deleted file mode 100755 index 03611dd..0000000 --- a/credentials/imappwd.py +++ /dev/null @@ -1,11 +0,0 @@ -import os.path -import subprocess -home = os.path.expanduser("~") -def mailpasswd(acct): - acct = os.path.basename(acct) - path = "%s/.config/mutt/credentials/%s.gpg" % (home,acct) - args = ["gpg2", "--use-agent", "--quiet", "--batch", "-d", path] - try: - return subprocess.check_output(args).strip().decode('UTF-8') - except subprocess.CalledProcessError: - return "" |