Method: Config.smtp

Defined in:
lib/jungle_path/app/config/config.rb

.smtpObject

(email)



75
76
77
78
79
80
81
82
83
84
# File 'lib/jungle_path/app/config/config.rb', line 75

def self.smtp # (email)
	jungle.smtp.host = "localhost"
	jungle.smtp.port = 25 #587 # 25
	jungle.smtp.domain_of_sender = 'mydomain.com'
	jungle.smtp.user_name = nil
	jungle.smtp.password = nil
	jungle.smtp.enable_tls = false
	jungle.smtp.authentication = nil
	jungle.smtp.from = nil # '[email protected]'
end