Browse Source

If domain is already protonmail don't ask if it is

pull/313/head
Trevor Richards 5 years ago
parent
commit
3382c48ecb
1 changed files with 13 additions and 11 deletions
  1. +13
    -11
      bin/mw

+ 13
- 11
bin/mw View File

@@ -135,17 +135,19 @@ askinfo() { \
done
domain="$(echo "$fulladdr" | sed "s/.*@//")"
search_query=$domain
while : ; do
printf "\nIs your email hosted with Protonmail? [yes/no] "
read -r is_protonmail
case $is_protonmail in
[Yy][Ee][Ss]) is_protonmail=true && break;;
[Nn][Oo]) is_protonmail=false && break;;
*) printf 'Please answer Yes or No'
esac; done;
if $is_protonmail; then
search_query='protonmail.com'
fi
case "$domain" in
protonmail.com|protonmail.ch|pm.me)
search_query='protonmail.com' && break;;
*)
while : ; do
printf "\nIs your email hosted with Protonmail? [yes/no] "
read -r is_protonmail
case $is_protonmail in
[Yy][Ee][Ss]) search_query='protonmail.com' && break;;
[Nn][Oo]) break;;
*) printf 'Please answer Yes or No'
esac; done;
esac
printf "\\nSearching for \033[32m%s\033[0m in \033[34m\`domains.csv\`\033[0m..." "$domain"
serverinfo="$(grep "^$search_query" "$muttshare/domains.csv" 2>/dev/null)"
if [ -z "$serverinfo" ]; then


Loading…
Cancel
Save