Browse Source

allow dynamically loading available mailboxes

this way if a folder is added or deleted in the remote
location, and gets deleted after sync, it is reflected
in the next opening

Signed-off-by: Aisha Tammy <floss@bsd.ac>
tags/v3.3
Aisha Tammy 2 years ago
parent
commit
2cb2fa0345
No known key found for this signature in database GPG Key ID: C0E2E5A5205E152E
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bin/mw

+ 1
- 1
bin/mw View File

@@ -227,7 +227,7 @@ getboxes() { if [ -n "${force+x}" ] ; then
fi
[ "$type" = "pop" ] && mailboxes="INBOX"
getaccounts; for x in $(seq 1 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 -type d -name cur | sort | sed -e 's:/cur\$:\":' -e \"s:\$mdir:\\\"=:\" | tr '\\\n' ' '\`"
for x in $mailboxes; do
case "$x" in
*[Ss][Ee][Nn][Tt]*) setBox record "$x"; formatShortcut s sent "$x" ;;


Loading…
Cancel
Save