Erreur lors de l'envoi de l'email (SMTP-AUTH requested but missing secret phrase) -


i'm using redmine 2.6.4.stable, ruby version 1.9.3-p194 (2012-04-20) [x86_64-linux], , rails version 3.2.21. i can't activate sending email. catch error : "erreur lors de l'envoi de l'email (smtp-auth requested missing secret phrase)". check config in config/configuration.yml every thing ok :

    production:   email_delivery:     delivery_method: :smtp     smtp_settings:       address: smtp.google.com       port: 25       domain: mydomain.com       user_name: redmine@mydomain.com 

every 1 migth have meet kind of problem ? please tell me how solve it.

best regards, djass

first: credentials right?

if yes have @ open project configuration of e-mail-notification - error (smtp-auth requested missing secret phrase)

there opener resolve issue doing (of course have set credentials / server infos):

email_delivery_method: :confounded:mtp #main level, not work  default: #main level email_delivery_method: :confounded:mtp #setting default smtp_address: smtp.server.com #setting default smtp_port: 587 smtp_domain: my-domain.com smtp_user_name: username smtp_password: pass smtp_enable_starttls_auto: true smtp_authentication: plain 

and had restart apache server

and have restart apache-server. not know if passenger-modul or ruby re-read yml-files after changeing them or fcgi-modul. nevertheless works.

edit: email configuration working smoothly

email_delivery: delivery_method: :smtp smtp_settings: enable_starttls_auto: false address: "host_in_double_question" port: 587 domain: 'domain_of_mailserver_in_single_quotes' authentication: :login user_name: "username_in_double_questions" password: "password_in_double_quotes" openssl_verify_mode: 'none' 

Comments