Class: Redmine::Installer::Plugin::Gmail
- Inherits:
-
EmailSending
- Object
- Base
- EmailSending
- Redmine::Installer::Plugin::Gmail
- Defined in:
- lib/redmine-installer/plugins/email_sending.rb
Constant Summary
Constants inherited from EmailSending
EmailSending::CONFIGURATION_YML_PATH
Instance Attribute Summary
Attributes inherited from EmailSending
Instance Method Summary collapse
Methods inherited from EmailSending
#build, #delivery_method, #initialize, #make_config
Methods inherited from Base
Methods included from Utils
Constructor Details
This class inherits a constructor from Redmine::Installer::Plugin::EmailSending
Instance Method Details
#delivery_settings ⇒ Object
47 48 49 50 51 52 53 54 55 |
# File 'lib/redmine-installer/plugins/email_sending.rb', line 47 def delivery_settings super.merge({ 'enable_starttls_auto' => true, 'address' => 'smtp.gmail.com', 'port' => 587, 'domain' => 'smtp.gmail.com', 'authentication' => :plain }) end |