From 645152d9341d18e5f337b850b202b0cf61774e9d Mon Sep 17 00:00:00 2001 From: Adam Mertzenich <62816361+Mertzenich@users.noreply.github.com> Date: Sat, 10 Oct 2020 22:23:17 -0500 Subject: [PATCH 1/2] Update domains.csv --- share/domains.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/share/domains.csv b/share/domains.csv index c57aa25..5119d76 100644 --- a/share/domains.csv +++ b/share/domains.csv @@ -146,6 +146,7 @@ logorroici.org,mail.autistici.org,993,smtp.autistici.org,465 loves.dicksinhisan.us,mail.cock.li,993,mail.cock.li,587 loves.dicksinmyan.us,mail.cock.li,993,mail.cock.li,587 lukesmith.xyz,mail.lukesmith.xyz,993,mail.lukesmith.xyz,587 +luther.edu,imap.gmail.com,993,smtp.gmail.com,587 mail.com,imap.mail.com,993,smtp.mail.com,587 mail.de,imap.mail.de,993,smtp.mail.de,465 mail.mcgill.ca,outlook.office365.com,993,smtp.office365.com,587 From 9fa021377427122c57e6a40813f7eb3fc4df18d3 Mon Sep 17 00:00:00 2001 From: zneix <44851575+zneix@users.noreply.github.com> Date: Mon, 12 Oct 2020 09:13:55 +0200 Subject: [PATCH 2/2] Fixed a typo in successful logon message It was a bit confusing when it said "use `w -y user@example.com` to sync your mail" --- bin/mw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mw b/bin/mw index 387747a..71ac332 100755 --- a/bin/mw +++ b/bin/mw @@ -265,7 +265,7 @@ finalize() { echo "$mailboxes" | xargs -I {} mkdir -p "$maildir/$fulladdr/{}/cur esac done echo "$toappend" >> "$accdir/$idnum-$fulladdr.muttrc" - [ -z "${online+x}" ] && printf "\033[33mYou should now be able to run \`\033[32mw -y %s\033[33m\` to begin to download your mail.\033[0m\\n" "$fulladdr" + [ -z "${online+x}" ] && printf "\033[33mYou should now be able to run \`\033[32mmw -y %s\033[33m\` to begin to download your mail.\033[0m\\n" "$fulladdr" command -V urlview >/dev/null 2>&1 && [ ! -f "$HOME/.urlview" ] && echo "COMMAND \$BROWSER" > "$HOME/.urlview" return 0 ;}