Class: Redmine::Installer::Plugin::Gmail

Inherits:
EmailSending show all
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

#params

Instance Method Summary collapse

Methods inherited from EmailSending

#build, #delivery_method, #initialize, #make_config

Methods inherited from Base

all, inherited, title

Methods included from Utils

included

Constructor Details

This class inherits a constructor from Redmine::Installer::Plugin::EmailSending

Instance Method Details

#delivery_settingsObject



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