mutt-wizard/credentials/getmuttpass
2019-02-19 08:14:03 -05:00

6 lines
209 B
Bash
Executable File

#!/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\""