Rename pop3s settings to pop3, remove 'insecure'

This commit is contained in:
riking 2014-08-26 16:52:35 -07:00
parent 79e37ad1a8
commit 6d357c9c23
5 changed files with 33 additions and 28 deletions

View file

@ -8,14 +8,14 @@ require_dependency 'email/message_builder'
module Jobs module Jobs
class PollMailbox < Jobs::Scheduled class PollMailbox < Jobs::Scheduled
every SiteSetting.pop3s_polling_period_mins.minutes every SiteSetting.pop3_polling_period_mins.minutes
sidekiq_options retry: false sidekiq_options retry: false
include Email::BuildEmailHelper include Email::BuildEmailHelper
def execute(args) def execute(args)
@args = args @args = args
if SiteSetting.pop3s_polling_enabled? if SiteSetting.pop3_polling_enabled?
poll_pop3s poll_pop3
end end
end end
@ -72,14 +72,11 @@ module Jobs
end end
end end
def poll_pop3s def poll_pop3
if !SiteSetting.pop3s_polling_insecure Net::POP3.start(SiteSetting.pop3_polling_host,
Net::POP3.enable_ssl(OpenSSL::SSL::VERIFY_NONE) SiteSetting.pop3_polling_port,
end SiteSetting.pop3_polling_username,
Net::POP3.start(SiteSetting.pop3s_polling_host, SiteSetting.pop3_polling_password) do |pop|
SiteSetting.pop3s_polling_port,
SiteSetting.pop3s_polling_username,
SiteSetting.pop3s_polling_password) do |pop|
unless pop.mails.empty? unless pop.mails.empty?
pop.each do |mail| pop.each do |mail|
handle_mail(mail) handle_mail(mail)

View file

@ -91,7 +91,7 @@ module Discourse
# Configure sensitive parameters which will be filtered from the log file. # Configure sensitive parameters which will be filtered from the log file.
config.filter_parameters += [ config.filter_parameters += [
:password, :password,
:pop3s_polling_password, :pop3_polling_password,
:s3_secret_access_key, :s3_secret_access_key,
:twitter_consumer_secret, :twitter_consumer_secret,
:facebook_app_secret, :facebook_app_secret,

View file

@ -385,13 +385,12 @@ email:
email_custom_headers: 'Auto-Submitted: auto-generated' email_custom_headers: 'Auto-Submitted: auto-generated'
reply_by_email_enabled: false reply_by_email_enabled: false
reply_by_email_address: '' reply_by_email_address: ''
pop3s_polling_enabled: false pop3_polling_enabled: false
pop3s_polling_insecure: false pop3_polling_period_mins: 5
pop3s_polling_period_mins: 5 pop3_polling_host: ''
pop3s_polling_host: '' pop3_polling_port: 995
pop3s_polling_port: 995 pop3_polling_username: ''
pop3s_polling_username: '' pop3_polling_password: ''
pop3s_polling_password: ''
email_in: email_in:
default: false default: false
client: true client: true

View file

@ -0,0 +1,9 @@
class RenameSettingsPop3sToPop3 < ActiveRecord::Migration
def up
execute "UPDATE site_settings SET name = replace(name, 'pop3s', 'pop3') WHERE name ILIKE 'pop3%'"
end
def down
execute "UPDATE site_settings SET name = replace(name, 'pop3', 'pop3s') WHERE name ILIKE 'pop3%'"
end
end

View file

@ -7,18 +7,18 @@ describe Jobs::PollMailbox do
describe ".execute" do describe ".execute" do
it "does no polling if pop3s_polling_enabled is false" do it "does no polling if pop3_polling_enabled is false" do
SiteSetting.expects(:pop3s_polling_enabled?).returns(false) SiteSetting.expects(:pop3_polling_enabled?).returns(false)
poller.expects(:poll_pop3s).never poller.expects(:poll_pop3).never
poller.execute({}) poller.execute({})
end end
describe "with pop3s_polling_enabled" do describe "with pop3_polling_enabled" do
it "calls poll_pop3s" do it "calls poll_pop3" do
SiteSetting.expects(:pop3s_polling_enabled?).returns(true) SiteSetting.expects(:pop3_polling_enabled?).returns(true)
poller.expects(:poll_pop3s).once poller.expects(:poll_pop3).once
poller.execute({}) poller.execute({})
end end
@ -26,7 +26,7 @@ describe Jobs::PollMailbox do
end end
describe ".poll_pop3s" do describe ".poll_pop3" do
it "logs an error on pop authentication error" do it "logs an error on pop authentication error" do
error = Net::POPAuthenticationError.new error = Net::POPAuthenticationError.new
@ -36,7 +36,7 @@ describe Jobs::PollMailbox do
Discourse.expects(:handle_exception) Discourse.expects(:handle_exception)
poller.poll_pop3s poller.poll_pop3
end end
end end