here is a problem accepting emails from Gmail for redirection
-
- Posts: 1
- Joined: 25. Jun 2024, 22:31
here is a problem accepting emails from Gmail for redirection
I am trying to configure Gmail so that when a specific email arrives, it sends an email to Pushsafer to send me a notification. The problem is that the email arrives in text format, and when I copy the link, it generates a 502 error. However, when I try to send it to other emails, it works because a button appears. Google support says it's a Pushsafer issue. I disagree because I copy and paste the message as they suggest, but it still throws a 502 error.
- admin
- Site Admin
- Posts: 975
- Joined: 1. Dec 2014, 12:41
- Location: Germany
Re: here is a problem accepting emails from Gmail for redirection
Hello,
I can't follow you.
Please describe your problem in more detail.
What exactly isn't working?
I can't follow you.
Please describe your problem in more detail.
What exactly isn't working?
Pushsafer DE: Dir gefällt Service und Support! Dann freuen wir uns auf deine Bewertung!
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
-
- Posts: 1
- Joined: 22. Aug 2024, 07:12
Re: here is a problem accepting emails from Gmail for redirection
The issue seems to be the URL or percent encoding/decoding done by pushsafer when parsing emails sent to pushsafer. The verification email sent to the pushsafer email address to activate the forwarding contains an activation link.davidfelipeaoc wrote: ↑25. Jun 2024, 22:37I am trying to configure Gmail so that when a specific email arrives, it sends an email to Pushsafer to send me a notification. The problem is that the email arrives in text format, and when I copy the link, it generates a 502 error. However, when I try to send it to other emails, it works because a button appears. Google support says it's a Pushsafer issue. I disagree because I copy and paste the message as they suggest, but it still throws a 502 error.
In my case, this link contains the bracket characters `[` and `]`. Those characters are correctly URL encoded when sent by Gmail. But pushsafer decodes it and breaks the link.
You need to encode the path of the URL, meaning everything after `https://mail-settings.google.com/mail/`.
Just replace the brackets as follows:
Code: Select all
[ = %5B
] = %5D
Code: Select all
https://mail-settings.google.com/mail/vf-[ANGjdJ-vzPo0_0SAceXqIZ{REDACTED}oega31cE94ltSljpg]-BpjUNEUrYoGAVjPa11_-v3voy7M
Code: Select all
https://mail-settings.google.com/mail/vf-%5BANGjdJ-vzPo0_0SAceXqIZ{REDACTED}oega31cE94ltSljpg%5D-BpjUNEUrYoGAVjPa11_-v3voy7M
Who is online
Users browsing this forum: No registered users and 2 guests