Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mail_room_enabled_check.rb « incoming_email « system_check « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e725aabd03aea30def544778305d98e57171eee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true

module SystemCheck
  module IncomingEmail
    class MailRoomEnabledCheck < SystemCheck::BaseCheck
      include ::SystemCheck::InitHelpers
      set_name 'Mailroom enabled?'

      def skip?
        omnibus_gitlab?
      end

      def check?
        mail_room_enabled? || mail_room_configured?
      end

      def show_error
        try_fixing_it(
          'Enable mail_room'
        )
        for_more_information(
          'doc/administration/reply_by_email.md'
        )
        fix_and_rerun
      end

      private

      def mail_room_enabled?
        target = '/usr/local/lib/systemd/system/gitlab.target'
        service = '/usr/local/lib/systemd/system/gitlab-mailroom.service'

        File.exist?(target) && File.exist?(service) && systemd_get_wants('gitlab.target').include?("gitlab-mailroom.service")
      end

      def mail_room_configured?
        path = '/etc/default/gitlab'
        File.exist?(path) && File.read(path).include?('mail_room_enabled=true')
      end
    end
  end
end