diff options
author | Robert White <rjwhite2453@gmail.com> | 2019-07-23 08:24:58 +1000 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2019-07-22 18:24:58 -0400 |
commit | c37a748227a7c81519ae73cdbb69f3a3368833f8 (patch) | |
tree | ab48599ca52ffea2698319454cd9eb4e12a9ecc8 /bin/mw | |
parent | ed2bb03f2dc313996ad8ceffc2feac80efde216f (diff) |
Surround value of imap_pass with quotes (#260)
If the password contains single quotes and is not surrounded by quotes,
Mutt removes the single quotes, rendering an incorrect password.
Diffstat (limited to 'bin/mw')
-rwxr-xr-x | bin/mw | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -107,7 +107,7 @@ set folder = \"imaps://$fulladdr@$imap:$iport\" set imap_user = \"$login\" set header_cache = $cachedir/$title/headers set message_cachedir = $cachedir/$title/bodies -set imap_pass = \`pass mutt-wizard-$title\` +set imap_pass = \"\`pass mutt-wizard-$title\`\" set mbox_type = Maildir set ssl_starttls = yes |