From 03279ea318805b3fa7545f01385485e8053daea5 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Thu, 21 Feb 2019 10:14:17 -0500 Subject: rewrite underway --- credentials/getmuttpass | 5 ----- credentials/imappwd.py | 11 ----------- 2 files changed, 16 deletions(-) delete mode 100755 credentials/getmuttpass delete mode 100755 credentials/imappwd.py (limited to 'credentials') 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 "" -- cgit v1.2.3