-
-
Notifications
You must be signed in to change notification settings - Fork 395
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mailto links handled by Gmail fail with ERR_TOO_MANY_REDIRECTS #3066
Comments
At first glance, the problem is that our "remove cookies" DNR rule for This seems to be happening because these requests are technically initiated by the page you clicked the mailto link on. This then appears to be another argument for It also seems like |
Here is what the relevant DNR rule looks like (minus a million google.com country code domains in {
"action": {
"requestHeaders": [
{ "header": "cookie", "operation": "remove" }
],
"responseHeaders": [
{ "header": "set-cookie", "operation": "remove" }
],
"type": "modifyHeaders"
},
"condition": {
"domainType": "thirdParty",
"excludedInitiatorDomains": [
"google.com",
"android.com",
"blogger.com",
"chromium.org",
"gmail.com",
"googleblog.com",
"youtube.com",
"ggpht.com",
"googleusercontent.com",
"googlevideo.com",
"gstatic.com",
"youtube-nocookie.com",
"ytimg.com",
"google.ac",
"google.ws",
"fonts.googleapis.com",
"storage.googleapis.com",
"www.googleapis.com"
],
"requestDomains": [
"mail.google.com"
]
},
"id": 1580,
"priority": 3
}
|
This is not a problem in MV2 / with blocking In MV3 / DNR, if I add the initiator domain of the page with the mailto link to Footnotes
|
If you set up Gmail to handle mailto links in Chrome, clicking mailto links in Chrome with Privacy Badger installed will probably produce the following error page:
One workaround is to re-navigate to the URL you are already on. To do so, click on the address bar and press Enter.
A more permanent workaround is to set the toggle for
mail.google.com
to the rightmost, green ("fully allow") position. To do so, open Privacy Badger's options page, select the Tracking Domains tab, search formail.google.com
, and set the toggle to green.Clicking the Reload button does not help.
The text was updated successfully, but these errors were encountered: