Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

447 righe
26 KiB

  1. #jinja2: lstrip_blocks: True
  2. # Network-specific config options
  3. network:
  4. # Displayname template for Slack users. Available variables:
  5. # .Name - The username of the user
  6. # .Team.Name - The name of the team the channel is in
  7. # .Team.Domain - The Slack subdomain of the team the channel is in
  8. # .ID - The internal ID of the user
  9. # .IsBot - Whether the user is a bot
  10. # .Profile.DisplayName - The username or real name of the user (depending on settings)
  11. # Variables only available for users (not bots):
  12. # .TeamID - The internal ID of the workspace the user is in
  13. # .TZ - The timezone region of the user (e.g. Europe/London)
  14. # .TZLabel - The label of the timezone of the user (e.g. Greenwich Mean Time)
  15. # .TZOffset - The UTC offset of the timezone of the user (e.g. 0)
  16. # .Profile.RealName - The real name of the user
  17. # .Profile.FirstName - The first name of the user
  18. # .Profile.LastName - The last name of the user
  19. # .Profile.Title - The job title of the user
  20. # .Profile.Pronouns - The pronouns of the user
  21. # .Profile.Email - The email address of the user
  22. # .Profile.Phone - The formatted phone number of the user
  23. displayname_template: {{ matrix_mautrix_slack_network_displayname_template | to_json }}
  24. # Channel name template for Slack channels (all types). Available variables:
  25. # .Name - The name of the channel
  26. # .Team.Name - The name of the team the channel is in
  27. # .Team.Domain - The Slack subdomain of the team the channel is in
  28. # .ID - The internal ID of the channel
  29. # .IsNoteToSelf - Whether the channel is a DM with yourself
  30. # .IsGeneral - Whether the channel is the #general channel
  31. # .IsChannel - Whether the channel is a channel (rather than a DM)
  32. # .IsPrivate - Whether the channel is private
  33. # .IsIM - Whether the channel is a one-to-one DM
  34. # .IsMpIM - Whether the channel is a group DM
  35. # .IsShared - Whether the channel is shared with another workspace.
  36. # .IsExtShared - Whether the channel is shared with an external organization.
  37. # .IsOrgShared - Whether the channel is shared with an organization in the same enterprise grid.
  38. channel_name_template: '{% raw %}{{if and .IsChannel (not .IsPrivate)}}#{{end}}{{.Name}}{{if .IsNoteToSelf}} (you){{end}}{% endraw %}'
  39. # Displayname template for Slack workspaces. Available variables:
  40. # .Name - The name of the team
  41. # .Domain - The Slack subdomain of the team
  42. # .ID - The internal ID of the team
  43. team_name_template: "{% raw %}{{ .Name }}{% endraw %}"
  44. # Should incoming custom emoji reactions be bridged as mxc:// URIs?
  45. # If set to false, custom emoji reactions will be bridged as the shortcode instead, and the image won't be available.
  46. custom_emoji_reactions: true
  47. # Should channels and group DMs have the workspace icon as the Matrix room avatar?
  48. workspace_avatar_in_rooms: false
  49. # Number of participants to sync in channels (doesn't affect group DMs)
  50. participant_sync_count: 5
  51. # Should channel participants only be synced when creating the room?
  52. # If you want participants to always be accurately synced, set participant_sync_count to a high value and this to false.
  53. participant_sync_only_on_create: true
  54. # Should channel portals be muted by default?
  55. mute_channels_by_default: false
  56. # Options for backfilling messages from Slack.
  57. backfill:
  58. # Number of conversations to fetch from Slack when syncing workspace.
  59. # This option applies even if message backfill is disabled below.
  60. # If set to -1, all chats in the client.boot response will be bridged, and nothing will be fetched separately.
  61. conversation_count: -1
  62. # Config options that affect the central bridge module.
  63. bridge:
  64. # The prefix for commands. Only required in non-management rooms.
  65. command_prefix: {{ matrix_mautrix_slack_command_prefix | to_json }}
  66. # Should the bridge create a space for each login containing the rooms that account is in?
  67. personal_filtering_spaces: true
  68. # Whether the bridge should set names and avatars explicitly for DM portals.
  69. # This is only necessary when using clients that don't support MSC4171.
  70. private_chat_portal_meta: false
  71. # Should leaving Matrix rooms be bridged as leaving groups on the remote network?
  72. bridge_matrix_leave: false
  73. # Should room tags only be synced when creating the portal? Tags mean things like favorite/pin and archive/low priority.
  74. # Tags currently can't be synced back to the remote network, so a continuous sync means tagging from Matrix will be undone.
  75. tag_only_on_create: true
  76. # Should room mute status only be synced when creating the portal?
  77. # Like tags, mutes can't currently be synced back to the remote network.
  78. mute_only_on_create: true
  79. # What should be done to portal rooms when a user logs out or is logged out?
  80. # Permitted values:
  81. # nothing - Do nothing, let the user stay in the portals
  82. # kick - Remove the user from the portal rooms, but don't delete them
  83. # unbridge - Remove all ghosts in the room and disassociate it from the remote chat
  84. # delete - Remove all ghosts and users from the room (i.e. delete it)
  85. cleanup_on_logout:
  86. # Should cleanup on logout be enabled at all?
  87. enabled: false
  88. # Settings for manual logouts (explicitly initiated by the Matrix user)
  89. manual:
  90. # Action for private portals which will never be shared with other Matrix users.
  91. private: nothing
  92. # Action for portals with a relay user configured.
  93. relayed: nothing
  94. # Action for portals which may be shared, but don't currently have any other Matrix users.
  95. shared_no_users: nothing
  96. # Action for portals which have other logged-in Matrix users.
  97. shared_has_users: nothing
  98. # Settings for credentials being invalidated (initiated by the remote network, possibly through user action).
  99. # Keys have the same meanings as in the manual section.
  100. bad_credentials:
  101. private: nothing
  102. relayed: nothing
  103. shared_no_users: nothing
  104. shared_has_users: nothing
  105. # Settings for relay mode
  106. relay:
  107. # Whether relay mode should be allowed. If allowed, the set-relay command can be used to turn any
  108. # authenticated user into a relaybot for that chat.
  109. enabled: {{ matrix_mautrix_slack_bridge_relay_enabled | to_json }}
  110. # Should only admins be allowed to set themselves as relay users?
  111. # If true, non-admins can only set users listed in default_relays as relays in a room.
  112. admin_only: {{ matrix_mautrix_slack_bridge_relay_admin_only | to_json }}
  113. # List of user login IDs which anyone can set as a relay, as long as the relay user is in the room.
  114. default_relays: {{ matrix_mautrix_slack_bridge_relay_default_relays | to_json }}
  115. # The formats to use when sending messages via the relaybot.
  116. # Available variables:
  117. # .Sender.UserID - The Matrix user ID of the sender.
  118. # .Sender.Displayname - The display name of the sender (if set).
  119. # .Sender.RequiresDisambiguation - Whether the sender's name may be confused with the name of another user in the room.
  120. # .Sender.DisambiguatedName - The disambiguated name of the sender. This will be the displayname if set,
  121. # plus the user ID in parentheses if the displayname is not unique.
  122. # If the displayname is not set, this is just the user ID.
  123. # .Message - The `formatted_body` field of the message.
  124. # .Caption - The `formatted_body` field of the message, if it's a caption. Otherwise an empty string.
  125. # .FileName - The name of the file being sent.
  126. message_formats:
  127. m.text: "{% raw %}<b>{{ .Sender.DisambiguatedName }}</b>: {{ .Message }}{% endraw %}"
  128. m.notice: "{% raw %}<b>{{ .Sender.DisambiguatedName }}</b>: {{ .Message }}{% endraw %}"
  129. m.emote: "{% raw %}* <b>{{ .Sender.DisambiguatedName }}</b> {{ .Message }}{% endraw %}"
  130. m.file: "{% raw %}<b>{{ .Sender.DisambiguatedName }}</b> sent a file{{ if .Caption }}: {{ .Caption }}{{ end }}{% endraw %}"
  131. m.image: "{% raw %}<b>{{ .Sender.DisambiguatedName }}</b> sent an image{{ if .Caption }}: {{ .Caption }}{{ end }}{% endraw %}"
  132. m.audio: "{% raw %}<b>{{ .Sender.DisambiguatedName }}</b> sent an audio file{{ if .Caption }}: {{ .Caption }}{{ end }}{% endraw %}"
  133. m.video: "{% raw %}<b>{{ .Sender.DisambiguatedName }}</b> sent a video{{ if .Caption }}: {{ .Caption }}{{ end }}{% endraw %}"
  134. m.location: "{% raw %}<b>{{ .Sender.DisambiguatedName }}</b> sent a location{{ if .Caption }}: {{ .Caption }}{{ end }}{% endraw %}"
  135. # For networks that support per-message displaynames (i.e. Slack and Discord), the template for those names.
  136. # This has all the Sender variables available under message_formats (but without the .Sender prefix).
  137. # Note that you need to manually remove the displayname from message_formats above.
  138. displayname_format: "{% raw %}{{ .DisambiguatedName }}{% endraw %}"
  139. # Permissions for using the bridge.
  140. # Permitted values:
  141. # relay - Talk through the relaybot (if enabled), no access otherwise
  142. # commands - Access to use commands in the bridge, but not login.
  143. # user - Access to use the bridge with puppeting.
  144. # admin - Full access, user level with some additional administration tools.
  145. # Permitted keys:
  146. # * - All Matrix users
  147. # domain - All users on that homeserver
  148. # mxid - Specific user
  149. permissions: {{ matrix_mautrix_slack_bridge_permissions | to_json }}
  150. # Config for the bridge's database.
  151. database:
  152. # The database type. "sqlite3-fk-wal" and "postgres" are supported.
  153. type: {{ matrix_mautrix_slack_appservice_database_type | to_json }}
  154. # The database URI.
  155. # SQLite: A raw file path is supported, but `file:<path>?_txlock=immediate` is recommended.
  156. # https://github.com/mattn/go-sqlite3#connection-string
  157. # Postgres: Connection string. For example, postgres://user:password@host/database?sslmode=disable
  158. # To connect via Unix socket, use something like postgres:///dbname?host=/var/run/postgresql
  159. uri: {{ matrix_mautrix_slack_appservice_database_uri | to_json }}
  160. # Maximum number of connections.
  161. max_open_conns: 5
  162. max_idle_conns: 1
  163. # Maximum connection idle time and lifetime before they're closed. Disabled if null.
  164. # Parsed with https://pkg.go.dev/time#ParseDuration
  165. max_conn_idle_time: null
  166. max_conn_lifetime: null
  167. # Homeserver details.
  168. homeserver:
  169. # The address that this appservice can use to connect to the homeserver.
  170. # Local addresses without HTTPS are generally recommended when the bridge is running on the same machine,
  171. # but https also works if they run on different machines.
  172. address: {{ matrix_mautrix_slack_homeserver_address | to_json }}
  173. # The domain of the homeserver (also known as server_name, used for MXIDs, etc).
  174. domain: {{ matrix_mautrix_slack_homeserver_domain | to_json }}
  175. # What software is the homeserver running?
  176. # Standard Matrix homeservers like Synapse, Dendrite and Conduit should just use "standard" here.
  177. software: standard
  178. # The URL to push real-time bridge status to.
  179. # If set, the bridge will make POST requests to this URL whenever a user's remote network connection state changes.
  180. # The bridge will use the appservice as_token to authorize requests.
  181. status_endpoint:
  182. # Endpoint for reporting per-message status.
  183. # If set, the bridge will make POST requests to this URL when processing a message from Matrix.
  184. # It will make one request when receiving the message (step BRIDGE), one after decrypting if applicable
  185. # (step DECRYPTED) and one after sending to the remote network (step REMOTE). Errors will also be reported.
  186. # The bridge will use the appservice as_token to authorize requests.
  187. message_send_checkpoint_endpoint:
  188. # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246?
  189. async_media: {{ matrix_mautrix_slack_homeserver_async_media | to_json }}
  190. # Should the bridge use a websocket for connecting to the homeserver?
  191. # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy,
  192. # mautrix-asmux (deprecated), and hungryserv (proprietary).
  193. websocket: false
  194. # How often should the websocket be pinged? Pinging will be disabled if this is zero.
  195. ping_interval_seconds: 0
  196. # Application service host/registration related details.
  197. # Changing these values requires regeneration of the registration (except when noted otherwise)
  198. appservice:
  199. # The address that the homeserver can use to connect to this appservice.
  200. address: {{ matrix_mautrix_slack_appservice_address | to_json }}
  201. # A public address that external services can use to reach this appservice.
  202. # This value doesn't affect the registration file.
  203. public_address: https://bridge.example.com
  204. # The hostname and port where this appservice should listen.
  205. # For Docker, you generally have to change the hostname to 0.0.0.0.
  206. hostname: 0.0.0.0
  207. port: 8080
  208. # The unique ID of this appservice.
  209. id: slack
  210. # Appservice bot details.
  211. bot:
  212. # Username of the appservice bot.
  213. username: {{ matrix_mautrix_slack_appservice_bot_username | to_json }}
  214. # Display name and avatar for bot. Set to "remove" to remove display name/avatar, leave empty
  215. # to leave display name/avatar as-is.
  216. displayname: Slack bridge bot
  217. avatar: mxc://maunium.net/pVtzLmChZejGxLqmXtQjFxem
  218. # Whether to receive ephemeral events via appservice transactions.
  219. ephemeral_events: true
  220. # Should incoming events be handled asynchronously?
  221. # This may be necessary for large public instances with lots of messages going through.
  222. # However, messages will not be guaranteed to be bridged in the same order they were sent in.
  223. # This value doesn't affect the registration file.
  224. async_transactions: false
  225. # Authentication tokens for AS <-> HS communication. Autogenerated; do not modify.
  226. as_token: {{ matrix_mautrix_slack_appservice_token | to_json }}
  227. hs_token: {{ matrix_mautrix_slack_homeserver_token | to_json }}
  228. # Localpart template of MXIDs for remote users.
  229. # {% raw %}{{.}}{% endraw %} is replaced with the internal ID of the user.
  230. username_template: "{% raw %}slack_{{.}}{% endraw %}"
  231. # Config options that affect the Matrix connector of the bridge.
  232. matrix:
  233. # Whether the bridge should send the message status as a custom com.beeper.message_send_status event.
  234. message_status_events: false
  235. # Whether the bridge should send a read receipt after successfully bridging a message.
  236. delivery_receipts: false
  237. # Whether the bridge should send error notices via m.notice events when a message fails to bridge.
  238. message_error_notices: true
  239. # Whether the bridge should update the m.direct account data event when double puppeting is enabled.
  240. sync_direct_chat_list: false
  241. # Whether created rooms should have federation enabled. If false, created portal rooms
  242. # will never be federated. Changing this option requires recreating rooms.
  243. federate_rooms: true
  244. # Settings for provisioning API
  245. provisioning:
  246. # Prefix for the provisioning API paths.
  247. prefix: /_matrix/provision
  248. # Shared secret for authentication. If set to "generate" or null, a random secret will be generated,
  249. # or if set to "disable", the provisioning API will be disabled.
  250. shared_secret: {{ matrix_mautrix_slack_provisioning_shared_secret | to_json }}
  251. # Whether to allow provisioning API requests to be authed using Matrix access tokens.
  252. # This follows the same rules as double puppeting to determine which server to contact to check the token,
  253. # which means that by default, it only works for users on the same server as the bridge.
  254. allow_matrix_auth: true
  255. # Enable debug API at /debug with provisioning authentication.
  256. debug_endpoints: false
  257. # Some networks require publicly accessible media download links (e.g. for user avatars when using Discord webhooks).
  258. # These settings control whether the bridge will provide such public media access.
  259. public_media:
  260. # Should public media be enabled at all?
  261. # The public_address field under the appservice section MUST be set when enabling public media.
  262. enabled: false
  263. # A key for signing public media URLs.
  264. # If set to "generate", a random key will be generated.
  265. signing_key: {{ matrix_mautrix_slack_public_media_signing_key | to_json }}
  266. # Number of seconds that public media URLs are valid for.
  267. # If set to 0, URLs will never expire.
  268. expiry: 0
  269. # Length of hash to use for public media URLs. Must be between 0 and 32.
  270. hash_length: 32
  271. # Settings for converting remote media to custom mxc:// URIs instead of reuploading.
  272. # More details can be found at https://docs.mau.fi/bridges/go/discord/direct-media.html
  273. direct_media:
  274. # Should custom mxc:// URIs be used instead of reuploading media?
  275. enabled: false
  276. # The server name to use for the custom mxc:// URIs.
  277. # This server name will effectively be a real Matrix server, it just won't implement anything other than media.
  278. # You must either set up .well-known delegation from this domain to the bridge, or proxy the domain directly to the bridge.
  279. server_name: media.example.com
  280. # Optionally a custom .well-known response. This defaults to `server_name:443`
  281. well_known_response:
  282. # Optionally specify a custom prefix for the media ID part of the MXC URI.
  283. media_id_prefix:
  284. # If the remote network supports media downloads over HTTP, then the bridge will use MSC3860/MSC3916
  285. # media download redirects if the requester supports it. Optionally, you can force redirects
  286. # and not allow proxying at all by setting this to false.
  287. # This option does nothing if the remote network does not support media downloads over HTTP.
  288. allow_proxy: true
  289. # Matrix server signing key to make the federation tester pass, same format as synapse's .signing.key file.
  290. # This key is also used to sign the mxc:// URIs to ensure only the bridge can generate them.
  291. server_key: ""
  292. # Settings for backfilling messages.
  293. # Note that the exact way settings are applied depends on the network connector.
  294. # See https://docs.mau.fi/bridges/general/backfill.html for more details.
  295. backfill:
  296. # Whether to do backfilling at all.
  297. enabled: {{ matrix_mautrix_slack_backfill_enabled | to_json }}
  298. # Maximum number of messages to backfill in empty rooms.
  299. max_initial_messages: {{ matrix_mautrix_slack_backfill_max_initial_messages | to_json }}
  300. # Maximum number of missed messages to backfill after bridge restarts.
  301. max_catchup_messages: {{ matrix_mautrix_slack_backfill_max_catchup_messages | to_json }}
  302. # If a backfilled chat is older than this number of hours,
  303. # mark it as read even if it's unread on the remote network.
  304. unread_hours_threshold: {{ matrix_mautrix_slack_backfill_unread_hours_threshold| to_json }}
  305. # Settings for backfilling threads within other backfills.
  306. threads:
  307. # Maximum number of messages to backfill in a new thread.
  308. max_initial_messages: {{ matrix_mautrix_slack_backfill_threads_max_initial_messages | to_json }}
  309. # Settings for the backwards backfill queue. This only applies when connecting to
  310. # Beeper as standard Matrix servers don't support inserting messages into history.
  311. queue:
  312. # Should the backfill queue be enabled?
  313. enabled: false
  314. # Number of messages to backfill in one batch.
  315. batch_size: 100
  316. # Delay between batches in seconds.
  317. batch_delay: 20
  318. # Maximum number of batches to backfill per portal.
  319. # If set to -1, all available messages will be backfilled.
  320. max_batches: -1
  321. # Optional network-specific overrides for max batches.
  322. # Interpretation of this field depends on the network connector.
  323. max_batches_override: {}
  324. # Settings for enabling double puppeting
  325. double_puppet:
  326. # Servers to always allow double puppeting from.
  327. # This is only for other servers and should NOT contain the server the bridge is on.
  328. servers: {}
  329. # Whether to allow client API URL discovery for other servers. When using this option,
  330. # users on other servers can use double puppeting even if their server URLs aren't
  331. # explicitly added to the servers map above.
  332. allow_discovery: false
  333. # Shared secrets for automatic double puppeting.
  334. # See https://docs.mau.fi/bridges/general/double-puppeting.html for instructions.
  335. secrets: {{ matrix_mautrix_slack_double_puppet_secrets | to_json }}
  336. # End-to-bridge encryption support options.
  337. #
  338. # See https://docs.mau.fi/bridges/general/end-to-bridge-encryption.html for more info.
  339. encryption:
  340. # Whether to enable encryption at all. If false, the bridge will not function in encrypted rooms.
  341. allow: {{ matrix_mautrix_slack_bridge_encryption_allow | to_json }}
  342. # Whether to force-enable encryption in all bridged rooms.
  343. default: {{ matrix_mautrix_slack_bridge_encryption_default | to_json }}
  344. # Whether to require all messages to be encrypted and drop any unencrypted messages.
  345. require: false
  346. # Whether to use MSC2409/MSC3202 instead of /sync long polling for receiving encryption-related data.
  347. # This option is not yet compatible with standard Matrix servers like Synapse and should not be used.
  348. appservice: false
  349. # Whether to use MSC4190 instead of appservice login to create the bridge bot device.
  350. # Requires the homeserver to support MSC4190 and the device masquerading parts of MSC3202.
  351. # Only relevant when using end-to-bridge encryption, required when using encryption with next-gen auth (MSC3861).
  352. # Changing this option requires updating the appservice registration file.
  353. msc4190: {{ matrix_mautrix_slack_msc4190_enabled | to_json }}
  354. # Enable key sharing? If enabled, key requests for rooms where users are in will be fulfilled.
  355. # You must use a client that supports requesting keys from other users to use this feature.
  356. allow_key_sharing: {{ matrix_mautrix_slack_bridge_encryption_key_sharing_allow | to_json }}
  357. # Pickle key for encrypting encryption keys in the bridge database.
  358. # If set to generate, a random key will be generated.
  359. pickle_key: {{ matrix_mautrix_slack_bridge_encryption_pickle_key | to_json }}
  360. # Options for deleting megolm sessions from the bridge.
  361. delete_keys:
  362. # Beeper-specific: delete outbound sessions when hungryserv confirms
  363. # that the user has uploaded the key to key backup.
  364. delete_outbound_on_ack: false
  365. # Don't store outbound sessions in the inbound table.
  366. dont_store_outbound: false
  367. # Ratchet megolm sessions forward after decrypting messages.
  368. ratchet_on_decrypt: false
  369. # Delete fully used keys (index >= max_messages) after decrypting messages.
  370. delete_fully_used_on_decrypt: false
  371. # Delete previous megolm sessions from same device when receiving a new one.
  372. delete_prev_on_new_session: false
  373. # Delete megolm sessions received from a device when the device is deleted.
  374. delete_on_device_delete: false
  375. # Periodically delete megolm sessions when 2x max_age has passed since receiving the session.
  376. periodically_delete_expired: false
  377. # Delete inbound megolm sessions that don't have the received_at field used for
  378. # automatic ratcheting and expired session deletion. This is meant as a migration
  379. # to delete old keys prior to the bridge update.
  380. delete_outdated_inbound: false
  381. # What level of device verification should be required from users?
  382. #
  383. # Valid levels:
  384. # unverified - Send keys to all device in the room.
  385. # cross-signed-untrusted - Require valid cross-signing, but trust all cross-signing keys.
  386. # cross-signed-tofu - Require valid cross-signing, trust cross-signing keys on first use (and reject changes).
  387. # cross-signed-verified - Require valid cross-signing, plus a valid user signature from the bridge bot.
  388. # Note that creating user signatures from the bridge bot is not currently possible.
  389. # verified - Require manual per-device verification
  390. # (currently only possible by modifying the `trust` column in the `crypto_device` database table).
  391. verification_levels:
  392. # Minimum level for which the bridge should send keys to when bridging messages from the remote network to Matrix.
  393. receive: unverified
  394. # Minimum level that the bridge should accept for incoming Matrix messages.
  395. send: unverified
  396. # Minimum level that the bridge should require for accepting key requests.
  397. share: cross-signed-tofu
  398. # Options for Megolm room key rotation. These options allow you to configure the m.room.encryption event content.
  399. # See https://spec.matrix.org/v1.10/client-server-api/#mroomencryption for more information about that event.
  400. rotation:
  401. # Enable custom Megolm room key rotation settings. Note that these
  402. # settings will only apply to rooms created after this option is set.
  403. enable_custom: false
  404. # The maximum number of milliseconds a session should be used
  405. # before changing it. The Matrix spec recommends 604800000 (a week)
  406. # as the default.
  407. milliseconds: 604800000
  408. # The maximum number of messages that should be sent with a given a
  409. # session before changing it. The Matrix spec recommends 100 as the
  410. # default.
  411. messages: 100
  412. # Disable rotating keys when a user's devices change?
  413. # You should not enable this option unless you understand all the implications.
  414. disable_device_change_key_rotation: false
  415. # Logging config. See https://github.com/tulir/zeroconfig for details.
  416. logging:
  417. min_level: {{ matrix_mautrix_slack_logging_level | to_json }}
  418. writers:
  419. - type: stdout
  420. format: pretty-colored