summaryrefslogtreecommitdiff
path: root/credentials
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 /credentials
parentf2dcd92c30d4d595a3daa4f8e977ffb967839b69 (diff)
rewrite underway
Diffstat (limited to 'credentials')
-rwxr-xr-xcredentials/getmuttpass5
-rwxr-xr-xcredentials/imappwd.py11
2 files changed, 0 insertions, 16 deletions
diff --git a/credentials/getmuttpass b/credentials/getmuttpass
deleted file mode 100755
index 1359114..0000000
--- a/credentials/getmuttpass
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-GPG="gpg"; command -v gpg >/dev/null || GPG="gpg2"
-pass=$(printf '%q' "$("$GPG" --decrypt --quiet ~/.config/mutt/credentials/$1.gpg)")
-echo "set smtp_pass=\"$pass\""
-echo "set imap_pass=\"$pass\""
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 ""