|
|
@@ -214,7 +214,8 @@ getboxes() { |
|
|
|
if [ -n "${force+x}" ]; then |
|
|
|
mailboxes="$(printf "INBOX\\nDrafts\\nJunk\\nTrash\\nSent\\nArchive")" |
|
|
|
else |
|
|
|
info="$(curl --location-trusted -s -m 5 --user "$login:$(pass "$passprefix$fulladdr")" --url "${protocol:-imaps}://$imap:${iport:-993}")" |
|
|
|
[ ! -z "$sslcertself" ] && addarg="-k" |
|
|
|
info="$(curl "$addarg" --location-trusted -s -m 5 --user "$login:$(pass "$passprefix$fulladdr")" --url "${protocol:-imaps}://$imap:${iport:-993}")" |
|
|
|
[ -z "$info" ] && errorexit |
|
|
|
mailboxes="$(echo "$info" | grep -v HasChildren | sed "s/.*\" //;s/\"//g" | tr -d '\r')" |
|
|
|
fi |
|
|
@@ -294,6 +295,7 @@ Options allowed with -a: |
|
|
|
-X Delete an account's local email too when deleting. |
|
|
|
-o Configure address, but keep mail online. |
|
|
|
-f Assume typical English mailboxes without attempting log-on. |
|
|
|
-c Path to self-signed TLS certificate. |
|
|
|
|
|
|
|
NOTE: Once at least one account is added, you can run |
|
|
|
\`mbsync -a\` to begin downloading mail. |
|
|
@@ -326,7 +328,7 @@ reorder() { |
|
|
|
' "$tempfile" >>"$muttrc" |
|
|
|
} |
|
|
|
|
|
|
|
while getopts "rfpXlhodTYD:y:i:I:s:S:u:a:n:P:x:m:t:" o; do case "${o}" in |
|
|
|
while getopts "rfpXlhodTYD:y:i:I:s:S:u:a:n:P:x:m:t:c:" o; do case "${o}" in |
|
|
|
l) setact list ;; |
|
|
|
r) setact reorder1 ;; |
|
|
|
d) setact delete ;; |
|
|
@@ -393,6 +395,11 @@ while getopts "rfpXlhodTYD:y:i:I:s:S:u:a:n:P:x:m:t:" o; do case "${o}" in |
|
|
|
setact add |
|
|
|
password="$OPTARG" |
|
|
|
;; |
|
|
|
c) |
|
|
|
setact add |
|
|
|
sslcertself="$OPTARG" |
|
|
|
sslcert="$OPTARG" |
|
|
|
;; |
|
|
|
X) |
|
|
|
setact delete |
|
|
|
purge=True |
|
|
|