123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413 |
- module EmailHelper
- class Probe
- =begin
- get result of probe
- result = EmailHelper::Probe.full(
- email: 'znuny@example.com',
- password: 'somepassword',
- folder: 'some_folder', # optional im imap
- )
- returns on success
- {
- result: 'ok',
- settings: {
- inbound: {
- adapter: 'imap',
- options: {
- host: 'imap.gmail.com',
- port: 993,
- ssl: true,
- user: 'some@example.com',
- password: 'password',
- folder: 'some_folder', # optional im imap
- },
- },
- outbound: {
- adapter: 'smtp',
- options: {
- host: 'smtp.gmail.com',
- port: 25,
- ssl: true,
- user: 'some@example.com',
- password: 'password',
- },
- },
- }
- }
- returns on fail
- result = {
- result: 'failed',
- }
- =end
- def self.full(params)
- user, domain = EmailHelper.parse_email(params[:email])
- if !user || !domain
- return {
- result: 'invalid',
- messages: {
- email: 'Invalid email.'
- },
- }
- end
- # probe provider based settings
- provider_map = EmailHelper.provider(params[:email], params[:password])
- domains = [domain]
- # get mx records, try to find provider based on mx records
- mx_records = EmailHelper.mx_records(domain)
- domains = domains.concat(mx_records)
- provider_map.each { |_provider, settings|
- domains.each { |domain_to_check|
- next if domain_to_check !~ /#{settings[:domain]}/i
- # add folder to config if needed
- if !params[:folder].empty? && settings[:inbound] && settings[:inbound][:options]
- settings[:inbound][:options][:folder] = params[:folder]
- end
- # probe inbound
- Rails.logger.debug "INBOUND PROBE PROVIDER: #{settings[:inbound].inspect}"
- result_inbound = EmailHelper::Probe.inbound(settings[:inbound])
- Rails.logger.debug "INBOUND RESULT PROVIDER: #{result_inbound.inspect}"
- next if result_inbound[:result] != 'ok'
- # probe outbound
- Rails.logger.debug "OUTBOUND PROBE PROVIDER: #{settings[:outbound].inspect}"
- result_outbound = EmailHelper::Probe.outbound(settings[:outbound], params[:email])
- Rails.logger.debug "OUTBOUND RESULT PROVIDER: #{result_outbound.inspect}"
- next if result_outbound[:result] != 'ok'
- return {
- result: 'ok',
- content_messages: result_inbound[:content_messages],
- setting: settings,
- }
- }
- }
- # probe guess settings
- # probe inbound
- inbound_mx = EmailHelper.provider_inbound_mx(user, params[:email], params[:password], mx_records)
- inbound_guess = EmailHelper.provider_inbound_guess(user, params[:email], params[:password], domain)
- inbound_map = inbound_mx + inbound_guess
- result = {
- result: 'ok',
- setting: {}
- }
- success = false
- inbound_map.each { |config|
- # add folder to config if needed
- if !params[:folder].empty? && config[:options]
- config[:options][:folder] = params[:folder]
- end
- Rails.logger.debug "INBOUND PROBE GUESS: #{config.inspect}"
- result_inbound = EmailHelper::Probe.inbound(config)
- Rails.logger.debug "INBOUND RESULT GUESS: #{result_inbound.inspect}"
- next if result_inbound[:result] != 'ok'
- success = true
- result[:setting][:inbound] = config
- result[:content_messages] = result_inbound[:content_messages]
- break
- }
- # give up, no possible inbound found
- if !success
- return {
- result: 'failed',
- reason: 'inbound failed',
- }
- end
- # probe outbound
- outbound_mx = EmailHelper.provider_outbound_mx(user, params[:email], params[:password], mx_records)
- outbound_guess = EmailHelper.provider_outbound_guess(user, params[:email], params[:password], domain)
- outbound_map = outbound_mx + outbound_guess
- success = false
- outbound_map.each { |config|
- Rails.logger.debug "OUTBOUND PROBE GUESS: #{config.inspect}"
- result_outbound = EmailHelper::Probe.outbound(config, params[:email])
- Rails.logger.debug "OUTBOUND RESULT GUESS: #{result_outbound.inspect}"
- next if result_outbound[:result] != 'ok'
- success = true
- result[:setting][:outbound] = config
- break
- }
- # give up, no possible outbound found
- if !success
- return {
- result: 'failed',
- reason: 'outbound failed',
- }
- end
- Rails.logger.info "PROBE FULL SUCCESS: #{result.inspect}"
- result
- end
- =begin
- get result of inbound probe
- result = EmailHelper::Probe.inbound(
- adapter: 'imap',
- settings: {
- host: 'imap.gmail.com',
- port: 993,
- ssl: true,
- user: 'some@example.com',
- password: 'password',
- folder: 'some_folder', # optional
- }
- )
- returns on success
- {
- result: 'ok'
- }
- returns on fail
- result = {
- result: 'invalid',
- settings: {
- host: 'imap.gmail.com',
- port: 993,
- ssl: true,
- user: 'some@example.com',
- password: 'password',
- folder: 'some_folder', # optional im imap
- },
- message: 'error message from used lib',
- message_human: 'translated error message, readable for humans',
- }
- =end
- def self.inbound(params)
- adapter = params[:adapter].downcase
- # validate adapter
- if !EmailHelper.available_driver[:inbound][adapter.to_sym]
- return {
- result: 'failed',
- message: "Unknown adapter '#{adapter}'",
- }
- end
- # connection test
- result_inbound = {}
- begin
- require "channel/driver/#{adapter.to_filename}"
- driver_class = Object.const_get("Channel::Driver::#{adapter.to_classname}")
- driver_instance = driver_class.new
- result_inbound = driver_instance.fetch(params[:options], nil, 'check')
- rescue => e
- return {
- result: 'invalid',
- settings: params,
- message: e.message,
- message_human: translation(e.message),
- invalid_field: invalid_field(e.message),
- }
- end
- result_inbound
- end
- =begin
- get result of outbound probe
- result = EmailHelper::Probe.outbound(
- {
- adapter: 'smtp',
- options: {
- host: 'smtp.gmail.com',
- port: 25,
- ssl: true,
- user: 'some@example.com',
- password: 'password',
- }
- },
- 'sender_and_recipient_of_test_email@example.com',
- 'subject of probe email',
- )
- returns on success
- {
- result: 'ok'
- }
- returns on fail
- result = {
- result: 'invalid',
- settings: {
- host: 'stmp.gmail.com',
- port: 25,
- ssl: true,
- user: 'some@example.com',
- password: 'password',
- },
- message: 'error message from used lib',
- message_human: 'translated error message, readable for humans',
- }
- =end
- def self.outbound(params, email, subject = nil)
- adapter = params[:adapter].downcase
- # validate adapter
- if !EmailHelper.available_driver[:outbound][adapter.to_sym]
- return {
- result: 'failed',
- message: "Unknown adapter '#{adapter}'",
- }
- end
- # prepare test email
- mail = if subject
- {
- from: email,
- to: email,
- subject: "Zammad Getting started Test Email #{subject}",
- body: "This is a Test Email of Zammad to check if sending and receiving is working correctly.\n\nYou can ignore or delete this email.",
- }
- else
- {
- from: email,
- to: 'emailtrytest@znuny.com',
- subject: 'This is a Test Email',
- body: "This is a Test Email of Zammad to verify if Zammad can send emails to an external address.\n\nIf you see this email, you can ignore and delete it.",
- }
- end
- if subject
- mail['X-Zammad-Test-Message'] = subject
- end
- mail['X-Zammad-Ignore'] = 'true'
- mail['X-Loop'] = 'yes'
- mail['Precedence'] = 'bulk'
- mail['Auto-Submitted'] = 'auto-generated'
- mail['X-Auto-Response-Suppress'] = 'All'
- # test connection
- begin
- require "channel/driver/#{adapter.to_filename}"
- driver_class = Object.const_get("Channel::Driver::#{adapter.to_classname}")
- driver_instance = driver_class.new
- driver_instance.send(
- params[:options],
- mail,
- )
- rescue => e
- # check if sending email was ok, but mailserver rejected
- if !subject
- white_map = {
- 'Recipient address rejected' => true,
- }
- white_map.each { |key, _message|
- next if e.message !~ /#{Regexp.escape(key)}/i
- return {
- result: 'ok',
- settings: params,
- notice: e.message,
- }
- }
- end
- return {
- result: 'invalid',
- settings: params,
- message: e.message,
- message_human: translation(e.message),
- invalid_field: invalid_field(e.message),
- }
- end
- {
- result: 'ok',
- }
- end
- def self.invalid_field(message_backend)
- invalid_fields.each { |key, fields|
- return fields if message_backend =~ /#{Regexp.escape(key)}/i
- }
- {}
- end
- def self.invalid_fields
- {
- 'authentication failed' => { user: true, password: true },
- 'Username and Password not accepted' => { user: true, password: true },
- 'Incorrect username' => { user: true, password: true },
- 'Lookup failed' => { user: true },
- 'Invalid credentials' => { user: true, password: true },
- 'getaddrinfo: nodename nor servname provided, or not known' => { host: true },
- 'getaddrinfo: Name or service not known' => { host: true },
- 'No route to host' => { host: true },
- 'execution expired' => { host: true },
- 'Connection refused' => { host: true },
- 'Mailbox doesn\'t exist' => { folder: true },
- 'Folder doesn\'t exist' => { folder: true },
- 'Unknown Mailbox' => { folder: true },
- }
- end
- def self.translation(message_backend)
- translations.each { |key, message_human|
- return message_human if message_backend =~ /#{Regexp.escape(key)}/i
- }
- nil
- end
- def self.translations
- {
- 'authentication failed' => 'Authentication failed!',
- 'Username and Password not accepted' => 'Authentication failed!',
- 'Incorrect username' => 'Authentication failed, username incorrect!',
- 'Lookup failed' => 'Authentication failed, username incorrect!',
- 'Invalid credentials' => 'Authentication failed, invalid credentials!',
- 'getaddrinfo: nodename nor servname provided, or not known' => 'Hostname not found!',
- 'getaddrinfo: Name or service not known' => 'Hostname not found!',
- 'No route to host' => 'No route to host!',
- 'execution expired' => 'Host not reachable!',
- 'Connection refused' => 'Connection refused!',
- }
- end
- end
- end
|