-
-
Notifications
You must be signed in to change notification settings - Fork 111
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
Root certificates on Windows 7? #34
Comments
Thanks for this report, and the kind words. I don't have a copy of Windows 7 but tried a virtual machine and Python 3.8.10. I can't replicate the certificate issue, however. To help isolate the problem with your Python installation you could try replacing the proxy's two uses of Thanks also for reporting the double requirement error. This is an issue with older versions of POP support is relatively easy to add given the existing proxy structure – see the new POP branch. I haven't tested any of this except for the login part, but there's no reason why it shouldn't just work. You can configure POP servers as shown in the examples below. Please let me know how you get on. [POP-1995]
server_address = outlook.office365.com
server_port = 995
[POP-1996]
server_address = pop.gmail.com
server_port = 995 One thing to note regarding POP is that some providers require it to be enabled explicitly. For example, Gmail responds |
Thank you very much for your reply and especially for the POP branch!! :-) I will test it as soon as I manage to get the main branch working with Windows 7. I replaced The only changes that I did were:
and then:
After that the SSL error disappeared and the authorisation window opened as it should but after I entered the email address there was a note:
And there was a "Try again" button. Exactly the same happens when using either When the authorisation window opened the email address was not already filled (I am not sure if email address should be filled automatically but it was filled automatically when I was testing authorisation of Thunderbird only without the proxy). The output in the terminal when the authorisation window opened was:
Is it possible the "browser may not be secure" error is because the browser window is using some (outdated) Windows 7 components which should be updated? The Windows 7 ISO I am using with Virtualbox is from year 2016. |
Thanks for following up – I'm glad to hear the certificate issue has been resolved. For the remaining issue it is definitely worth trying the proxy's external authorisation mode. Use the Re: pre-filling the email address, it looks like Google's OAuth screen offers support for this via a |
Yes, using the external authorisation mode worked well :-)) When the window containing the submit form opened I could't select the link to copy/paste it into the browser outside of VM, the only way to copy the link was to click it and after it opened in the browser inside the VM copy it from the address bar of the browser. I couldn't copy the link from the authorisation window even using right click (there wasn't a context menu). After I pasted the link into the browser outside of VM the link to be pasted into the submit form didn't show. After clicking Continue there was an animation and there was only "localhost" at the bottom of Firefox window but the link which was to be used for autorisation wasn't visible or accessible. The only way to copy the link for the authorisation was to open Developer Tools and to copy the URL from the GET request the browser was trying to send and only then I could paste the URL into the submit form. IMAP access using Thunderbird worked well, the messages from the Inbox, Outbox, Sent and Bin showed correctly and I could send the test email without problems. However, as soon as I tried to send the 2nd email there was another request for the authorisation - I didn't expect the token would expire in just a minutes. After completing the autorisation one more time IMAP is now working as it should. Then I wanted to test the POP access too - I downloaded the POP branch, renamed
and then I created another POP account in the Thunderbird but the error reported by Thunderbird was:
and there wasn't any output from the emailproxy in the terminal in the same time when Thunderbird was trying to log in - as if emailproxy didn't receive any request from the Thunderbird. On the other hand, IMAP access is still working well. Maybe I missed something :-/ When creating the POP account I configured SMTP for the outgoing server exactly the same as for the IMAP account and for the incomming server I configured POP instead of IMAP, localhost, port 1996, connection security: none, authentication method: Normal password and for the password I used the same password as for the IMAP account. If I understand correctly how everything works I think there isn't need for removing already working authorisation and generating another. I think If IMAP is working well then POP should work with the same access credentials. And I think there should be some output in the terminal when Thunderbird is trying to access the POP server even if authorisation was missing. I thought the problem was because there were two POP accounts configured in Thunderbird - one for accessing gmail without the proxy and the other one for accessing it using the proxy - but nothing changed even after I removed the original POP account for accessing the gmail without the proxy. Seems as for some reason the POP request never arrives towards the proxy or if it arrives it doesn't trigger any action. |
Great - I'm pleased the external authorisation mode worked here. The copy/paste problem is an issue others have encountered, but not something I can really solve (the proxy relies on pywebview for this). Glad you were able to work around the previous issue, though. Similarly with the authorisation link – browsers have an annoying habit of not committing updates to the address bar unless a response is received from the server or there is a clear failure (try entering a non-existent website in the address bar, then cancel navigation – often what you've entered is simply deleted). This is also not really something the proxy can solve directly, though it does try to work around this in the default authorisation mode by looking for the navigation request rather than its result. The proxy's The repeated login request is strange – this shouldn't happen unless you're using different client passwords for the same IMAP/SMTP/POP account. I'll clarify this in the documentation, but given that this is not a typical situation I presume this wasn't what you did. Tokens normally last on the order of months rather than minutes. Let me know if this happens again and you can find a way to replicate it reliably. I would avoid renaming files and just use a separate directory for the POP branch for now. The |
Thank you very much! I will test the program and report how it woks in a few days when I return home. |
It's worth updating to 617c123 which improves POP support and also adds the |
To follow up again, 4d8224c adds a button to copy the link when in external authorisation mode. While it's not possible to fix the right-click issue, this should help avoid having to click the link to be able to use it externally. |
I'd like to merge this branch if it is working well for POP access. Could you let me know? |
Today I'll return home and I'll report you how the program works until tomorrow. |
Yes!! :-)) POP is now working too :-)) I tested proxy with Thunderbird and I'll test it with Eudora during the day. There will be many happy Eudora users if it works and I will then tell others at Eudora newsgroup about your program.
One thing I noticed is in the original One more thing I noticed - when registering a Google API desktop app client there was an option to upload the logo image but that image never shows. There is "pencil&ruller" logo under Third-party apps with account access in Gmail > Security instead of the image I uploaded when registering the desktop app access. I'll reply as soon as I test if everything works with Eudora as well. One (strange) question: Would it be possible to port Email OAuth 2.0 Proxy to Python 2.7? I am asking because I have one Windows XP computer running 24/7 since 2006. and I'd like to run the proxy on that computer if possible. I have many specific programs (PCB design, CNC control, ...) because of which I am (on this computer) still using not only Window XP but Windows XP SP2 :-)) If that will not be possible then I'll try to run Email OAuth 2.0 Proxy on Linux with Raspberry Pi or Orange Pi PC. |
In the meanwhile I tested POP access with Eudora and it works well :-) However, proxy didn't work with Eudora + IMAP. The messages reported by Eudora were:
and then:
I enabled debug mode in Email OAuth 2.0 Proxy but nothing showed in the log file. |
Excellent – I'm glad POP support is working well. Your line ending change suggestion is a good one, too. The API client logo image is not something the proxy has anything to do with, though – I'm not sure why Google is not displaying your logo here. I had a (very) quick look at what it would take to support Python 2.7. The changes are mostly superficial (module name differences; function signature changes, etc), but it is still a nontrivial task to be able to support both v2 and v3. I'll bear this in mind for potential future version. Please feel free to open an issue as a way to track this feature request. I'm not sure why IMAP didn't work with Eudora, but would need a debug log to be able to trace this. A |
I couldn't find any mention of
On the other hand, there are more than 100 lines of log messages when using Thunderbird where POP and IMAP access work in the same time. Here is what the log looks like when checking email with Eudora + POP which works well:
Maybe I should use |
Debug mode should always produce lots of output like your POP example. The IMAP output here is just showing startup of the proxy, and it is not receiving any connection attempts. I think having a look at the raw connection as you suggest is a good idea. |
I captured the traffic with Wireshark and the problem was Eudora was, despite my settings, still using the default IMAP port 143. After I configured port 143 in I still didn't find a way to change the IMAP port but everything works even with the default IMAP port which is below 1024 and besides I've always been using POP. Eudora is something as Vim among editors or Microplanet Gravity among newsreaders. It has very unusual way of changing some settings - to change the port Thank you again for making Email OAuth 2.0 Proxy and for adding support for the POP protocol! I will notify users at I am really happy Eudora could still be used with your program :-) I've been using it for 25 years since dial-up times and 14400 bps modems. Best regards and greetings from Hrvatska |
Excellent - I'm glad the proxy has helped here. Thanks for the kind words too! |
Hi,
let me first congratulate and thank you for this awesome program!! I've found it when I was looking for a solution on how to continue using Eudora email client even after gmail started forcing OAuth2. There are thousands of people still using Eudora since 1st half of the 90s because no other email client can replace it.
It is true Eudora could still be used by enabling App Password but that option forces enabling 2-Step Verification and 2-Step Verification forces using phone number which is not the case with OAuth2.
I have the very same problem as described in Issue #14 but this time when using Windows 7. The authorisation window works well when running Email OAuth2 Proxy in Windows 10 but I can't make it working with Windows 7 running in Virtualbox.
I have several Windows 7 virtual machines already running for various purposes and that's why I would like to use one of those VMs for running Email OAuth2 Proxy too.
After adding
traceback.print_exc()
as you suggested in Issue #14, the error is:I tried:
and
but still the same. I am sure that problem could be solved but I couldn't find the solution.
BTW, when I tried to install the requirement for the 1st time there was an error:
and none of the packages were installed. However, everything worked well after upgrading pip.
ps
It would be even more awesome if you could add the POP protocol as you mentioned under "Potential improvements". I tested gmail + OAuth2 + POP using Thunderbird and it works well. There is a problem when switching the existing Eudora account from POP to IMAP - in that case all messages in the inbox are duplicated (the originals already fetched via POP and the the "new" headers fetched via IMAP). The ideal solution would be if it would be still possible to continue using POP.
The text was updated successfully, but these errors were encountered: