Replies: 5 comments
-
Hail, @galbini 👋 Welcome to Fief's kingdom! Our team will get back to you very soon to help. In the meantime, take a minute to star our repository ⭐️ Want to support us?Subscribe to one of our paid plan to help us continue our work and receive exclusive information and benefits! Starts at $5/month 🪙 Farewell! |
Beta Was this translation helpful? Give feedback.
-
Yes, our SMTP implementation doesn't support SSL encryption but rather TLS encryption. This is something that has been reported a few times (not sure if/how we should fix this). Try with the port |
Beta Was this translation helpful? Give feedback.
-
Hello, I'm not a python expert but i found the next sample code that's works ` server.set_debuglevel(options.debuglevel) |
Beta Was this translation helpful? Give feedback.
-
If I understand the SMTP error |
Beta Was this translation helpful? Give feedback.
-
Thanks, that's work ! |
Beta Was this translation helpful? Give feedback.
-
Describe the bug
During registration of a new user, the following exception occurred:
File "/usr/local/lib/python3.12/site-packages/fief/tasks/register.py", line 33, in run self.email_provider.send_email( │ │ └ <function SMTP.send_email at 0xffff79e47600> │ └ <fief.services.email.smtp.SMTP object at 0xffff785e1dc0> └ <fief.tasks.register.OnAfterRegisterTask object at 0xffff784750a0> File "/usr/local/lib/python3.12/site-packages/fief/services/email/smtp.py", line 60, in send_email raise SendEmailError(str(e)) from e └ <class 'fief.services.email.base.SendEmailError'>
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Configuration
Additional context
My SMTP config work with https://github.com/turbodog/python-smtp-mail-sending-tester
In your code, the SSL parameter seems used to configure tls but not ssl with SMTP_SSL object.
Beta Was this translation helpful? Give feedback.
All reactions