Skip to Content

Redmine: sending email using google apps

I was facing the next error with a config variant created using Redmine documentation:

530 5.7.0 Must issue a STARTTLS command first

After googling I’ve implemented a working configuration, here it is:

production:
    delivery_method: :smtp
    smtp_settings:
    tls: true
    enable_starttls_auto: true
    address: "smtp.gmail.com"
    port: 587
    domain: "mydomain.com"
    authentication: :login
    user_name: "[email protected]"
    password: "mypassword"