summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2019-05-14 09:00:46 -0700
committerKevin McCarthy <kevin@8t8.us>2019-05-14 09:00:46 -0700
commit14bc2fc04d645c5051ab086767a694dd63df3767 (patch)
treec050bee340a08ff5f1c576e493464a65b4a6b734 /contrib
parent7956363669f86c49bf140665177222e31b5d20aa (diff)
Fix sample muttrc to use better quoting practices.
Use single quotes in the password encryption example. For password decryption, put the backquotes inside double quotes to avoid special characters being re-interpreted.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/sample.muttrc-starter4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/sample.muttrc-starter b/contrib/sample.muttrc-starter
index fbc1f906..c13a583f 100644
--- a/contrib/sample.muttrc-starter
+++ b/contrib/sample.muttrc-starter
@@ -37,8 +37,8 @@ mailboxes ! +mutt +family +work
set imap_user = ".....@gmail.com"
# To avoid storing your password in the .muttrc:
-# echo -n "mypassword" | gpg --encrypt -r 0x1234567890ABCDEF > ~/.mutt/account.gpg
-set imap_pass = `gpg --batch -q --decrypt ~/.mutt/account.gpg`
+# echo -n 'mypassword' | gpg --encrypt -r 0x1234567890ABCDEF > ~/.mutt/account.gpg
+set imap_pass = "`gpg --batch -q --decrypt ~/.mutt/account.gpg`"
set folder = imaps://imap.gmail.com/
set spoolfile = "+INBOX"