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 /bin/getmuttpass | |
parent | f2dcd92c30d4d595a3daa4f8e977ffb967839b69 (diff) |
rewrite underway
Diffstat (limited to 'bin/getmuttpass')
-rwxr-xr-x | bin/getmuttpass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/getmuttpass b/bin/getmuttpass new file mode 100755 index 0000000..15a1d55 --- /dev/null +++ b/bin/getmuttpass @@ -0,0 +1,5 @@ +#!/bin/bash +GPG="gpg"; command -v gpg >/dev/null || GPG="gpg2" +pass=$(printf '%q' "$("$GPG" --decrypt --quiet ~/.local/share/muttwizard/$1.gpg)") +echo "set smtp_pass=\"$pass\"" +echo "set imap_pass=\"$pass\"" |