123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- class EmailHelper
- class Verify
- #
- # Validate an email channel configuration first sending and then fetching that same mail.
- #
- def self.email(params)
- # send verify email
- subject = params[:subject].presence || "##{SecureRandom.hex(10)}"
- result = EmailHelper::Probe.outbound(params[:outbound], params[:sender], subject)
- if result[:result] != 'ok'
- result[:source] = 'outbound'
- return result
- end
- # validate adapter
- adapter = params[:inbound][:adapter].downcase
- if !EmailHelper.available_driver[:inbound][adapter.to_sym]
- return {
- result: 'failed',
- message: "Unknown adapter '#{adapter}'",
- }
- end
- # looking for verify email
- 9.times do
- sleep 5
- # fetch mailbox
- fetch_result = nil
- begin
- driver_class = "Channel::Driver::#{adapter.to_classname}".constantize
- driver_instance = driver_class.new
- fetch_result = driver_instance.fetch(params[:inbound][:options], self, 'verify', subject)
- rescue => e
- result = {
- result: 'invalid',
- source: 'inbound',
- message: e.to_s,
- message_human: EmailHelper::Probe.translation(e.message),
- invalid_field: EmailHelper::Probe.invalid_field(e.message),
- subject: subject,
- }
- return result
- end
- next if !fetch_result
- next if fetch_result[:result] != 'ok'
- return fetch_result
- end
- {
- result: 'invalid',
- message: __('Verification Email not found in mailbox.'),
- subject: subject,
- }
- end
- end
- end
|