2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-01-18 18:57:55 -05:00
|
|
|
def process_popmail(popmail)
|
|
|
|
begin
|
|
|
|
mail_string = popmail.pop
|
|
|
|
Email::Receiver.new(mail_string).process
|
|
|
|
rescue
|
|
|
|
putc "!"
|
|
|
|
else
|
|
|
|
putc "."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
desc "use this task to import a mailbox into Disourse"
|
|
|
|
task "emails:import" => :environment do
|
|
|
|
begin
|
|
|
|
unless SiteSetting.email_in
|
|
|
|
puts "ERROR: you should enable the 'email_in' site setting before running this task"
|
|
|
|
exit(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
address = ENV["ADDRESS"].presence || "pop.gmail.com"
|
|
|
|
port = (ENV["PORT"].presence || 995).to_i
|
|
|
|
ssl = (ENV["SSL"].presence || "1") == "1"
|
|
|
|
username = ENV["USERNAME"].presence
|
|
|
|
password = ENV["PASSWORD"].presence
|
|
|
|
|
|
|
|
if username.blank?
|
|
|
|
puts "ERROR: expecting USERNAME=<username> rake emails:import"
|
|
|
|
exit(2)
|
|
|
|
elsif password.blank?
|
|
|
|
puts "ERROR: expecting PASSWORD=<password> rake emails:import"
|
|
|
|
exit(3)
|
|
|
|
end
|
|
|
|
|
|
|
|
RateLimiter.disable
|
|
|
|
|
|
|
|
mails_left = 1
|
|
|
|
pop3 = Net::POP3.new(address, port)
|
2019-09-11 12:43:02 -04:00
|
|
|
pop3.enable_ssl(max_version: OpenSSL::SSL::TLS1_2_VERSION) if ssl
|
2016-01-18 18:57:55 -05:00
|
|
|
|
|
|
|
while mails_left > 0
|
|
|
|
pop3.start(username, password) do |pop|
|
|
|
|
pop.delete_all do |p|
|
|
|
|
process_popmail(p)
|
|
|
|
end
|
|
|
|
mails_left = pop.n_mails
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
puts "Done"
|
|
|
|
rescue Net::POPAuthenticationError
|
|
|
|
puts "AUTH EXCEPTION: please make sure your credentials are correct."
|
|
|
|
exit(10)
|
|
|
|
ensure
|
|
|
|
RateLimiter.enable
|
|
|
|
end
|
|
|
|
end
|
2018-05-13 08:15:15 -04:00
|
|
|
|
2018-07-31 00:45:59 -04:00
|
|
|
desc "Check if SMTP connection is successful and send test message"
|
2018-05-13 08:15:15 -04:00
|
|
|
task 'emails:test', [:email] => [:environment] do |_, args|
|
|
|
|
email = args[:email]
|
2018-07-31 00:45:59 -04:00
|
|
|
message = "OK"
|
|
|
|
begin
|
2018-07-31 00:50:02 -04:00
|
|
|
smtp = Discourse::Application.config.action_mailer.smtp_settings
|
2018-07-31 00:45:59 -04:00
|
|
|
|
|
|
|
if smtp[:address].match(/smtp\.gmail\.com/)
|
2018-07-31 00:50:02 -04:00
|
|
|
puts <<~STR
|
|
|
|
#{smtp}
|
|
|
|
============================== WARNING ==============================
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
Sending mail with Gmail is a violation of their terms of service.
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
Sending with G Suite might work, but it is not recommended. For information see:
|
|
|
|
https://meta.discourse.org/t/dscourse-aws-ec2-g-suite-troubleshoting/62931?u=pfaffman
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
========================= CONTINUING TEST ============================
|
|
|
|
STR
|
2018-07-31 00:45:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
puts "Testing sending to #{email} using #{smtp[:user_name]}:#{smtp[:password]}@#{smtp[:address]}:#{smtp[:port]}."
|
|
|
|
|
2019-01-16 21:41:10 -05:00
|
|
|
# We would like to do this, but Net::SMTP errors out using starttls
|
|
|
|
#Net::SMTP.start(smtp[:address], smtp[:port]) do |s|
|
|
|
|
# s.starttls if !!smtp[:enable_starttls_auto] && s.capable_starttls?
|
|
|
|
# s.auth_login(smtp[:user_name], smtp[:password])
|
|
|
|
#end
|
|
|
|
|
Fix SMTP connection test
This test did not support 'no auth' use case and other auth methods except 'login'. I fixed it by simply making the call to start() in the right way.
As shown in the source code of Net::SMTP (https://github.com/ruby/ruby/blob/ruby_2_5/lib/net/smtp.rb#L452), the start() function does accept the 'user' and 'secret' arguments. Also, in do_start() function (https://github.com/ruby/ruby/blob/ruby_2_5/lib/net/smtp.rb#L542), it automatically checks the auth method and args, skips the authentication if 'user' is not provided, and selects the right auth method from 'plain', 'login' or 'cram_md5'. This is exactly all of what we should do in a connection test and the odd 'auth_login' call in the previous code makes problems.
BTW, I am using 'localhost' as the third argument, which is the same as the default value in start(). This parameter is the domain address sent along with the 'ehlo' command in SMTP protocol. I have seen some documents, e.g. https://github.com/tpn/msmtp/blob/master/doc/msmtp.1#L455, saying that 'localhost' is fine. It works for me.
2019-03-15 08:35:15 -04:00
|
|
|
Net::SMTP.start(smtp[:address], smtp[:port], 'localhost', smtp[:user_name], smtp[:password])
|
2018-07-31 00:45:59 -04:00
|
|
|
rescue Exception => e
|
|
|
|
|
|
|
|
if e.to_s.match(/execution expired/)
|
2018-07-31 00:50:02 -04:00
|
|
|
message = <<~STR
|
|
|
|
======================================== ERROR ========================================
|
|
|
|
Connection to port #{ENV["DISCOURSE_SMTP_PORT"]} failed.
|
|
|
|
====================================== SOLUTION =======================================
|
|
|
|
The most likely problem is that your server has outgoing SMTP traffic blocked.
|
|
|
|
If you are using a service like Mailgun or Sendgrid, try using port 2525.
|
|
|
|
=======================================================================================
|
|
|
|
STR
|
2019-01-16 21:41:10 -05:00
|
|
|
|
|
|
|
elsif e.to_s.match(/530.*STARTTLS/)
|
|
|
|
# We can't run a prelimary test with STARTTLS, we'll just try sending the test email.
|
|
|
|
message = "OK"
|
|
|
|
|
2018-07-31 00:45:59 -04:00
|
|
|
elsif e.to_s.match(/535/)
|
2018-07-31 00:50:02 -04:00
|
|
|
message = <<~STR
|
|
|
|
======================================== ERROR ========================================
|
|
|
|
AUTHENTICATION FAILED
|
|
|
|
|
|
|
|
#{e}
|
|
|
|
|
|
|
|
====================================== SOLUTION =======================================
|
|
|
|
The most likely problem is that your SMTP username and/or Password is incorrect.
|
|
|
|
Check them and try again.
|
|
|
|
=======================================================================================
|
|
|
|
STR
|
2019-01-16 21:41:10 -05:00
|
|
|
|
2018-07-31 00:45:59 -04:00
|
|
|
elsif e.to_s.match(/Connection refused/)
|
2018-07-31 00:50:02 -04:00
|
|
|
message = <<~STR
|
|
|
|
======================================== ERROR ========================================
|
|
|
|
CONNECTION REFUSED
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
#{e}
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
====================================== SOLUTION =======================================
|
|
|
|
The most likely problem is that you have chosen the wrong port or a network problem is
|
|
|
|
blocking access from the Docker container.
|
2018-05-13 08:15:15 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
Check the port and your networking configuration.
|
|
|
|
=======================================================================================
|
|
|
|
STR
|
2018-07-31 00:45:59 -04:00
|
|
|
|
|
|
|
elsif e.to_s.match(/service not known/)
|
2018-07-31 00:50:02 -04:00
|
|
|
message = <<~STR
|
|
|
|
======================================== ERROR ========================================
|
|
|
|
SMTP SERVER NOT FOUND
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
#{e}
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
====================================== SOLUTION =======================================
|
|
|
|
The most likely problem is that the host name of your SMTP server is incorrect.
|
|
|
|
Check it and try again.
|
|
|
|
=======================================================================================
|
|
|
|
STR
|
2018-07-31 00:45:59 -04:00
|
|
|
|
|
|
|
else
|
2018-07-31 00:50:02 -04:00
|
|
|
message = <<~STR
|
|
|
|
======================================== ERROR ========================================
|
|
|
|
UNEXPECTED ERROR
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
#{e}
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
====================================== SOLUTION =======================================
|
|
|
|
This is not a common error. No recommended solution exists!
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2019-01-16 21:41:10 -05:00
|
|
|
Please report the exact error message above to https://meta.discourse.org/
|
|
|
|
(And a solution, if you find one!)
|
2018-07-31 00:50:02 -04:00
|
|
|
=======================================================================================
|
|
|
|
STR
|
2018-07-31 00:45:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
if message == "OK"
|
|
|
|
puts "SMTP server connection successful."
|
|
|
|
else
|
|
|
|
puts message
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
begin
|
|
|
|
puts "Sending to #{email}. . . "
|
|
|
|
Email::Sender.new(TestMailer.send_test(email), :test_message).send
|
|
|
|
rescue
|
|
|
|
puts "Sending mail failed."
|
|
|
|
else
|
2018-07-31 00:50:02 -04:00
|
|
|
puts <<~STR
|
|
|
|
Mail accepted by SMTP server.
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
If you do not receive the message, check your SPAM folder
|
|
|
|
or test again using a service like http://www.mail-tester.com/.
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
If the message is not delivered it is not a problem with Discourse.
|
2018-07-31 00:45:59 -04:00
|
|
|
|
2018-07-31 00:50:02 -04:00
|
|
|
Check the SMTP server logs to see why it failed to deliver the message.
|
|
|
|
STR
|
2018-07-31 00:45:59 -04:00
|
|
|
end
|
2018-05-13 08:15:15 -04:00
|
|
|
end
|