From e2b905b45d19e09978cecefe428b64b4b66685c1 Mon Sep 17 00:00:00 2001
From: Luciano Nooijen <luciano@bytecode.nl>
Date: Mon, 13 May 2019 16:26:30 +0200
Subject: Added Eneco to domains.csv

Signed-off-by: Luciano Nooijen <luciano@bytecode.nl>
---
 share/domains.csv | 1 +
 1 file changed, 1 insertion(+)

diff --git a/share/domains.csv b/share/domains.csv
index 5e6ddd9..1281047 100644
--- a/share/domains.csv
+++ b/share/domains.csv
@@ -66,6 +66,7 @@ dr.com,imap.mail.com,993,smtp.mail.com,587
 duke.edu,outlook.office365.com,993,smtp.office365.com,587
 email.arizona.edu,imap.gmail.com,993,smtp.gmail.com,587
 email.com,imap.mail.com,993,smtp.mail.com,587
+eneco.com,outlook.office365.com,993,smtp.office365.com,587
 engineer.com,imap.mail.com,993,smtp.mail.com,587
 erciyes.edu.tr,posta.erciyes.edu.tr,993,smtp.erciyes.edu.tr,587
 europe.com,imap.mail.com,993,smtp.mail.com,587
-- 
cgit v1.2.3


From 49d2e12125f7881e43ebc57895c8eb8a13a8706c Mon Sep 17 00:00:00 2001
From: Kr1ss <kr1ss.x@yandex.com>
Date: Wed, 15 May 2019 20:19:55 +0200
Subject: check if .gpg-id is in the pass store on startup

The current test  did not terminate  the script in cases  when the user
already has a private GPG key,  but they'd not initialized the password
store.
This leads to an infinite loop in the `getpass()` function.

The commit fixes https://github.com/LukeSmithxyz/mutt-wizard/issues/204
---
 bin/mw | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/bin/mw b/bin/mw
index 636a837..a415f0e 100755
--- a/bin/mw
+++ b/bin/mw
@@ -1,6 +1,10 @@
 #!/bin/sh
 command -V gpg >/dev/null 2>&1 && GPG="gpg" || GPG="gpg2"
-! "$GPG" --list-secret-keys $(cat "$HOME/.password-store/.gpg-id") >/dev/null 2>&1 && printf "\`pass\` must be installed and initialized to encrypt passwords.\\nBe sure it is installed and run \`pass init <yourgpgemail>\`.\\nIf you don't have a GPG public private key pair, run \`$GPG --full-gen-key\` first.\\n" && exit
+[ -r "$HOME/.password-store/.gpg-id" ] &&
+    "$GPG" --list-secret-keys $(cat "$HOME/.password-store/.gpg-id") >/dev/null 2>&1 || {
+        printf "\`pass\` must be installed and initialized to encrypt passwords.\\nBe sure it is installed and run \`pass init <yourgpgemail>\`.\\nIf you don't have a GPG public private key pair, run \`$GPG --full-gen-key\` first.\\n"
+        exit
+    }
 ! command -v mbsync >/dev/null && printf "\`mbsync\` must be installed to run mutt-wizard.\\n" && exit
 
 if [[ "$OSTYPE" == "darwin"* ]]; then
-- 
cgit v1.2.3


From 31c53898d4fc047ad86900f858bb2134d58eeac5 Mon Sep 17 00:00:00 2001
From: Nishant Elkunchwar <14308382+thecountoftuscany@users.noreply.github.com>
Date: Thu, 16 May 2019 13:10:07 +0530
Subject: Update share/domains.csv

Added @uw.edu and @alumni.bits-pilani.ac.in in share/domains.csv
---
 share/domains.csv | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/share/domains.csv b/share/domains.csv
index 1281047..5b9c3ad 100644
--- a/share/domains.csv
+++ b/share/domains.csv
@@ -7,6 +7,7 @@ activist.com,imap.mail.com,993,smtp.mail.com,587
 adexec.com,imap.mail.com,993,smtp.mail.com,587
 airmail.cc,mail.cock.li,993,mail.cock.li,587
 allergist.com,imap.mail.com,993,smtp.mail.com,587
+alumni.bits-pilani.ac.in,imap.gmail.com,993,smtp.gmail.com,465
 alumni.com,imap.mail.com,993,smtp.mail.com,587
 alumnidirector.com,imap.mail.com,993,smtp.mail.com,587
 alunos.utfpr.edu.br,imap.gmail.com,993,smtp.gmail.com,587
@@ -180,6 +181,7 @@ uach.mx,imap.gmail.com,993,smtp.gmail.com,587
 uoregon.edu,imap.uoregon.edu,993,smtp.uoregon.edu,587
 uqtr.ca,outlook.office365.com,993,smtp.office365.com,587
 usa.com,imap.mail.com,993,smtp.mail.com,587
+uw.edu,imap.gmail.com,993,smtp.gmail.com,465
 uymail.com,imap.mail.com,993,smtp.mail.com,587
 vip.onet.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
 vp.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
-- 
cgit v1.2.3


From 46c796ef641ae286894dfd22cef62c62a425a204 Mon Sep 17 00:00:00 2001
From: Luke Smith <luke@lukesmith.xyz>
Date: Thu, 16 May 2019 13:59:09 -0400
Subject: fatal breakage fixed

---
 bin/mw | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/mw b/bin/mw
index a415f0e..7eefed9 100755
--- a/bin/mw
+++ b/bin/mw
@@ -7,7 +7,7 @@ command -V gpg >/dev/null 2>&1 && GPG="gpg" || GPG="gpg2"
     }
 ! command -v mbsync >/dev/null && printf "\`mbsync\` must be installed to run mutt-wizard.\\n" && exit
 
-if [[ "$OSTYPE" == "darwin"* ]]; then
+if [ "$OSTYPE" = "darwin" ]; then
   prefix="/usr/local"
 else
   prefix="/usr"
-- 
cgit v1.2.3


From 286d865e759d0247cd31f398ed29bdca7962e595 Mon Sep 17 00:00:00 2001
From: Niklas <github@datentopf.org>
Date: Fri, 17 May 2019 22:15:06 +0200
Subject: Added datentopf.org and inf.h-brs.de

---
 share/domains.csv | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/share/domains.csv b/share/domains.csv
index 1281047..a1d7b23 100644
--- a/share/domains.csv
+++ b/share/domains.csv
@@ -56,6 +56,7 @@ counsellor.com,imap.mail.com,993,smtp.mail.com,587
 cryptolab.net,mail.autistici.org,993,smtp.autistici.org,465
 cumallover.me,mail.cock.li,993,mail.cock.li,587
 cyberservices.com,imap.mail.com,993,smtp.mail.com,587
+datentopf.org,mail.datentopf.org,993,mail.datentopf.org,587
 deliveryman.com,imap.mail.com,993,smtp.mail.com,587
 dicksinhisan.us,mail.cock.li,993,mail.cock.li,587
 dicksinmyan.us,mail.cock.li,993,mail.cock.li,587
@@ -100,6 +101,7 @@ hotmail.fr,imap-mail.outlook.com,993,smtp-mail.outlook.com,587
 hushmail.com,imap.hushmail.com,993,smtp.hushmail.com,465
 illinois.edu, imap.gmail.com,993,smtp.gmail.com,465
 iname.com,imap.mail.com,993,smtp.mail.com,587
+inf.h-brs.de,imap.inf.h-brs.de,993,smtp.inf.h-brs.de,587
 insiberia.net,mail.autistici.org,993,smtp.autistici.org,465
 insicuri.net,mail.autistici.org,993,smtp.autistici.org,465
 interia.eu,poczta.interia.pl,993,poczta.interia.pl,465
@@ -159,6 +161,7 @@ redchan.it,mail.cock.li,993,mail.cock.li,587
 runbox.com,mail.runbox.com,993,mail.runbox.com,587
 rwth-aachen.de,mail.rwth-aachen.de,993,mail.rwth-aachen.de,587
 sapo.pt,imap.sapo.pt,993,smtp.sapo.pt,587
+smail.inf.h-brs.de,imap.inf.h-brs.de,993,smtp.inf.h-brs.de,587
 southwales.ac.uk,imap.gmail.com,993,smtp.gmail.com,587
 spoko.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
 stronzi.org,mail.autistici.org,993,smtp.autistici.org,465
-- 
cgit v1.2.3


From f807448b649f382a73d60cce4a6d0dcffce7decc Mon Sep 17 00:00:00 2001
From: Alex Voloshyn <a.voloshyn@gmail.com>
Date: Mon, 20 May 2019 13:48:14 +0900
Subject: use image resolution instead of window row/col size to display the
 image attachment

---
 bin/muttimage | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/bin/muttimage b/bin/muttimage
index 03bd5f3..c798293 100755
--- a/bin/muttimage
+++ b/bin/muttimage
@@ -1,5 +1,11 @@
 #!/bin/bash
-height=$(stty  size | awk 'BEGIN {FS = " "} {print $1;}')
-width=$(stty  size | awk 'BEGIN {FS = " "} {print $2;}')
+
+#get image resolution
+resolution=$(identify $1 | awk '{print $3}')
+IFS='x' # x is set as delimiter
+read -ra ADDR <<< "$resolution" 
+width=${ADDR[0]}
+height=${ADDR[1]}
+
 ### Display Image / offset with mutt bar
-echo -e "2;3;\n0;1;210;20;$((width*7-250));$((height*14-100));0;0;0;0;$1\n4;\n3;" |  /usr/lib/w3m/w3mimgdisplay &
+echo -e "2;3;\n0;1;0;42;$((width));$((height));0;0;0;0;$1\n4;\n3;" |  /usr/lib/w3m/w3mimgdisplay &
-- 
cgit v1.2.3


From 4c57b410fc72d332ccdcf939e58521a248ca5fd0 Mon Sep 17 00:00:00 2001
From: Luke Smith <luke@lukesmith.xyz>
Date: Mon, 20 May 2019 12:59:27 -0400
Subject: gnuisms removed

---
 bin/mailsync | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/bin/mailsync b/bin/mailsync
index 43429f5..b038fe6 100755
--- a/bin/mailsync
+++ b/bin/mailsync
@@ -2,7 +2,7 @@
 # Sync mail and give notification if there is new mail.
 
 # Run only if user logged in (prevent cron errors)
-pgrep -cu "$USER" >/dev/null || exit
+pgrep -u "$USER" >/dev/null || exit
 
 # Checks for internet connection and set notification script.
 ping -q -c 1 1.1.1.1 > /dev/null || exit
@@ -18,7 +18,7 @@ else
 fi
 
 echo " 🔃" > /tmp/imapsyncicon_$USER
-pkill -RTMIN+12 i3blocks
+pkill -RTMIN+12 i3blocks >/dev/null 2>&1
 
 # Run mbsync. You can feed this script different settings.
 if [ $# -eq 0 ]; then
@@ -28,7 +28,7 @@ else
 fi
 
 rm -f /tmp/imapsyncicon_$USER
-pkill -RTMIN+12 i3blocks
+pkill -RTMIN+12 i3blocks >/dev/null 2>&1
 
 # Check all accounts/mailboxes for new mail. Notify if there is new content.
 for account in "$HOME/.local/share/mail/"*
-- 
cgit v1.2.3


From a6c81625c8ed887b7ddbfed005d2a2ffdf27a503 Mon Sep 17 00:00:00 2001
From: Luke Smith <luke@lukesmith.xyz>
Date: Mon, 20 May 2019 13:09:11 -0400
Subject: posix and mac fix

---
 bin/mw | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/bin/mw b/bin/mw
index 7eefed9..1cae8fc 100755
--- a/bin/mw
+++ b/bin/mw
@@ -7,11 +7,11 @@ command -V gpg >/dev/null 2>&1 && GPG="gpg" || GPG="gpg2"
     }
 ! command -v mbsync >/dev/null && printf "\`mbsync\` must be installed to run mutt-wizard.\\n" && exit
 
-if [ "$OSTYPE" = "darwin" ]; then
-  prefix="/usr/local"
-else
-  prefix="/usr"
-fi
+case "$(uname)" in
+	Linux) prefix="/usr" ;;
+	*)  prefix="/usr/local" ;;
+esac
+
 muttdir="$HOME/.config/mutt"		# Main mutt config location
 accdir="$muttdir/accounts"		# Directory for account settings
 maildir="$HOME/.local/share/mail"	# Location of mail storage
-- 
cgit v1.2.3


From e4794af679e0d79b222930d034e98ca7116c8ccd Mon Sep 17 00:00:00 2001
From: Luke Smith <luke@lukesmith.xyz>
Date: Mon, 20 May 2019 13:44:51 -0400
Subject: escape spaces in mailboxes

---
 bin/mw | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/mw b/bin/mw
index 1cae8fc..b693299 100755
--- a/bin/mw
+++ b/bin/mw
@@ -216,7 +216,7 @@ tryconnect() { mkdir -p "$maildir/$title"
 	fi ;}
 
 finalize() { \
-	boxes="$(find "$maildir/$title/" -mindepth 1 -maxdepth 1 | sed "s/^.*\//=/")"
+	boxes="$(find "$maildir/$title/" -mindepth 1 -maxdepth 1 | sed "s/\ /\\\ /g;s/^.*\//=/")"
 	[ -z "$boxes" ] && printf "\033[31mNo local mailboxes have been detected for %s.\033[0m\\nThis means that mbsync has not been successfully run.\\nRun mbsync, and if it has an error, be sure to check your password and server settings manually if needbe.\\n" "$title" && return
 	printf "Setting default mailboxes for your Inbox, Sent, Drafts and Trash in mutt...\\n"
 	spoolfile=$(echo "$boxes" | grep -i -m 1 inbox | sed 's/=/+/g')
-- 
cgit v1.2.3


From 55e3bb683c908f9962941ce9f4f6dcacc151291b Mon Sep 17 00:00:00 2001
From: Luke Smith <luke@lukesmith.xyz>
Date: Mon, 20 May 2019 15:41:03 -0400
Subject: portable openfile

---
 bin/openfile | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/bin/openfile b/bin/openfile
index a3163f3..e530b3e 100755
--- a/bin/openfile
+++ b/bin/openfile
@@ -1,9 +1,8 @@
 #!/bin/sh
 # Helps open a file with xdg-open from mutt in a external program without weird side effects.
 [ $(uname) = "Darwin" ] && opener="open" || opener="setsid xdg-open"
-base=$(basename "$1")
-ext="${base##*.}"
-file=$(mktemp -u --suffix=".$ext")
+mkdir -p "/tmp/$USER-mutt-tmp"
+file="/tmp/$USER-mutt-tmp/$(basename "$1")"
 rm -f "$file"
 cp "$1" "$file"
 $opener "$file" >/dev/null 2>&1 &
-- 
cgit v1.2.3


From 55b47447cb01f8f3dff70ca23fbdec6c656a3ceb Mon Sep 17 00:00:00 2001
From: Luke Smith <luke@lukesmith.xyz>
Date: Mon, 20 May 2019 15:42:24 -0400
Subject: fix

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index aa803bc..8af22d7 100644
--- a/README.md
+++ b/README.md
@@ -53,7 +53,7 @@ There's a chance of errors if you use a slow-release distro like Ubuntu, Debian
 ### Optional
 
 - `w3m` - view HTML email and images in neomutt.
-- `[notmuch](notmuch)` - index and search mail. Install it and run `notmuch setup`, tell it that your mail is in `~/.local/share/mail/` (although `mw` will do this automatically if you haven't set notmuch up before). You can run it in mutt with `ctrl-f`. Run `notmuch new` to process new mail, although the included `mailsync` script does this for you.
+- `notmuch` - index and search mail. Install it and run `notmuch setup`, tell it that your mail is in `~/.local/share/mail/` (although `mw` will do this automatically if you haven't set notmuch up before). You can run it in mutt with `ctrl-f`. Run `notmuch new` to process new mail, although the included `mailsync` script does this for you.
 - `libnotify`/`libnotify-bin` - allows notifications when syncthing mail with `mailsync`
 - `abook` - a terminal-based address book. Pressing tab while typing an address to send mail to will suggest contacts that are in your abook.
 - A cron manager - if you want to enable the auto-sync feature.
-- 
cgit v1.2.3


From ee13994051f4f80be60bb3337a555032b870cf28 Mon Sep 17 00:00:00 2001
From: Jason Barmparesos <jasonb@onet.pl>
Date: Wed, 22 May 2019 22:44:19 +0300
Subject: Use different SMTP server port for onet.pl

Even though the following official help page says that port 465 should be used, this didn't work for me (msmtp just hang indefinitely).
Instead port 587 seems to work fine, even though I couldn't fine some official document by the e-mail provider mentioning it.
https://pomoc.poczta.onet.pl/baza-wiedzy/adresy-serwerow-potrzebne-do-konfiguracji/

If someone else can confirm that indeed, 587 works for them as well, feel free to merge this PR.
---
 share/domains.csv | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/share/domains.csv b/share/domains.csv
index ced2d0a..67aa1fd 100644
--- a/share/domains.csv
+++ b/share/domains.csv
@@ -138,7 +138,7 @@ one.com,imap.one.com,993,send.one.com,465
 onenetbeyond.org,mail.autistici.org,993,smtp.autistici.org,465
 onet.com.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
 onet.eu,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
-onet.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
+onet.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,587
 online.de,imap.1und1.de,993,smtp.1und1.de,465
 op.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
 opoczta.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
-- 
cgit v1.2.3


From f48e0398966ed92d3282eb8e527db8333b2f5e2b Mon Sep 17 00:00:00 2001
From: Tim Otlik <t.otlik@vivaldi.net>
Date: Wed, 22 May 2019 22:43:27 +0200
Subject: feat: add vivaldi.net to known domains

IMAP mail.vivaldi.net 993
SMTP mail.vivaldi.net 465
---
 share/domains.csv | 1 +
 1 file changed, 1 insertion(+)

diff --git a/share/domains.csv b/share/domains.csv
index ced2d0a..0e388c9 100644
--- a/share/domains.csv
+++ b/share/domains.csv
@@ -187,6 +187,7 @@ usa.com,imap.mail.com,993,smtp.mail.com,587
 uw.edu,imap.gmail.com,993,smtp.gmail.com,465
 uymail.com,imap.mail.com,993,smtp.mail.com,587
 vip.onet.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
+vivaldi.net,mail.vivaldi.net,993,mail.vivaldi.net,465
 vp.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
 vt.edu,imap.gmail.com,993,smtp.gmail.com,587
 waifu.club,mail.cock.li,993,mail.cock.li,587
-- 
cgit v1.2.3


From 3429330b08961d3dce83b088e4cf4522fbbd5e15 Mon Sep 17 00:00:00 2001
From: Tim Otlik <t.otlik@vivaldi.net>
Date: Wed, 22 May 2019 23:56:52 +0200
Subject: fix: fix vivaldi settings

---
 share/domains.csv | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/share/domains.csv b/share/domains.csv
index 477025e..8053be1 100644
--- a/share/domains.csv
+++ b/share/domains.csv
@@ -187,7 +187,7 @@ usa.com,imap.mail.com,993,smtp.mail.com,587
 uw.edu,imap.gmail.com,993,smtp.gmail.com,465
 uymail.com,imap.mail.com,993,smtp.mail.com,587
 vip.onet.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
-vivaldi.net,mail.vivaldi.net,993,mail.vivaldi.net,465
+vivaldi.net,imap.vivaldi.net,993,smtp.vivaldi.net,587
 vp.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
 vt.edu,imap.gmail.com,993,smtp.gmail.com,587
 waifu.club,mail.cock.li,993,mail.cock.li,587
-- 
cgit v1.2.3


From e043d0fcc5a5ec2d76f3eee1a06c75599538dd13 Mon Sep 17 00:00:00 2001
From: Stefano Cereda <cereda.ste@gmail.com>
Date: Thu, 23 May 2019 16:54:19 +0200
Subject: Added address for politecnico di milano university

---
 share/domains.csv | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/share/domains.csv b/share/domains.csv
index 8053be1..46b9877 100644
--- a/share/domains.csv
+++ b/share/domains.csv
@@ -150,6 +150,8 @@ paranoici.org,mail.autistici.org,993,smtp.autistici.org,465
 pm.me,127.0.0.1,1143,127.0.0.1,1025
 poczta.fm,poczta.interia.pl,993,poczta.interia.pl,465
 poczta.onet.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
+polimi.it,outlook.office365.com,993,smtp.office365.com,587
+mail.polimi.it,outlook.office365.com,993,smtp.office365.com,587
 post.com,imap.mail.com,993,smtp.mail.com,587
 posteo.de,posteo.de,993,posteo.de,587
 posteo.net,posteo.de,993,posteo.de,587
-- 
cgit v1.2.3


From 09d76eb4f971333d7e96362b77ccaf928cfbc410 Mon Sep 17 00:00:00 2001
From: MorganJSmith <Morgan.J.Smith@outlook.com>
Date: Thu, 23 May 2019 21:06:45 -0400
Subject: Added Carleton University student email domain to domains.csv

---
 share/domains.csv | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/share/domains.csv b/share/domains.csv
index 46b9877..39f124f 100644
--- a/share/domains.csv
+++ b/share/domains.csv
@@ -42,6 +42,8 @@ chemist.com,imap.mail.com,993,smtp.mail.com,587
 chrissx.ga,chrissx.ga,993,chrissx.ga,25
 clerk.com,imap.mail.com,993,smtp.mail.com,587
 clubmember.org,imap.mail.com,993,smtp.mail.com,587
+cmail.carleton.ca,imap-mail.outlook.com,993,smtp-mail.outlook.com,587
+carleton.ca,imap-mail.outlook.com,993,smtp-mail.outlook.com,587
 cocaine.ninja,mail.cock.li,993,mail.cock.li,587
 cock.email,mail.cock.li,993,mail.cock.li,587
 cock.li,mail.cock.li,993,mail.cock.li,587
-- 
cgit v1.2.3


From 9e3f30f119c7b9702f916b8346d007ad1190f77c Mon Sep 17 00:00:00 2001
From: Eddie Jeselnik <12779786+Eddie-Jeselnik@users.noreply.github.com>
Date: Fri, 24 May 2019 20:57:04 +1000
Subject: Add RMIT student email

---
 share/domains.csv | 1 +
 1 file changed, 1 insertion(+)

diff --git a/share/domains.csv b/share/domains.csv
index 39f124f..3bbdc66 100644
--- a/share/domains.csv
+++ b/share/domains.csv
@@ -172,6 +172,7 @@ spoko.pl,imap.poczta.onet.pl,993,smtp.poczta.onet.pl,465
 stronzi.org,mail.autistici.org,993,smtp.autistici.org,465
 stud.tu-darmstadt.de,imap.stud.tu-darmstadt.de,993,smtp.tu-darmstadt.de,465
 stud.uis.no,outlook.office365.com,993,smtp.office365.com,587
+student.rmit.edu.au,outlook.office365.com,993,smtp.office365.com,587
 students.southwales.ac.uk,imap.gmail.com,993,smtp.gmail.com,587
 studserv.uni-leipzig.de,studserv.uni-leipzig.de,993,studserv.uni-leipzig.de,25
 subvertising.org,mail.autistici.org,993,smtp.autistici.org,465
-- 
cgit v1.2.3


From e4813ae21568132e2dd04f0d69e87c4dfd98c3c6 Mon Sep 17 00:00:00 2001
From: Kr1ss <kr1ss.x@yandex.com>
Date: Tue, 28 May 2019 01:09:25 +0200
Subject: restore default text color on 'Ctrl-C' exit

The terminal text color  wasn't reset when the user  aborted the wizard
while being prompted for input.
This resolves https://github.com/LukeSmithxyz/mutt-wizard/issues/224
---
 bin/mw | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/bin/mw b/bin/mw
index b693299..f8c4f24 100755
--- a/bin/mw
+++ b/bin/mw
@@ -313,6 +313,8 @@ synchronize_flags=true
 gpg_path=$GPG"
 	echo "$nmbasic" > "$NOTMUCH_CONFIG" ;}
 
+trap 'echo -e "\033[0m\n"' INT
+
 case "$1" in
 	ls) list ;;
 	add) asktype && askinfo && tryconnect && finalize || delete ;;
-- 
cgit v1.2.3


From 68cc36a22f25da23da260728dd82d859570f48d8 Mon Sep 17 00:00:00 2001
From: Luke Smith <luke@lukesmith.xyz>
Date: Mon, 27 May 2019 20:50:12 -0400
Subject: luke self-hosting

---
 share/domains.csv | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/share/domains.csv b/share/domains.csv
index ced2d0a..8a6d8c7 100644
--- a/share/domains.csv
+++ b/share/domains.csv
@@ -117,7 +117,7 @@ live.com,imap-mail.outlook.com,993,smtp-mail.outlook.com,587
 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,imap.yandex.com,993,smtp.yandex.com,587
+lukesmith.xyz,mail.lukesmith.xyz,993,mail.lukesmith.xyz,587
 mail.com,imap.mail.com,993,smtp.mail.com,587
 mail.ru,imap.mail.ru,993,smtp.mail.ru,465
 mailbox.org,imap.mailbox.org,993,smtps.mailbox.org,465
-- 
cgit v1.2.3


From 3eb98e7f03c3296b7d4ec2bb0e60ed510a35ebe9 Mon Sep 17 00:00:00 2001
From: Ethan Coe <ethancoea@gmail.com>
Date: Tue, 28 May 2019 22:35:08 -0400
Subject: Added ethancoe.com

---
 share/domains.csv | 1 +
 1 file changed, 1 insertion(+)

diff --git a/share/domains.csv b/share/domains.csv
index b77e2c5..24615ab 100644
--- a/share/domains.csv
+++ b/share/domains.csv
@@ -73,6 +73,7 @@ email.com,imap.mail.com,993,smtp.mail.com,587
 eneco.com,outlook.office365.com,993,smtp.office365.com,587
 engineer.com,imap.mail.com,993,smtp.mail.com,587
 erciyes.edu.tr,posta.erciyes.edu.tr,993,smtp.erciyes.edu.tr,587
+ethancoe.com,mail.privateemail.com,993,mail.privateemail.com,465
 europe.com,imap.mail.com,993,smtp.mail.com,587
 fastmail.com,imap.fastmail.com,993,smtp.fastmail.com,465
 fastmail.fm,imap.fastmail.com,993,smtp.fastmail.com,465
-- 
cgit v1.2.3