Not the least surprised. By accepting the EULA and using the service free of monetary charge, you are instead paying with the contents of your e-mails and adress-book.
If it’s Outlook doing the dirty work then running your own mail server won’t get rid of this problem. Outlook is the client reading the links regardless of mail server. Also, somewhat a different topic, people that run their own mail servers might also still use Outlook.
“Magic links” can end up in Bing search results, rendering them useless
41–50 of 243 posts
Re: “Magic links” can end up in Bing search results, rendering them useless
#42Re: “Magic links” can end up in Bing search results, rendering them useless
#43This would kind of break single-use links, no? That seems like a real nuisance.
A single use link, e.g. for resetting a password or confirming a subscription, will usually show a webpage with a form that does a POST. Once that POST has been performed, the single use link is used up.
Single use links will mostly have a one-time secret that should not be leaked. Mails that contain such links or any sensitive information should be encrypted.
Re: “Magic links” can end up in Bing search results, rendering them useless
#44tldr: In 2022, whether you are a paying customer or a free customer, YOU are the product and you will be squeezed for all you got (not specific to Microsoft at all)
Re: “Magic links” can end up in Bing search results, rendering them useless
#45This would kind of break single-use links, no? That seems like a real nuisance.
Exactly. From what I've heard today it sounds like most apps have an extra step between the email link and the login, usually a JS step, to check for bots. Not adding that was my downfall I think.
Re: “Magic links” can end up in Bing search results, rendering them useless
#46Re: “Magic links” can end up in Bing search results, rendering them useless
#47Re: “Magic links” can end up in Bing search results, rendering them useless
#48It might lead to sensitive data leak as cloud storage links can also be crawled to Bing
no what might link to sensitive data leak is fools who store sensitive data on unprotected links
Re: “Magic links” can end up in Bing search results, rendering them useless
#49Re: “Magic links” can end up in Bing search results, rendering them useless
#50Isn't the quick fix that you arrive at some page, and there have to press a button or load some JS to do some action? AFAIK most email providers (like Gmail) will also visit links. Therefore you shouldn't do actions directly on the GET request. For instance if you have an unsubscribe link and all you have to do is visit that address, most of your subscribers will be accidentally unsubscribed. Same if you paste a link…
> AFAIK most email providers (like Gmail) will also visit links. I keep hearing this, but our newsletter system has been using GET unsubscribe links since at least 2007 (but probably longer), and we never found a wave of Gmail users unsubscribing, we still have a lot of them. I wonder if this is simply an urban legend, if Gmail tries to recognize unsubscribe links, or if there is something else going on.