summaryrefslogtreecommitdiff
path: root/bin/imappwd.py
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-02-21 10:14:17 -0500
committerLuke Smith <luke@lukesmith.xyz>2019-02-21 10:14:17 -0500
commit03279ea318805b3fa7545f01385485e8053daea5 (patch)
treeb015842b634f78d2f0f3a275ef561a75c153dab8 /bin/imappwd.py
parentf2dcd92c30d4d595a3daa4f8e977ffb967839b69 (diff)
rewrite underway
Diffstat (limited to 'bin/imappwd.py')
-rwxr-xr-xbin/imappwd.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/imappwd.py b/bin/imappwd.py
new file mode 100755
index 0000000..9b25fcc
--- /dev/null
+++ b/bin/imappwd.py
@@ -0,0 +1,11 @@
+import os.path
+import subprocess
+home = os.path.expanduser("~")
+def mailpasswd(acct):
+ acct = os.path.basename(acct)
+ path = "%s/.local/share/muttwizard/%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 ""