How would they know if I use multiple accounts unless they don't respect my privacy?
Also why can't I use tor/i2p to register if they care about my privacy?
Also why do I need to give them my phone number if they care about my privacy?
Also why do I need to run their software on my machine just to access the INBOX through imap after paying money to even be allowed to run their software on my machine since free tier gives no option to do that?
I use gmail with mutt, I open my mail like this: mail='mbsync myusername:INBOX && mutt'
, my gmail 2FA is done using oathtool with this script on my machine:
function 2fa () {
local secret="${1:?secret}"
now=$(date +%s)
rem=$((30 - now % 30))
echo -n "Current code will expire in ${rem} seconds" >&2
if ((${rem} <= 3))
then
echo ", waiting for next one..." >&2
sleep ${rem}
else
echo '.'
fi
oathtool --totp "${secret}" | xsel -ib
echo 'Code copied to clipboard.' >&2
}
Why would I trust anyone who doesn't allow me to do this?