diff options
author | Luke Smith <luke@lukesmith.xyz> | 2021-09-23 13:32:26 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2021-09-23 13:32:26 -0400 |
commit | 8e66fcb58afcea67256ae809be7b66dd0242556f (patch) | |
tree | 7a1b20f424604cf1c781d3385995e04222ad063d | |
parent | c88994e730a290e466565013e044bd0921fe6fbf (diff) | |
parent | a1a6b60217fcc0ac02421453df9953d149d95068 (diff) |
Merge branch 'master' of github.com:LukeSmithxyz/mutt-wizard
-rwxr-xr-x | bin/mw | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -224,11 +224,12 @@ getboxes() { if [ -n "${force+x}" ] ; then else info="$(curl --location-trusted -s -m 5 --user "$login:$(pass "$fulladdr")" --url "${protocol:-imaps}://$imap:${iport:-993}")" [ -z "$info" ] && echo "Log-on not successful." && return 1 - mailboxes="$(echo "$info" | grep -v HasChildren | sed "s/.*\" //;s/\"//g" | tr -d '
')" + mailboxes="$(echo "$info" | grep -v HasChildren | sed "s/.*\" //;s/\"//g" | tr -d ' +')" fi [ "$type" = "pop" ] && mailboxes="INBOX" getaccounts; for x in 1 2 3 4 5 6 7 8 9; do echo "$accounts" | grep -q "^$x:" || { export idnum="$x"; break ;}; done - toappend="mailboxes $(echo "$mailboxes" | sed "s/^/\"=/;s/$/\"/" | paste -sd ' ' - )" + toappend="mailboxes \`mdir=$maildir/$fulladdr/; find \$mdir -mindepth 1 -type d -name cur | sed -e 's:/cur\$:\":' -e \"s:\$mdir:\\\"=:\" | sort | tr '\\\n' ' '\`" IFS=' ' for x in $mailboxes; do |