Separate email config from production.rb
Closed
Separate email config from production.rb
Created by: mcfedr
It would make upgrading much easier if config for email could be done in gitlab.yml or another file even. Currently its done in production.rb and often when upgrading this file has been changed, I have to reset the file, and then put in my changes again.
Created by: djuretic
I've had the same problem, I ended up creating a initializer file in
gitlab/config/initializers/
similar to this:ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.smtp_settings = { :address => "smtp.example.com", :port => 587, :domain => "mydomain.com", :user_name => "mailbox_user", :password => "mailbox_password", :authentication => 'plain', :enable_starttls_auto => true }
By Administrator on 2013-05-24T13:48:33 (imported from GitLab project)
Created by: Razer6
Hey @mcfedr
Thanks for your interest in GitLab
❤ We don't use the Github issue tracker for support requests and configuration questions. Please use the support forum for this purpose.
Have a look at the contribution guidelines for more information.
By Administrator on 2013-06-08T21:30:16 (imported from GitLab project)
Created by: Razer6
Well it's more like a feature request isn't? As mentioned in the contributing guidelines we have a dedicated place for this. Feel free to create one here
By Administrator on 2013-06-08T21:42:52 (imported from GitLab project)