diff options
author | Luke Smith <luke@lukesmith.xyz> | 2019-04-25 13:38:46 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2019-04-25 13:38:46 -0400 |
commit | 2e0b8416edc081a4f743e1b6df4b54829517a714 (patch) | |
tree | 7d99fa8eb40772232a55dad55ce30d7cb202eabd /bin/mw | |
parent | 6a9c4d5b72ab494848488cc26abc8b2b05cab71f (diff) |
only check first column
Diffstat (limited to 'bin/mw')
-rwxr-xr-x | bin/mw | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -115,7 +115,7 @@ askinfo() { \ done domain="$(echo "$fulladdr" | sed "s/.*@//")" printf "\\nSearching for \033[32m%s\033[0m in \033[34m\`domains.csv\`\033[0m..." "$domain" - serverinfo="$(grep "$domain" "$muttshare/domains.csv" 2>/dev/null)" + serverinfo="$(grep "^$domain" "$muttshare/domains.csv" 2>/dev/null)" if [ -z "$serverinfo" ]; then printf "Your email domain is not in mutt-wizard's database yet.\\nmutt-wizard will still autoconfigure everything, but you will have to manually type in your service's IMAP and SMTP server information.\\nYou can usually quickly find this by internet searching for it.\\n" printf "Insert the IMAP server for your email provider (excluding the port number)\\n\033[36m\t" |