chupo_cro

Results 27 comments of chupo_cro

Yes, I read `socket.recv()` is a blocking function but still can't find out the reason what could cause the problem. I am testing with the latest Python 3 version from...

I've just tested the nonblocking SSL branch and everything is still the same - I can't send an email with attachment. Now that you mentioned SSL - is there anything...

You are right, I didn't enable local SSL. Do you mean to test direct connection by creating app-specific password? That is a problem because that option could be enabled only...

I just did a test to check if maybe some file from email client installation is missing or damaged. I created a new Windows XP virtual machine and transfered the...

I agree. You may close this issue. I will still continue to investigate the cause of the problem and report back when/if I find something useful.

Thank you very much! I will report how the program works with Python 2 + Windows XP as soon as I test it - probably on tuesday or wednesday.

Hi, I finally tested the Python2 branch on Windows XP SP2 computer and I am getting this error: ``` (PROXY) C:\Python27\PROXY\_MY>python emailproxy.py C:\Python27\PROXY\lib\site-packages\pkg_resources\py2_warn.py:19: UserWarning: * *********************************************************** You are running Setuptools...

These are the packages installed yesterday from `requirements.txt` into the new virtual environment where I am testing the proxy: ``` Package Version ------------- ----------- aenum 3.1.11 cffi 1.15.1 configobj 5.0.6...

That updated `pystray` from `0.17.2` to `0.19.4` but the problem is still the same - the output is now just slightly different: ``` (PROXY) C:\Python27\PROXY\_MY>python emailproxy.py C:\Python27\PROXY\lib\site-packages\pkg_resources\py2_warn.py:19: UserWarning: * ***********************************************************...

Maybe I've solved the problem with `ChangeWindowMessageFilterEx()` but there is another problem. According to [this](https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-changewindowmessagefilterex) and [this](https://social.msdn.microsoft.com/Forums/en-US/91467c8d-be6e-43f7-94a1-28cb316c5b04/scrnsavelib-fails-on-windows-xp-due-to-changewindowmessagefilter-call) `ChangeWindowMessageFilterEx()` is missing in Windows XP. There is this code in `Lib\site-packages\pystray\_util\win32.py` which...