Merge pull request #2408 from peternlewis/pop3_insecure
Support for insecure POP3 (without SSL)
This commit is contained in:
commit
1147b9d2e5
|
@ -39,7 +39,9 @@ module Jobs
|
|||
end
|
||||
|
||||
def poll_pop3s
|
||||
Net::POP3.enable_ssl(OpenSSL::SSL::VERIFY_NONE)
|
||||
if !SiteSetting.pop3s_polling_insecure
|
||||
Net::POP3.enable_ssl(OpenSSL::SSL::VERIFY_NONE)
|
||||
end
|
||||
Net::POP3.start(SiteSetting.pop3s_polling_host,
|
||||
SiteSetting.pop3s_polling_port,
|
||||
SiteSetting.pop3s_polling_username,
|
||||
|
|
|
@ -848,6 +848,7 @@ en:
|
|||
reply_by_email_address: "Template for reply by email incoming email address, for example: %{reply_key}@reply.example.com or replies+%{reply_key}@example.com"
|
||||
|
||||
pop3s_polling_enabled: "Poll via POP3S for email replies"
|
||||
pop3s_polling_insecure: "Poll using plain text POP3 without SSL"
|
||||
pop3s_polling_port: "The port to poll a POP3S account on"
|
||||
pop3s_polling_host: "The host to poll for email via POP3S"
|
||||
pop3s_polling_username: "The username for the POP3S account to poll for email"
|
||||
|
|
|
@ -345,6 +345,7 @@ email:
|
|||
reply_by_email_enabled: false
|
||||
reply_by_email_address: ''
|
||||
pop3s_polling_enabled: false
|
||||
pop3s_polling_insecure: false
|
||||
pop3s_polling_host: ''
|
||||
pop3s_polling_port: 995
|
||||
pop3s_polling_username: ''
|
||||
|
|
Loading…
Reference in New Issue