##// END OF EJS Templates
Fixed STARTTLS option key (#19232)....
Jean-Philippe Lang -
r13665:2800598832d2
parent child
Show More
@@ -24,7 +24,7 module Redmine
24 24 host = imap_options[:host] || '127.0.0.1'
25 25 port = imap_options[:port] || '143'
26 26 ssl = !imap_options[:ssl].nil?
27 starttls = !imap_options[:tls].nil?
27 starttls = !imap_options[:starttls].nil?
28 28 folder = imap_options[:folder] || 'INBOX'
29 29
30 30 imap = Net::IMAP.new(host, port, ssl)
General Comments 0
You need to be logged in to leave comments. Login now