larrabee / freeipa-password-reset

Self-service password reset app for FreeIPA
GNU General Public License v3.0
88 stars 30 forks source link

When select e-mail as provider, get an SMTP error #67

Open tceydeliler opened 1 month ago

tceydeliler commented 1 month ago

Hi, Finally I can run service. Bu twhen I select provider as email, ? Cannot send Email, error: SMTP AUTH extension not supported by server. here is my e-mail provides settings: **"email-1": { "class": app.providers.Email, "enabled": True, "display_name": "Email", "options": {

In template {0} will replaced with token

        "msg_template": "Your reset password token: {0} \nDo not tell anyone this code.",
        "msg_subject": "Your LDAP password reset code",
        "smtp_from": None, #With None its copy value from smtp_user
        "smtp_user": "",
        "smtp_pass": "",
        "smtp_server_addr": "smtp.yasar.com.tr",
        "smtp_server_port": 25,
        "smtp_server_tls": False,**

I am using opensmtpd as an SMTP server and I am not using authentication in the configuration. It is sufficient for the IP to be in the IP list and the IP server is already in this list. How can I overcome this issue?

tceydeliler commented 1 month ago

I check the closed issues and find my problem