diff options
Diffstat (limited to 'credentials')
-rwxr-xr-x | credentials/getmuttpass | 5 | ||||
-rwxr-xr-x | credentials/imappwd.py | 11 |
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 "" |