Hello,
Please help in setting SMTP notification.

Already tried out two options:
1) in the file config / environments / production.rb
config.action_mailer.delivery_method =: SMTP
config.action_mailer.smtp_settings = {
: address => "smtp.mydomane.com",
: port => 25,
: domain => "mydomane.com"
: authentication =>: login,
: user_name => "[email protected]",
: password => "password",
}

2)In config/environments/production.rb:

Change
config.action_mailer.delivery_method = :test

to
config.action_mailer.delivery_method = :smtp

In config/gitorious.yml add:

production:
  [...]
  # mail settings
  email_delivery:  
    delivery_method: :smtp
    smtp_settings:
      address: "smtp.mydomane.com"
       port: 25
      authentication: :login
      domain: 'mydomane.com'
      user_name: 'smtp_account'
      password: 'password'

None of these options do not work! (

How to check your e-mail notifications?

Thank you in advance and sorry for my English!

-- 
-- 
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]

--- 
You received this message because you are subscribed to the Google Groups 
"Gitorious" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to