[Résolu] Erreur envoi SMTP

Hello la communauté :slight_smile:

Je viens vers vous car je suis complètement bloqué concernant l’envoi des emails…
Je passe par le SMTP d’une collectivité mais j’ai l’erreur suivante dans Sidekiq :confused:

« OpenSSL::SSL::SSLError: hostname « mx1.nomdedomaine.fr » does not match the server certificate »

Côté du fichier env dans /apps/fabmanager/env, j’ai ces paramètres :

Est ce que certains d’entre vous ont déjà été confrontés à cette problématique ?!

Merci d’avance :slight_smile:

Raphaël.

Hello,

Seems that the certificate can not be validated. If you can’t fix the certificate, [this thread] (Rails 3: OpenSSL::SSL::SSLError: hostname was not match with the server certificate - Stack Overflow) may have the configuration to address the error.

Hello Akaiiro,

It’s done ! I don’t have anymore the certificate error.

But an other error occurs…

« Net::SMTPAuthenticationError: 530 5.7.0 Authentication required » when i put this config :
config.action_mailer.smtp_settings = {
:address => ‹ mx1.domain.fr ›,
:port => 25, (or 587)
:user_name => ‹ username@domain.fr ›,
:password => ‹ password ›,
:domain => ‹ domain.fr ›,
:authentication => :plain, (or :login)
:enable_starttls_auto => true,
:openssl_verify_mode => ‹ none ›
}

use :smtp for switch prod

config.action_mailer.delivery_method = Rails.application.secrets.delivery_method.to_sym

config.action_mailer.delivery_method = :smtp

Net::SMTPAuthenticationError: 535 5.7.8 Authentication failed
config.action_mailer.smtp_settings = {
:address => ‹ mx1.lacove.fr ›,
:port => 25, (or 587)
:user_name => ‹ username@domain.fr base64 encoded ›,
:password => ‹ password base64 encoded ›,
:domain => ‹ domain.fr ›,
:authentication => :login,
:enable_starttls_auto => true,
:openssl_verify_mode => ‹ none ›
}

use :smtp for switch prod

config.action_mailer.delivery_method = Rails.application.secrets.delivery_method.to_sym

config.action_mailer.delivery_method = :smtp

An idea for resolve this problem ?

Mon problème est résolu, cela provenait du côté serveur de mail qui n’arrivais pas à procéder à l’authentification pour la sortie du mail.

Si besoin, je pourrais aider pour ceux qui auraient des problèmes pour les envois de mails.

Bonne journée, Raphaël.

1 « J'aime »