Написал простенький код
import smtplib
from email.mime.text import MIMEText
server = smtplib.SMTP('some@mail.ru', 587)
# server.set_debuglevel(True)
try:
dhellmann_result = server.verify('dhellmann')
notthere_result = server.verify('notthere')
finally:
server.quit()
print('dhellmann :', dhellmann_result)
print('notthere :', notthere_result)
Выдает
Traceback (most recent call last):
File "C:\Users\1289727\OneDrive\Рабочий стол\test.py", line 5, in <module>
server = smtplib.SMTP('some@mail.ru', 587)
File "C:\Users\1289727\AppData\Local\Programs\Python\Python37\lib\smtplib.py", line 251, in __init__
(code, msg) = self.connect(host, port)
File "C:\Users\1289727\AppData\Local\Programs\Python\Python37\lib\smtplib.py", line 336, in connect
self.sock = self._get_socket(host, port, self.timeout)
File "C:\Users\1289727\AppData\Local\Programs\Python\Python37\lib\smtplib.py", line 307, in _get_socket
self.source_address)
File "C:\Users\1289727\AppData\Local\Programs\Python\Python37\lib\socket.py", line 707, in create_connection
for res in getaddrinfo(host, port, 0, SOCK_STREAM):
File "C:\Users\1289727\AppData\Local\Programs\Python\Python37\lib\socket.py", line 748, in getaddrinfo
for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
socket.gaierror: [Errno 11003] getaddrinfo failed
Причем если исправить на хотя бы
import smtplib
server = smtplib.SMTP('some@mail.ru', 587)
То будет эта же ошибка. Уже понял, что проблема скорее всего из-за подключения. ВПН и 4g с wi-fi пробовал менять и сочетать, не помогло, что делать?