mutt-wizard

fork of Luke Smiths mutt-wizard
git clone git://git.jakekoroman.com/mutt-wizard
Log | Files | Refs | README | LICENSE

commit 93dfd9c2e18c63ef849b8275236497b8ba907027
parent eaa224d0100a2b81e5e2f14ff0beecc7eb294dfa
Author: Luke Smith <luke@lukesmith.xyz>
Date:   Sat, 14 Apr 2018 16:05:59 -0700

double quotes in muttrc

Diffstat:
Mcredentials/getmuttpass | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/credentials/getmuttpass b/credentials/getmuttpass @@ -1,5 +1,5 @@ #!/bin/bash pass=$(gpg2 --decrypt --quiet ~/.config/mutt/credentials/$1.gpg) pass=$(printf '%q' $pass) -echo set smtp_pass=\'$pass\' -echo set imap_pass=\'$pass\' +echo set smtp_pass=\"$pass\" +echo set imap_pass=\"$pass\"