From 60951ccbeedc47a1b21af215dfc151beb0b4f268 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Fri, 14 Oct 2022 22:03:28 -0400 Subject: [PATCH] escape single quote in box, fix #880 --- bin/mw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mw b/bin/mw index 52c46cc..2ab0a68 100755 --- a/bin/mw +++ b/bin/mw @@ -229,7 +229,7 @@ getboxes() { if [ -n "${force+x}" ] ; then idnum=$((idnum + 1)) [ "$idnum" -eq "$x" ] || break done - toappend="mailboxes $(echo "$mailboxes" | sed "s/^/\"=/;s/$/\"/" | paste -sd ' ' - )" + toappend="mailboxes $(echo "$mailboxes" | sed "s/^/\"=/;s/$/\"/;s/'/\\\'/g" | paste -sd ' ' - )" } finalize() { echo "$toappend" >> "$accdir/$fulladdr.muttrc"