6855e6b586
These changes make the code more reusable, testable, and most importantly, overrideable.
27 lines
757 B
Ruby
27 lines
757 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SystemCheck
|
|
# Used by gitlab:incoming_email:check rake task
|
|
class IncomingEmailCheck < BaseCheck
|
|
set_name 'Incoming Email:'
|
|
|
|
def multi_check
|
|
if Gitlab.config.incoming_email.enabled
|
|
checks = [
|
|
SystemCheck::IncomingEmail::ImapAuthenticationCheck
|
|
]
|
|
|
|
if Rails.env.production?
|
|
checks << SystemCheck::IncomingEmail::InitdConfiguredCheck
|
|
checks << SystemCheck::IncomingEmail::MailRoomRunningCheck
|
|
else
|
|
checks << SystemCheck::IncomingEmail::ForemanConfiguredCheck
|
|
end
|
|
|
|
SystemCheck.run('Reply by email', checks)
|
|
else
|
|
$stdout.puts 'Reply by email is disabled in config/gitlab.yml'
|
|
end
|
|
end
|
|
end
|
|
end
|