Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mailer_config.rb « initializers « config - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46535ef8418a16a64157e4c5acca947ce7a7234f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#   Copyright (c) 2010, Diaspora Inc.  This file is
#   licensed under the Affero General Public License version 3 or later.  See
#   the COPYRIGHT file.

Diaspora::Application.configure do
  config.action_mailer.delivery_method = :smtp
  config.action_mailer.default_url_options = {:host => 'pivots.joindiaspora.com'}
  config.action_mailer.smtp_settings = {
    :address => 'smtp.gmail.com',
    :port => 587,
    :domain => 'mail.joindiaspora.com',
    :authentication => 'plain',
    :user_name => 'diaspora-pivots@joindiaspora.com',
    :password => "xy289|]G+R*-kA",
    :enable_starttls_auto => true
  }
end