debian-mirror-gitlab/config/mail_room.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
2.5 KiB
YAML
Raw Normal View History

2015-10-24 18:46:33 +05:30
:mailboxes:
2016-09-13 17:45:13 +05:30
<%
2017-08-17 22:00:37 +05:30
require_relative "../lib/gitlab/mail_room" unless defined?(Gitlab::MailRoom)
2022-05-07 20:08:51 +05:30
Gitlab::MailRoom.enabled_configs.each do |key, config|
2016-09-13 17:45:13 +05:30
%>
2016-06-02 11:05:42 +05:30
-
2016-09-13 17:45:13 +05:30
:host: <%= config[:host].to_json %>
:port: <%= config[:port].to_json %>
:ssl: <%= config[:ssl].to_json %>
:start_tls: <%= config[:start_tls].to_json %>
:email: <%= config[:user].to_json %>
:password: <%= config[:password].to_json %>
2017-08-17 22:00:37 +05:30
:idle_timeout: <%= config[:idle_timeout].to_json %>
2020-01-01 13:55:28 +05:30
:logger:
:log_path: <%= config[:log_path].to_json %>
2016-06-02 11:05:42 +05:30
2016-09-13 17:45:13 +05:30
:name: <%= config[:mailbox].to_json %>
2016-06-02 11:05:42 +05:30
:delete_after_delivery: true
2020-05-24 23:13:21 +05:30
:expunge_deleted: <%= config[:expunge_deleted].to_json %>
2016-06-02 11:05:42 +05:30
2021-04-29 21:17:54 +05:30
<% if config[:inbox_method] %>
:inbox_method: <%= config[:inbox_method] %>
<% end %>
<% if config[:inbox_options].is_a?(Hash) %>
<%= config.slice(:inbox_options).to_yaml(indentation: 8).gsub(/^---\n/, '') %>
<% end %>
2022-05-07 20:08:51 +05:30
<% if config[:delivery_method] == Gitlab::MailRoom::DELIVERY_METHOD_SIDEKIQ %>
2016-06-02 11:05:42 +05:30
:delivery_method: sidekiq
:delivery_options:
2016-09-13 17:45:13 +05:30
:redis_url: <%= config[:redis_url].to_json %>
2021-11-18 22:05:49 +05:30
:redis_db: <%= config[:redis_db] %>
2017-09-10 17:25:29 +05:30
:namespace: <%= Gitlab::Redis::Queues::SIDEKIQ_NAMESPACE %>
2020-03-13 15:44:24 +05:30
:queue: <%= config[:queue] %>
:worker: <%= config[:worker] %>
2017-08-17 22:00:37 +05:30
<% if config[:sentinels] %>
:sentinels:
<% config[:sentinels].each do |sentinel| %>
-
:host: <%= sentinel[:host] %>
:port: <%= sentinel[:port] %>
<% end %>
<% end %>
2022-05-07 20:08:51 +05:30
<% elsif config[:delivery_method] == Gitlab::MailRoom::DELIVERY_METHOD_WEBHOOK %>
:delivery_method: postback
:delivery_options:
:delivery_url: <%= config[:gitlab_url] %>/api/v4/internal/mail_room/<%= key %>
2022-07-23 23:45:48 +05:30
:content_type: text/plain
2022-05-07 20:08:51 +05:30
:jwt_auth_header: <%= Gitlab::MailRoom::INTERNAL_API_REQUEST_HEADER %>
:jwt_issuer: <%= Gitlab::MailRoom::INTERNAL_API_REQUEST_JWT_ISSUER %>
:jwt_algorithm: "HS256"
:jwt_secret_path: <%= config[:secret_file] %>
<% end %>
2016-06-02 11:05:42 +05:30
:arbitration_method: redis
:arbitration_options:
2016-09-13 17:45:13 +05:30
:redis_url: <%= config[:redis_url].to_json %>
2017-09-10 17:25:29 +05:30
:namespace: <%= Gitlab::Redis::Queues::MAILROOM_NAMESPACE %>
2017-08-17 22:00:37 +05:30
<% if config[:sentinels] %>
:sentinels:
<% config[:sentinels].each do |sentinel| %>
-
:host: <%= sentinel[:host] %>
:port: <%= sentinel[:port] %>
<% end %>
<% end %>
2016-06-02 11:05:42 +05:30
<% end %>