Skip to content
This repository has been archived by the owner on Jan 30, 2018. It is now read-only.

Configure Google Apps SMTP server

micho edited this page Nov 10, 2010 · 2 revisions

Edit config/teambox.yml file like this:


  # Configuration for outgoing mail
  # With Heroku and the Sendgrid add-on, no configuration is needed here.
  #   $ heroku addons:add sendgrid:free
  smtp_settings:
    :domain:		mydomain.com        # the domain your emails will come from
    :address:		smtp.gmail.com  # SMTP server used to send emails
    :port:		587
    :authentication:	:plain
    :user_name:		user@mydomain.com
    :password:		mypass

    # Set to true when using Gmail
    :enable_starttls_auto: true

Don’t forget to restart the server after any changes!

Clone this wiki locally