Merged r14047 (#19232).

git-svn-id: http://svn.redmine.org/redmine/branches/3.0-stable@14061 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2015-03-08 09:44:08 +00:00
parent d26f613953
commit f4ff617f37

View File

@@ -24,7 +24,7 @@ module Redmine
host = imap_options[:host] || '127.0.0.1'
port = imap_options[:port] || '143'
ssl = !imap_options[:ssl].nil?
starttls = !imap_options[:tls].nil?
starttls = !imap_options[:starttls].nil?
folder = imap_options[:folder] || 'INBOX'
imap = Net::IMAP.new(host, port, ssl)