25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

2866 satır
101 KiB

  1. # This file is maintained as an up-to-date snapshot of the default
  2. # homeserver.yaml configuration generated by Synapse.
  3. #
  4. # It is intended to act as a reference for the default configuration,
  5. # helping admins keep track of new options and other changes, and compare
  6. # their configs with the current default. As such, many of the actual
  7. # config values shown are placeholders.
  8. #
  9. # It is *not* intended to be copied and used as the basis for a real
  10. # homeserver.yaml. Instead, if you are starting from scratch, please generate
  11. # a fresh config using Synapse by following the instructions in INSTALL.md.
  12. # Configuration options that take a time period can be set using a number
  13. # followed by a letter. Letters have the following meanings:
  14. # s = second
  15. # m = minute
  16. # h = hour
  17. # d = day
  18. # w = week
  19. # y = year
  20. # For example, setting redaction_retention_period: 5m would remove redacted
  21. # messages from the database after 5 minutes, rather than 5 months.
  22. ################################################################################
  23. # Configuration file for Synapse.
  24. #
  25. # This is a YAML file: see [1] for a quick introduction. Note in particular
  26. # that *indentation is important*: all the elements of a list or dictionary
  27. # should have the same indentation.
  28. #
  29. # [1] https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html
  30. ## Modules ##
  31. # Server admins can expand Synapse's functionality with external modules.
  32. #
  33. # See https://matrix-org.github.io/synapse/latest/modules.html for more
  34. # documentation on how to configure or create custom modules for Synapse.
  35. #
  36. modules:
  37. # - module: my_super_module.MySuperClass
  38. # config:
  39. # do_thing: true
  40. # - module: my_other_super_module.SomeClass
  41. # config: {}
  42. ## Server ##
  43. # The public-facing domain of the server
  44. #
  45. # The server_name name will appear at the end of usernames and room addresses
  46. # created on this server. For example if the server_name was example.com,
  47. # usernames on this server would be in the format @user:example.com
  48. #
  49. # In most cases you should avoid using a matrix specific subdomain such as
  50. # matrix.example.com or synapse.example.com as the server_name for the same
  51. # reasons you wouldn't use user@email.example.com as your email address.
  52. # See https://matrix-org.github.io/synapse/latest/delegate.html
  53. # for information on how to host Synapse on a subdomain while preserving
  54. # a clean server_name.
  55. #
  56. # The server_name cannot be changed later so it is important to
  57. # configure this correctly before you start Synapse. It should be all
  58. # lowercase and may contain an explicit port.
  59. # Examples: matrix.org, localhost:8080
  60. #
  61. server_name: "SERVERNAME"
  62. # When running as a daemon, the file to store the pid in
  63. #
  64. pid_file: DATADIR/homeserver.pid
  65. # The absolute URL to the web client which /_matrix/client will redirect
  66. # to if 'webclient' is configured under the 'listeners' configuration.
  67. #
  68. # This option can be also set to the filesystem path to the web client
  69. # which will be served at /_matrix/client/ if 'webclient' is configured
  70. # under the 'listeners' configuration, however this is a security risk:
  71. # https://github.com/matrix-org/synapse#security-note
  72. #
  73. #web_client_location: https://riot.example.com/
  74. # The public-facing base URL that clients use to access this Homeserver (not
  75. # including _matrix/...). This is the same URL a user might enter into the
  76. # 'Custom Homeserver URL' field on their client. If you use Synapse with a
  77. # reverse proxy, this should be the URL to reach Synapse via the proxy.
  78. # Otherwise, it should be the URL to reach Synapse's client HTTP listener (see
  79. # 'listeners' below).
  80. #
  81. #public_baseurl: https://example.com/
  82. # Set the soft limit on the number of file descriptors synapse can use
  83. # Zero is used to indicate synapse should set the soft limit to the
  84. # hard limit.
  85. #
  86. #soft_file_limit: 0
  87. # Presence tracking allows users to see the state (e.g online/offline)
  88. # of other local and remote users.
  89. #
  90. presence:
  91. # Uncomment to disable presence tracking on this homeserver. This option
  92. # replaces the previous top-level 'use_presence' option.
  93. #
  94. #enabled: false
  95. # Presence routers are third-party modules that can specify additional logic
  96. # to where presence updates from users are routed.
  97. #
  98. presence_router:
  99. # The custom module's class. Uncomment to use a custom presence router module.
  100. #
  101. #module: "my_custom_router.PresenceRouter"
  102. # Configuration options of the custom module. Refer to your module's
  103. # documentation for available options.
  104. #
  105. #config:
  106. # example_option: 'something'
  107. # Whether to require authentication to retrieve profile data (avatars,
  108. # display names) of other users through the client API. Defaults to
  109. # 'false'. Note that profile data is also available via the federation
  110. # API, unless allow_profile_lookup_over_federation is set to false.
  111. #
  112. #require_auth_for_profile_requests: true
  113. # Uncomment to require a user to share a room with another user in order
  114. # to retrieve their profile information. Only checked on Client-Server
  115. # requests. Profile requests from other servers should be checked by the
  116. # requesting server. Defaults to 'false'.
  117. #
  118. #limit_profile_requests_to_users_who_share_rooms: true
  119. # Uncomment to prevent a user's profile data from being retrieved and
  120. # displayed in a room until they have joined it. By default, a user's
  121. # profile data is included in an invite event, regardless of the values
  122. # of the above two settings, and whether or not the users share a server.
  123. # Defaults to 'true'.
  124. #
  125. #include_profile_data_on_invite: false
  126. # If set to 'true', removes the need for authentication to access the server's
  127. # public rooms directory through the client API, meaning that anyone can
  128. # query the room directory. Defaults to 'false'.
  129. #
  130. #allow_public_rooms_without_auth: true
  131. # If set to 'true', allows any other homeserver to fetch the server's public
  132. # rooms directory via federation. Defaults to 'false'.
  133. #
  134. #allow_public_rooms_over_federation: true
  135. # The default room version for newly created rooms.
  136. #
  137. # Known room versions are listed here:
  138. # https://matrix.org/docs/spec/#complete-list-of-room-versions
  139. #
  140. # For example, for room version 1, default_room_version should be set
  141. # to "1".
  142. #
  143. #default_room_version: "6"
  144. # The GC threshold parameters to pass to `gc.set_threshold`, if defined
  145. #
  146. #gc_thresholds: [700, 10, 10]
  147. # The minimum time in seconds between each GC for a generation, regardless of
  148. # the GC thresholds. This ensures that we don't do GC too frequently.
  149. #
  150. # A value of `[1s, 10s, 30s]` indicates that a second must pass between consecutive
  151. # generation 0 GCs, etc.
  152. #
  153. # Defaults to `[1s, 10s, 30s]`.
  154. #
  155. #gc_min_interval: [0.5s, 30s, 1m]
  156. # Set the limit on the returned events in the timeline in the get
  157. # and sync operations. The default value is 100. -1 means no upper limit.
  158. #
  159. # Uncomment the following to increase the limit to 5000.
  160. #
  161. #filter_timeline_limit: 5000
  162. # Whether room invites to users on this server should be blocked
  163. # (except those sent by local server admins). The default is False.
  164. #
  165. #block_non_admin_invites: true
  166. # Room searching
  167. #
  168. # If disabled, new messages will not be indexed for searching and users
  169. # will receive errors when searching for messages. Defaults to enabled.
  170. #
  171. #enable_search: false
  172. # Prevent outgoing requests from being sent to the following blacklisted IP address
  173. # CIDR ranges. If this option is not specified then it defaults to private IP
  174. # address ranges (see the example below).
  175. #
  176. # The blacklist applies to the outbound requests for federation, identity servers,
  177. # push servers, and for checking key validity for third-party invite events.
  178. #
  179. # (0.0.0.0 and :: are always blacklisted, whether or not they are explicitly
  180. # listed here, since they correspond to unroutable addresses.)
  181. #
  182. # This option replaces federation_ip_range_blacklist in Synapse v1.25.0.
  183. #
  184. #ip_range_blacklist:
  185. # - '127.0.0.0/8'
  186. # - '10.0.0.0/8'
  187. # - '172.16.0.0/12'
  188. # - '192.168.0.0/16'
  189. # - '100.64.0.0/10'
  190. # - '192.0.0.0/24'
  191. # - '169.254.0.0/16'
  192. # - '192.88.99.0/24'
  193. # - '198.18.0.0/15'
  194. # - '192.0.2.0/24'
  195. # - '198.51.100.0/24'
  196. # - '203.0.113.0/24'
  197. # - '224.0.0.0/4'
  198. # - '::1/128'
  199. # - 'fe80::/10'
  200. # - 'fc00::/7'
  201. # - '2001:db8::/32'
  202. # - 'ff00::/8'
  203. # - 'fec0::/10'
  204. # List of IP address CIDR ranges that should be allowed for federation,
  205. # identity servers, push servers, and for checking key validity for
  206. # third-party invite events. This is useful for specifying exceptions to
  207. # wide-ranging blacklisted target IP ranges - e.g. for communication with
  208. # a push server only visible in your network.
  209. #
  210. # This whitelist overrides ip_range_blacklist and defaults to an empty
  211. # list.
  212. #
  213. #ip_range_whitelist:
  214. # - '192.168.1.1'
  215. # List of ports that Synapse should listen on, their purpose and their
  216. # configuration.
  217. #
  218. # Options for each listener include:
  219. #
  220. # port: the TCP port to bind to
  221. #
  222. # bind_addresses: a list of local addresses to listen on. The default is
  223. # 'all local interfaces'.
  224. #
  225. # type: the type of listener. Normally 'http', but other valid options are:
  226. # 'manhole' (see https://matrix-org.github.io/synapse/latest/manhole.html),
  227. # 'metrics' (see https://matrix-org.github.io/synapse/latest/metrics-howto.html),
  228. # 'replication' (see https://matrix-org.github.io/synapse/latest/workers.html).
  229. #
  230. # tls: set to true to enable TLS for this listener. Will use the TLS
  231. # key/cert specified in tls_private_key_path / tls_certificate_path.
  232. #
  233. # x_forwarded: Only valid for an 'http' listener. Set to true to use the
  234. # X-Forwarded-For header as the client IP. Useful when Synapse is
  235. # behind a reverse-proxy.
  236. #
  237. # resources: Only valid for an 'http' listener. A list of resources to host
  238. # on this port. Options for each resource are:
  239. #
  240. # names: a list of names of HTTP resources. See below for a list of
  241. # valid resource names.
  242. #
  243. # compress: set to true to enable HTTP compression for this resource.
  244. #
  245. # additional_resources: Only valid for an 'http' listener. A map of
  246. # additional endpoints which should be loaded via dynamic modules.
  247. #
  248. # Valid resource names are:
  249. #
  250. # client: the client-server API (/_matrix/client), and the synapse admin
  251. # API (/_synapse/admin). Also implies 'media' and 'static'.
  252. #
  253. # consent: user consent forms (/_matrix/consent).
  254. # See https://matrix-org.github.io/synapse/latest/consent_tracking.html.
  255. #
  256. # federation: the server-server API (/_matrix/federation). Also implies
  257. # 'media', 'keys', 'openid'
  258. #
  259. # keys: the key discovery API (/_matrix/keys).
  260. #
  261. # media: the media API (/_matrix/media).
  262. #
  263. # metrics: the metrics interface.
  264. # See https://matrix-org.github.io/synapse/latest/metrics-howto.html.
  265. #
  266. # openid: OpenID authentication.
  267. #
  268. # replication: the HTTP replication API (/_synapse/replication).
  269. # See https://matrix-org.github.io/synapse/latest/workers.html.
  270. #
  271. # static: static resources under synapse/static (/_matrix/static). (Mostly
  272. # useful for 'fallback authentication'.)
  273. #
  274. # webclient: A web client. Requires web_client_location to be set.
  275. #
  276. listeners:
  277. # TLS-enabled listener: for when matrix traffic is sent directly to synapse.
  278. #
  279. # Disabled by default. To enable it, uncomment the following. (Note that you
  280. # will also need to give Synapse a TLS key and certificate: see the TLS section
  281. # below.)
  282. #
  283. #- port: 8448
  284. # type: http
  285. # tls: true
  286. # resources:
  287. # - names: [client, federation]
  288. # Unsecure HTTP listener: for when matrix traffic passes through a reverse proxy
  289. # that unwraps TLS.
  290. #
  291. # If you plan to use a reverse proxy, please see
  292. # https://matrix-org.github.io/synapse/latest/reverse_proxy.html.
  293. #
  294. - port: 8008
  295. tls: false
  296. type: http
  297. x_forwarded: true
  298. bind_addresses: ['::1', '127.0.0.1']
  299. resources:
  300. - names: [client, federation]
  301. compress: false
  302. # example additional_resources:
  303. #
  304. #additional_resources:
  305. # "/_matrix/my/custom/endpoint":
  306. # module: my_module.CustomRequestHandler
  307. # config: {}
  308. # Turn on the twisted ssh manhole service on localhost on the given
  309. # port.
  310. #
  311. #- port: 9000
  312. # bind_addresses: ['::1', '127.0.0.1']
  313. # type: manhole
  314. # Forward extremities can build up in a room due to networking delays between
  315. # homeservers. Once this happens in a large room, calculation of the state of
  316. # that room can become quite expensive. To mitigate this, once the number of
  317. # forward extremities reaches a given threshold, Synapse will send an
  318. # org.matrix.dummy_event event, which will reduce the forward extremities
  319. # in the room.
  320. #
  321. # This setting defines the threshold (i.e. number of forward extremities in the
  322. # room) at which dummy events are sent. The default value is 10.
  323. #
  324. #dummy_events_threshold: 5
  325. ## Homeserver blocking ##
  326. # How to reach the server admin, used in ResourceLimitError
  327. #
  328. #admin_contact: 'mailto:admin@server.com'
  329. # Global blocking
  330. #
  331. #hs_disabled: false
  332. #hs_disabled_message: 'Human readable reason for why the HS is blocked'
  333. # Monthly Active User Blocking
  334. #
  335. # Used in cases where the admin or server owner wants to limit to the
  336. # number of monthly active users.
  337. #
  338. # 'limit_usage_by_mau' disables/enables monthly active user blocking. When
  339. # enabled and a limit is reached the server returns a 'ResourceLimitError'
  340. # with error type Codes.RESOURCE_LIMIT_EXCEEDED
  341. #
  342. # 'max_mau_value' is the hard limit of monthly active users above which
  343. # the server will start blocking user actions.
  344. #
  345. # 'mau_trial_days' is a means to add a grace period for active users. It
  346. # means that users must be active for this number of days before they
  347. # can be considered active and guards against the case where lots of users
  348. # sign up in a short space of time never to return after their initial
  349. # session.
  350. #
  351. # 'mau_limit_alerting' is a means of limiting client side alerting
  352. # should the mau limit be reached. This is useful for small instances
  353. # where the admin has 5 mau seats (say) for 5 specific people and no
  354. # interest increasing the mau limit further. Defaults to True, which
  355. # means that alerting is enabled
  356. #
  357. #limit_usage_by_mau: false
  358. #max_mau_value: 50
  359. #mau_trial_days: 2
  360. #mau_limit_alerting: false
  361. # If enabled, the metrics for the number of monthly active users will
  362. # be populated, however no one will be limited. If limit_usage_by_mau
  363. # is true, this is implied to be true.
  364. #
  365. #mau_stats_only: false
  366. # Sometimes the server admin will want to ensure certain accounts are
  367. # never blocked by mau checking. These accounts are specified here.
  368. #
  369. #mau_limit_reserved_threepids:
  370. # - medium: 'email'
  371. # address: 'reserved_user@example.com'
  372. # Used by phonehome stats to group together related servers.
  373. #server_context: context
  374. # Resource-constrained homeserver settings
  375. #
  376. # When this is enabled, the room "complexity" will be checked before a user
  377. # joins a new remote room. If it is above the complexity limit, the server will
  378. # disallow joining, or will instantly leave.
  379. #
  380. # Room complexity is an arbitrary measure based on factors such as the number of
  381. # users in the room.
  382. #
  383. limit_remote_rooms:
  384. # Uncomment to enable room complexity checking.
  385. #
  386. #enabled: true
  387. # the limit above which rooms cannot be joined. The default is 1.0.
  388. #
  389. #complexity: 0.5
  390. # override the error which is returned when the room is too complex.
  391. #
  392. #complexity_error: "This room is too complex."
  393. # allow server admins to join complex rooms. Default is false.
  394. #
  395. #admins_can_join: true
  396. # Whether to require a user to be in the room to add an alias to it.
  397. # Defaults to 'true'.
  398. #
  399. #require_membership_for_aliases: false
  400. # Whether to allow per-room membership profiles through the send of membership
  401. # events with profile information that differ from the target's global profile.
  402. # Defaults to 'true'.
  403. #
  404. #allow_per_room_profiles: false
  405. # How long to keep redacted events in unredacted form in the database. After
  406. # this period redacted events get replaced with their redacted form in the DB.
  407. #
  408. # Defaults to `7d`. Set to `null` to disable.
  409. #
  410. #redaction_retention_period: 28d
  411. # How long to track users' last seen time and IPs in the database.
  412. #
  413. # Defaults to `28d`. Set to `null` to disable clearing out of old rows.
  414. #
  415. #user_ips_max_age: 14d
  416. # Message retention policy at the server level.
  417. #
  418. # Room admins and mods can define a retention period for their rooms using the
  419. # 'm.room.retention' state event, and server admins can cap this period by setting
  420. # the 'allowed_lifetime_min' and 'allowed_lifetime_max' config options.
  421. #
  422. # If this feature is enabled, Synapse will regularly look for and purge events
  423. # which are older than the room's maximum retention period. Synapse will also
  424. # filter events received over federation so that events that should have been
  425. # purged are ignored and not stored again.
  426. #
  427. retention:
  428. # The message retention policies feature is disabled by default. Uncomment the
  429. # following line to enable it.
  430. #
  431. #enabled: true
  432. # Default retention policy. If set, Synapse will apply it to rooms that lack the
  433. # 'm.room.retention' state event. Currently, the value of 'min_lifetime' doesn't
  434. # matter much because Synapse doesn't take it into account yet.
  435. #
  436. #default_policy:
  437. # min_lifetime: 1d
  438. # max_lifetime: 1y
  439. # Retention policy limits. If set, and the state of a room contains a
  440. # 'm.room.retention' event in its state which contains a 'min_lifetime' or a
  441. # 'max_lifetime' that's out of these bounds, Synapse will cap the room's policy
  442. # to these limits when running purge jobs.
  443. #
  444. #allowed_lifetime_min: 1d
  445. #allowed_lifetime_max: 1y
  446. # Server admins can define the settings of the background jobs purging the
  447. # events which lifetime has expired under the 'purge_jobs' section.
  448. #
  449. # If no configuration is provided, a single job will be set up to delete expired
  450. # events in every room daily.
  451. #
  452. # Each job's configuration defines which range of message lifetimes the job
  453. # takes care of. For example, if 'shortest_max_lifetime' is '2d' and
  454. # 'longest_max_lifetime' is '3d', the job will handle purging expired events in
  455. # rooms whose state defines a 'max_lifetime' that's both higher than 2 days, and
  456. # lower than or equal to 3 days. Both the minimum and the maximum value of a
  457. # range are optional, e.g. a job with no 'shortest_max_lifetime' and a
  458. # 'longest_max_lifetime' of '3d' will handle every room with a retention policy
  459. # which 'max_lifetime' is lower than or equal to three days.
  460. #
  461. # The rationale for this per-job configuration is that some rooms might have a
  462. # retention policy with a low 'max_lifetime', where history needs to be purged
  463. # of outdated messages on a more frequent basis than for the rest of the rooms
  464. # (e.g. every 12h), but not want that purge to be performed by a job that's
  465. # iterating over every room it knows, which could be heavy on the server.
  466. #
  467. # If any purge job is configured, it is strongly recommended to have at least
  468. # a single job with neither 'shortest_max_lifetime' nor 'longest_max_lifetime'
  469. # set, or one job without 'shortest_max_lifetime' and one job without
  470. # 'longest_max_lifetime' set. Otherwise some rooms might be ignored, even if
  471. # 'allowed_lifetime_min' and 'allowed_lifetime_max' are set, because capping a
  472. # room's policy to these values is done after the policies are retrieved from
  473. # Synapse's database (which is done using the range specified in a purge job's
  474. # configuration).
  475. #
  476. #purge_jobs:
  477. # - longest_max_lifetime: 3d
  478. # interval: 12h
  479. # - shortest_max_lifetime: 3d
  480. # interval: 1d
  481. # Inhibits the /requestToken endpoints from returning an error that might leak
  482. # information about whether an e-mail address is in use or not on this
  483. # homeserver.
  484. # Note that for some endpoints the error situation is the e-mail already being
  485. # used, and for others the error is entering the e-mail being unused.
  486. # If this option is enabled, instead of returning an error, these endpoints will
  487. # act as if no error happened and return a fake session ID ('sid') to clients.
  488. #
  489. #request_token_inhibit_3pid_errors: true
  490. # A list of domains that the domain portion of 'next_link' parameters
  491. # must match.
  492. #
  493. # This parameter is optionally provided by clients while requesting
  494. # validation of an email or phone number, and maps to a link that
  495. # users will be automatically redirected to after validation
  496. # succeeds. Clients can make use this parameter to aid the validation
  497. # process.
  498. #
  499. # The whitelist is applied whether the homeserver or an
  500. # identity server is handling validation.
  501. #
  502. # The default value is no whitelist functionality; all domains are
  503. # allowed. Setting this value to an empty list will instead disallow
  504. # all domains.
  505. #
  506. #next_link_domain_whitelist: ["matrix.org"]
  507. ## TLS ##
  508. # PEM-encoded X509 certificate for TLS.
  509. # This certificate, as of Synapse 1.0, will need to be a valid and verifiable
  510. # certificate, signed by a recognised Certificate Authority.
  511. #
  512. # Be sure to use a `.pem` file that includes the full certificate chain including
  513. # any intermediate certificates (for instance, if using certbot, use
  514. # `fullchain.pem` as your certificate, not `cert.pem`).
  515. #
  516. #tls_certificate_path: "CONFDIR/SERVERNAME.tls.crt"
  517. # PEM-encoded private key for TLS
  518. #
  519. #tls_private_key_path: "CONFDIR/SERVERNAME.tls.key"
  520. # Whether to verify TLS server certificates for outbound federation requests.
  521. #
  522. # Defaults to `true`. To disable certificate verification, uncomment the
  523. # following line.
  524. #
  525. #federation_verify_certificates: false
  526. # The minimum TLS version that will be used for outbound federation requests.
  527. #
  528. # Defaults to `1`. Configurable to `1`, `1.1`, `1.2`, or `1.3`. Note
  529. # that setting this value higher than `1.2` will prevent federation to most
  530. # of the public Matrix network: only configure it to `1.3` if you have an
  531. # entirely private federation setup and you can ensure TLS 1.3 support.
  532. #
  533. #federation_client_minimum_tls_version: 1.2
  534. # Skip federation certificate verification on the following whitelist
  535. # of domains.
  536. #
  537. # This setting should only be used in very specific cases, such as
  538. # federation over Tor hidden services and similar. For private networks
  539. # of homeservers, you likely want to use a private CA instead.
  540. #
  541. # Only effective if federation_verify_certicates is `true`.
  542. #
  543. #federation_certificate_verification_whitelist:
  544. # - lon.example.com
  545. # - *.domain.com
  546. # - *.onion
  547. # List of custom certificate authorities for federation traffic.
  548. #
  549. # This setting should only normally be used within a private network of
  550. # homeservers.
  551. #
  552. # Note that this list will replace those that are provided by your
  553. # operating environment. Certificates must be in PEM format.
  554. #
  555. #federation_custom_ca_list:
  556. # - myCA1.pem
  557. # - myCA2.pem
  558. # - myCA3.pem
  559. ## Federation ##
  560. # Restrict federation to the following whitelist of domains.
  561. # N.B. we recommend also firewalling your federation listener to limit
  562. # inbound federation traffic as early as possible, rather than relying
  563. # purely on this application-layer restriction. If not specified, the
  564. # default is to whitelist everything.
  565. #
  566. #federation_domain_whitelist:
  567. # - lon.example.com
  568. # - nyc.example.com
  569. # - syd.example.com
  570. # Report prometheus metrics on the age of PDUs being sent to and received from
  571. # the following domains. This can be used to give an idea of "delay" on inbound
  572. # and outbound federation, though be aware that any delay can be due to problems
  573. # at either end or with the intermediate network.
  574. #
  575. # By default, no domains are monitored in this way.
  576. #
  577. #federation_metrics_domains:
  578. # - matrix.org
  579. # - example.com
  580. # Uncomment to disable profile lookup over federation. By default, the
  581. # Federation API allows other homeservers to obtain profile data of any user
  582. # on this homeserver. Defaults to 'true'.
  583. #
  584. #allow_profile_lookup_over_federation: false
  585. # Uncomment to disable device display name lookup over federation. By default, the
  586. # Federation API allows other homeservers to obtain device display names of any user
  587. # on this homeserver. Defaults to 'true'.
  588. #
  589. #allow_device_name_lookup_over_federation: false
  590. ## Caching ##
  591. # Caching can be configured through the following options.
  592. #
  593. # A cache 'factor' is a multiplier that can be applied to each of
  594. # Synapse's caches in order to increase or decrease the maximum
  595. # number of entries that can be stored.
  596. # The number of events to cache in memory. Not affected by
  597. # caches.global_factor.
  598. #
  599. #event_cache_size: 10K
  600. caches:
  601. # Controls the global cache factor, which is the default cache factor
  602. # for all caches if a specific factor for that cache is not otherwise
  603. # set.
  604. #
  605. # This can also be set by the "SYNAPSE_CACHE_FACTOR" environment
  606. # variable. Setting by environment variable takes priority over
  607. # setting through the config file.
  608. #
  609. # Defaults to 0.5, which will half the size of all caches.
  610. #
  611. #global_factor: 1.0
  612. # A dictionary of cache name to cache factor for that individual
  613. # cache. Overrides the global cache factor for a given cache.
  614. #
  615. # These can also be set through environment variables comprised
  616. # of "SYNAPSE_CACHE_FACTOR_" + the name of the cache in capital
  617. # letters and underscores. Setting by environment variable
  618. # takes priority over setting through the config file.
  619. # Ex. SYNAPSE_CACHE_FACTOR_GET_USERS_WHO_SHARE_ROOM_WITH_USER=2.0
  620. #
  621. # Some caches have '*' and other characters that are not
  622. # alphanumeric or underscores. These caches can be named with or
  623. # without the special characters stripped. For example, to specify
  624. # the cache factor for `*stateGroupCache*` via an environment
  625. # variable would be `SYNAPSE_CACHE_FACTOR_STATEGROUPCACHE=2.0`.
  626. #
  627. per_cache_factors:
  628. #get_users_who_share_room_with_user: 2.0
  629. # Controls how long an entry can be in a cache without having been
  630. # accessed before being evicted. Defaults to None, which means
  631. # entries are never evicted based on time.
  632. #
  633. #expiry_time: 30m
  634. ## Database ##
  635. # The 'database' setting defines the database that synapse uses to store all of
  636. # its data.
  637. #
  638. # 'name' gives the database engine to use: either 'sqlite3' (for SQLite) or
  639. # 'psycopg2' (for PostgreSQL).
  640. #
  641. # 'args' gives options which are passed through to the database engine,
  642. # except for options starting 'cp_', which are used to configure the Twisted
  643. # connection pool. For a reference to valid arguments, see:
  644. # * for sqlite: https://docs.python.org/3/library/sqlite3.html#sqlite3.connect
  645. # * for postgres: https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-PARAMKEYWORDS
  646. # * for the connection pool: https://twistedmatrix.com/documents/current/api/twisted.enterprise.adbapi.ConnectionPool.html#__init__
  647. #
  648. #
  649. # Example SQLite configuration:
  650. #
  651. #database:
  652. # name: sqlite3
  653. # args:
  654. # database: /path/to/homeserver.db
  655. #
  656. #
  657. # Example Postgres configuration:
  658. #
  659. #database:
  660. # name: psycopg2
  661. # args:
  662. # user: synapse_user
  663. # password: secretpassword
  664. # database: synapse
  665. # host: localhost
  666. # port: 5432
  667. # cp_min: 5
  668. # cp_max: 10
  669. #
  670. # For more information on using Synapse with Postgres,
  671. # see https://matrix-org.github.io/synapse/latest/postgres.html.
  672. #
  673. database:
  674. name: sqlite3
  675. args:
  676. database: DATADIR/homeserver.db
  677. ## Logging ##
  678. # A yaml python logging config file as described by
  679. # https://docs.python.org/3.7/library/logging.config.html#configuration-dictionary-schema
  680. #
  681. log_config: "CONFDIR/SERVERNAME.log.config"
  682. ## Ratelimiting ##
  683. # Ratelimiting settings for client actions (registration, login, messaging).
  684. #
  685. # Each ratelimiting configuration is made of two parameters:
  686. # - per_second: number of requests a client can send per second.
  687. # - burst_count: number of requests a client can send before being throttled.
  688. #
  689. # Synapse currently uses the following configurations:
  690. # - one for messages that ratelimits sending based on the account the client
  691. # is using
  692. # - one for registration that ratelimits registration requests based on the
  693. # client's IP address.
  694. # - one for login that ratelimits login requests based on the client's IP
  695. # address.
  696. # - one for login that ratelimits login requests based on the account the
  697. # client is attempting to log into.
  698. # - one for login that ratelimits login requests based on the account the
  699. # client is attempting to log into, based on the amount of failed login
  700. # attempts for this account.
  701. # - one for ratelimiting redactions by room admins. If this is not explicitly
  702. # set then it uses the same ratelimiting as per rc_message. This is useful
  703. # to allow room admins to deal with abuse quickly.
  704. # - two for ratelimiting number of rooms a user can join, "local" for when
  705. # users are joining rooms the server is already in (this is cheap) vs
  706. # "remote" for when users are trying to join rooms not on the server (which
  707. # can be more expensive)
  708. # - one for ratelimiting how often a user or IP can attempt to validate a 3PID.
  709. # - two for ratelimiting how often invites can be sent in a room or to a
  710. # specific user.
  711. #
  712. # The defaults are as shown below.
  713. #
  714. #rc_message:
  715. # per_second: 0.2
  716. # burst_count: 10
  717. #
  718. #rc_registration:
  719. # per_second: 0.17
  720. # burst_count: 3
  721. #
  722. #rc_login:
  723. # address:
  724. # per_second: 0.17
  725. # burst_count: 3
  726. # account:
  727. # per_second: 0.17
  728. # burst_count: 3
  729. # failed_attempts:
  730. # per_second: 0.17
  731. # burst_count: 3
  732. #
  733. #rc_admin_redaction:
  734. # per_second: 1
  735. # burst_count: 50
  736. #
  737. #rc_joins:
  738. # local:
  739. # per_second: 0.1
  740. # burst_count: 10
  741. # remote:
  742. # per_second: 0.01
  743. # burst_count: 10
  744. #
  745. #rc_3pid_validation:
  746. # per_second: 0.003
  747. # burst_count: 5
  748. #
  749. #rc_invites:
  750. # per_room:
  751. # per_second: 0.3
  752. # burst_count: 10
  753. # per_user:
  754. # per_second: 0.003
  755. # burst_count: 5
  756. # Ratelimiting settings for incoming federation
  757. #
  758. # The rc_federation configuration is made up of the following settings:
  759. # - window_size: window size in milliseconds
  760. # - sleep_limit: number of federation requests from a single server in
  761. # a window before the server will delay processing the request.
  762. # - sleep_delay: duration in milliseconds to delay processing events
  763. # from remote servers by if they go over the sleep limit.
  764. # - reject_limit: maximum number of concurrent federation requests
  765. # allowed from a single server
  766. # - concurrent: number of federation requests to concurrently process
  767. # from a single server
  768. #
  769. # The defaults are as shown below.
  770. #
  771. #rc_federation:
  772. # window_size: 1000
  773. # sleep_limit: 10
  774. # sleep_delay: 500
  775. # reject_limit: 50
  776. # concurrent: 3
  777. # Target outgoing federation transaction frequency for sending read-receipts,
  778. # per-room.
  779. #
  780. # If we end up trying to send out more read-receipts, they will get buffered up
  781. # into fewer transactions.
  782. #
  783. #federation_rr_transactions_per_room_per_second: 50
  784. ## Media Store ##
  785. # Enable the media store service in the Synapse master. Uncomment the
  786. # following if you are using a separate media store worker.
  787. #
  788. #enable_media_repo: false
  789. # Directory where uploaded images and attachments are stored.
  790. #
  791. media_store_path: "DATADIR/media_store"
  792. # Media storage providers allow media to be stored in different
  793. # locations.
  794. #
  795. #media_storage_providers:
  796. # - module: file_system
  797. # # Whether to store newly uploaded local files
  798. # store_local: false
  799. # # Whether to store newly downloaded remote files
  800. # store_remote: false
  801. # # Whether to wait for successful storage for local uploads
  802. # store_synchronous: false
  803. # config:
  804. # directory: /mnt/some/other/directory
  805. # The largest allowed upload size in bytes
  806. #
  807. # If you are using a reverse proxy you may also need to set this value in
  808. # your reverse proxy's config. Notably Nginx has a small max body size by default.
  809. # See https://matrix-org.github.io/synapse/latest/reverse_proxy.html.
  810. #
  811. #max_upload_size: 50M
  812. # Maximum number of pixels that will be thumbnailed
  813. #
  814. #max_image_pixels: 32M
  815. # Whether to generate new thumbnails on the fly to precisely match
  816. # the resolution requested by the client. If true then whenever
  817. # a new resolution is requested by the client the server will
  818. # generate a new thumbnail. If false the server will pick a thumbnail
  819. # from a precalculated list.
  820. #
  821. #dynamic_thumbnails: false
  822. # List of thumbnails to precalculate when an image is uploaded.
  823. #
  824. #thumbnail_sizes:
  825. # - width: 32
  826. # height: 32
  827. # method: crop
  828. # - width: 96
  829. # height: 96
  830. # method: crop
  831. # - width: 320
  832. # height: 240
  833. # method: scale
  834. # - width: 640
  835. # height: 480
  836. # method: scale
  837. # - width: 800
  838. # height: 600
  839. # method: scale
  840. # Is the preview URL API enabled?
  841. #
  842. # 'false' by default: uncomment the following to enable it (and specify a
  843. # url_preview_ip_range_blacklist blacklist).
  844. #
  845. #url_preview_enabled: true
  846. # List of IP address CIDR ranges that the URL preview spider is denied
  847. # from accessing. There are no defaults: you must explicitly
  848. # specify a list for URL previewing to work. You should specify any
  849. # internal services in your network that you do not want synapse to try
  850. # to connect to, otherwise anyone in any Matrix room could cause your
  851. # synapse to issue arbitrary GET requests to your internal services,
  852. # causing serious security issues.
  853. #
  854. # (0.0.0.0 and :: are always blacklisted, whether or not they are explicitly
  855. # listed here, since they correspond to unroutable addresses.)
  856. #
  857. # This must be specified if url_preview_enabled is set. It is recommended that
  858. # you uncomment the following list as a starting point.
  859. #
  860. #url_preview_ip_range_blacklist:
  861. # - '127.0.0.0/8'
  862. # - '10.0.0.0/8'
  863. # - '172.16.0.0/12'
  864. # - '192.168.0.0/16'
  865. # - '100.64.0.0/10'
  866. # - '192.0.0.0/24'
  867. # - '169.254.0.0/16'
  868. # - '192.88.99.0/24'
  869. # - '198.18.0.0/15'
  870. # - '192.0.2.0/24'
  871. # - '198.51.100.0/24'
  872. # - '203.0.113.0/24'
  873. # - '224.0.0.0/4'
  874. # - '::1/128'
  875. # - 'fe80::/10'
  876. # - 'fc00::/7'
  877. # - '2001:db8::/32'
  878. # - 'ff00::/8'
  879. # - 'fec0::/10'
  880. # List of IP address CIDR ranges that the URL preview spider is allowed
  881. # to access even if they are specified in url_preview_ip_range_blacklist.
  882. # This is useful for specifying exceptions to wide-ranging blacklisted
  883. # target IP ranges - e.g. for enabling URL previews for a specific private
  884. # website only visible in your network.
  885. #
  886. #url_preview_ip_range_whitelist:
  887. # - '192.168.1.1'
  888. # Optional list of URL matches that the URL preview spider is
  889. # denied from accessing. You should use url_preview_ip_range_blacklist
  890. # in preference to this, otherwise someone could define a public DNS
  891. # entry that points to a private IP address and circumvent the blacklist.
  892. # This is more useful if you know there is an entire shape of URL that
  893. # you know that will never want synapse to try to spider.
  894. #
  895. # Each list entry is a dictionary of url component attributes as returned
  896. # by urlparse.urlsplit as applied to the absolute form of the URL. See
  897. # https://docs.python.org/2/library/urlparse.html#urlparse.urlsplit
  898. # The values of the dictionary are treated as an filename match pattern
  899. # applied to that component of URLs, unless they start with a ^ in which
  900. # case they are treated as a regular expression match. If all the
  901. # specified component matches for a given list item succeed, the URL is
  902. # blacklisted.
  903. #
  904. #url_preview_url_blacklist:
  905. # # blacklist any URL with a username in its URI
  906. # - username: '*'
  907. #
  908. # # blacklist all *.google.com URLs
  909. # - netloc: 'google.com'
  910. # - netloc: '*.google.com'
  911. #
  912. # # blacklist all plain HTTP URLs
  913. # - scheme: 'http'
  914. #
  915. # # blacklist http(s)://www.acme.com/foo
  916. # - netloc: 'www.acme.com'
  917. # path: '/foo'
  918. #
  919. # # blacklist any URL with a literal IPv4 address
  920. # - netloc: '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$'
  921. # The largest allowed URL preview spidering size in bytes
  922. #
  923. #max_spider_size: 10M
  924. # A list of values for the Accept-Language HTTP header used when
  925. # downloading webpages during URL preview generation. This allows
  926. # Synapse to specify the preferred languages that URL previews should
  927. # be in when communicating with remote servers.
  928. #
  929. # Each value is a IETF language tag; a 2-3 letter identifier for a
  930. # language, optionally followed by subtags separated by '-', specifying
  931. # a country or region variant.
  932. #
  933. # Multiple values can be provided, and a weight can be added to each by
  934. # using quality value syntax (;q=). '*' translates to any language.
  935. #
  936. # Defaults to "en".
  937. #
  938. # Example:
  939. #
  940. # url_preview_accept_language:
  941. # - en-UK
  942. # - en-US;q=0.9
  943. # - fr;q=0.8
  944. # - *;q=0.7
  945. #
  946. url_preview_accept_language:
  947. # - en
  948. ## Captcha ##
  949. # See docs/CAPTCHA_SETUP.md for full details of configuring this.
  950. # This homeserver's ReCAPTCHA public key. Must be specified if
  951. # enable_registration_captcha is enabled.
  952. #
  953. #recaptcha_public_key: "YOUR_PUBLIC_KEY"
  954. # This homeserver's ReCAPTCHA private key. Must be specified if
  955. # enable_registration_captcha is enabled.
  956. #
  957. #recaptcha_private_key: "YOUR_PRIVATE_KEY"
  958. # Uncomment to enable ReCaptcha checks when registering, preventing signup
  959. # unless a captcha is answered. Requires a valid ReCaptcha
  960. # public/private key. Defaults to 'false'.
  961. #
  962. #enable_registration_captcha: true
  963. # The API endpoint to use for verifying m.login.recaptcha responses.
  964. # Defaults to "https://www.recaptcha.net/recaptcha/api/siteverify".
  965. #
  966. #recaptcha_siteverify_api: "https://my.recaptcha.site"
  967. ## TURN ##
  968. # The public URIs of the TURN server to give to clients
  969. #
  970. #turn_uris: []
  971. # The shared secret used to compute passwords for the TURN server
  972. #
  973. #turn_shared_secret: "YOUR_SHARED_SECRET"
  974. # The Username and password if the TURN server needs them and
  975. # does not use a token
  976. #
  977. #turn_username: "TURNSERVER_USERNAME"
  978. #turn_password: "TURNSERVER_PASSWORD"
  979. # How long generated TURN credentials last
  980. #
  981. #turn_user_lifetime: 1h
  982. # Whether guests should be allowed to use the TURN server.
  983. # This defaults to True, otherwise VoIP will be unreliable for guests.
  984. # However, it does introduce a slight security risk as it allows users to
  985. # connect to arbitrary endpoints without having first signed up for a
  986. # valid account (e.g. by passing a CAPTCHA).
  987. #
  988. #turn_allow_guests: true
  989. ## Registration ##
  990. #
  991. # Registration can be rate-limited using the parameters in the "Ratelimiting"
  992. # section of this file.
  993. # Enable registration for new users.
  994. #
  995. #enable_registration: false
  996. # Time that a user's session remains valid for, after they log in.
  997. #
  998. # Note that this is not currently compatible with guest logins.
  999. #
  1000. # Note also that this is calculated at login time: changes are not applied
  1001. # retrospectively to users who have already logged in.
  1002. #
  1003. # By default, this is infinite.
  1004. #
  1005. #session_lifetime: 24h
  1006. # The user must provide all of the below types of 3PID when registering.
  1007. #
  1008. #registrations_require_3pid:
  1009. # - email
  1010. # - msisdn
  1011. # Explicitly disable asking for MSISDNs from the registration
  1012. # flow (overrides registrations_require_3pid if MSISDNs are set as required)
  1013. #
  1014. #disable_msisdn_registration: true
  1015. # Mandate that users are only allowed to associate certain formats of
  1016. # 3PIDs with accounts on this server.
  1017. #
  1018. #allowed_local_3pids:
  1019. # - medium: email
  1020. # pattern: '^[^@]+@matrix\.org$'
  1021. # - medium: email
  1022. # pattern: '^[^@]+@vector\.im$'
  1023. # - medium: msisdn
  1024. # pattern: '\+44'
  1025. # Enable 3PIDs lookup requests to identity servers from this server.
  1026. #
  1027. #enable_3pid_lookup: true
  1028. # If set, allows registration of standard or admin accounts by anyone who
  1029. # has the shared secret, even if registration is otherwise disabled.
  1030. #
  1031. #registration_shared_secret: <PRIVATE STRING>
  1032. # Set the number of bcrypt rounds used to generate password hash.
  1033. # Larger numbers increase the work factor needed to generate the hash.
  1034. # The default number is 12 (which equates to 2^12 rounds).
  1035. # N.B. that increasing this will exponentially increase the time required
  1036. # to register or login - e.g. 24 => 2^24 rounds which will take >20 mins.
  1037. #
  1038. #bcrypt_rounds: 12
  1039. # Allows users to register as guests without a password/email/etc, and
  1040. # participate in rooms hosted on this server which have been made
  1041. # accessible to anonymous users.
  1042. #
  1043. #allow_guest_access: false
  1044. # The identity server which we suggest that clients should use when users log
  1045. # in on this server.
  1046. #
  1047. # (By default, no suggestion is made, so it is left up to the client.
  1048. # This setting is ignored unless public_baseurl is also set.)
  1049. #
  1050. #default_identity_server: https://matrix.org
  1051. # Handle threepid (email/phone etc) registration and password resets through a set of
  1052. # *trusted* identity servers. Note that this allows the configured identity server to
  1053. # reset passwords for accounts!
  1054. #
  1055. # Be aware that if `email` is not set, and SMTP options have not been
  1056. # configured in the email config block, registration and user password resets via
  1057. # email will be globally disabled.
  1058. #
  1059. # Additionally, if `msisdn` is not set, registration and password resets via msisdn
  1060. # will be disabled regardless, and users will not be able to associate an msisdn
  1061. # identifier to their account. This is due to Synapse currently not supporting
  1062. # any method of sending SMS messages on its own.
  1063. #
  1064. # To enable using an identity server for operations regarding a particular third-party
  1065. # identifier type, set the value to the URL of that identity server as shown in the
  1066. # examples below.
  1067. #
  1068. # Servers handling the these requests must answer the `/requestToken` endpoints defined
  1069. # by the Matrix Identity Service API specification:
  1070. # https://matrix.org/docs/spec/identity_service/latest
  1071. #
  1072. # If a delegate is specified, the config option public_baseurl must also be filled out.
  1073. #
  1074. account_threepid_delegates:
  1075. #email: https://example.com # Delegate email sending to example.com
  1076. #msisdn: http://localhost:8090 # Delegate SMS sending to this local process
  1077. # Whether users are allowed to change their displayname after it has
  1078. # been initially set. Useful when provisioning users based on the
  1079. # contents of a third-party directory.
  1080. #
  1081. # Does not apply to server administrators. Defaults to 'true'
  1082. #
  1083. #enable_set_displayname: false
  1084. # Whether users are allowed to change their avatar after it has been
  1085. # initially set. Useful when provisioning users based on the contents
  1086. # of a third-party directory.
  1087. #
  1088. # Does not apply to server administrators. Defaults to 'true'
  1089. #
  1090. #enable_set_avatar_url: false
  1091. # Whether users can change the 3PIDs associated with their accounts
  1092. # (email address and msisdn).
  1093. #
  1094. # Defaults to 'true'
  1095. #
  1096. #enable_3pid_changes: false
  1097. # Users who register on this homeserver will automatically be joined
  1098. # to these rooms.
  1099. #
  1100. # By default, any room aliases included in this list will be created
  1101. # as a publicly joinable room when the first user registers for the
  1102. # homeserver. This behaviour can be customised with the settings below.
  1103. # If the room already exists, make certain it is a publicly joinable
  1104. # room. The join rule of the room must be set to 'public'.
  1105. #
  1106. #auto_join_rooms:
  1107. # - "#example:example.com"
  1108. # Where auto_join_rooms are specified, setting this flag ensures that the
  1109. # the rooms exist by creating them when the first user on the
  1110. # homeserver registers.
  1111. #
  1112. # By default the auto-created rooms are publicly joinable from any federated
  1113. # server. Use the autocreate_auto_join_rooms_federated and
  1114. # autocreate_auto_join_room_preset settings below to customise this behaviour.
  1115. #
  1116. # Setting to false means that if the rooms are not manually created,
  1117. # users cannot be auto-joined since they do not exist.
  1118. #
  1119. # Defaults to true. Uncomment the following line to disable automatically
  1120. # creating auto-join rooms.
  1121. #
  1122. #autocreate_auto_join_rooms: false
  1123. # Whether the auto_join_rooms that are auto-created are available via
  1124. # federation. Only has an effect if autocreate_auto_join_rooms is true.
  1125. #
  1126. # Note that whether a room is federated cannot be modified after
  1127. # creation.
  1128. #
  1129. # Defaults to true: the room will be joinable from other servers.
  1130. # Uncomment the following to prevent users from other homeservers from
  1131. # joining these rooms.
  1132. #
  1133. #autocreate_auto_join_rooms_federated: false
  1134. # The room preset to use when auto-creating one of auto_join_rooms. Only has an
  1135. # effect if autocreate_auto_join_rooms is true.
  1136. #
  1137. # This can be one of "public_chat", "private_chat", or "trusted_private_chat".
  1138. # If a value of "private_chat" or "trusted_private_chat" is used then
  1139. # auto_join_mxid_localpart must also be configured.
  1140. #
  1141. # Defaults to "public_chat", meaning that the room is joinable by anyone, including
  1142. # federated servers if autocreate_auto_join_rooms_federated is true (the default).
  1143. # Uncomment the following to require an invitation to join these rooms.
  1144. #
  1145. #autocreate_auto_join_room_preset: private_chat
  1146. # The local part of the user id which is used to create auto_join_rooms if
  1147. # autocreate_auto_join_rooms is true. If this is not provided then the
  1148. # initial user account that registers will be used to create the rooms.
  1149. #
  1150. # The user id is also used to invite new users to any auto-join rooms which
  1151. # are set to invite-only.
  1152. #
  1153. # It *must* be configured if autocreate_auto_join_room_preset is set to
  1154. # "private_chat" or "trusted_private_chat".
  1155. #
  1156. # Note that this must be specified in order for new users to be correctly
  1157. # invited to any auto-join rooms which have been set to invite-only (either
  1158. # at the time of creation or subsequently).
  1159. #
  1160. # Note that, if the room already exists, this user must be joined and
  1161. # have the appropriate permissions to invite new members.
  1162. #
  1163. #auto_join_mxid_localpart: system
  1164. # When auto_join_rooms is specified, setting this flag to false prevents
  1165. # guest accounts from being automatically joined to the rooms.
  1166. #
  1167. # Defaults to true.
  1168. #
  1169. #auto_join_rooms_for_guests: false
  1170. ## Account Validity ##
  1171. # Optional account validity configuration. This allows for accounts to be denied
  1172. # any request after a given period.
  1173. #
  1174. # Once this feature is enabled, Synapse will look for registered users without an
  1175. # expiration date at startup and will add one to every account it found using the
  1176. # current settings at that time.
  1177. # This means that, if a validity period is set, and Synapse is restarted (it will
  1178. # then derive an expiration date from the current validity period), and some time
  1179. # after that the validity period changes and Synapse is restarted, the users'
  1180. # expiration dates won't be updated unless their account is manually renewed. This
  1181. # date will be randomly selected within a range [now + period - d ; now + period],
  1182. # where d is equal to 10% of the validity period.
  1183. #
  1184. account_validity:
  1185. # The account validity feature is disabled by default. Uncomment the
  1186. # following line to enable it.
  1187. #
  1188. #enabled: true
  1189. # The period after which an account is valid after its registration. When
  1190. # renewing the account, its validity period will be extended by this amount
  1191. # of time. This parameter is required when using the account validity
  1192. # feature.
  1193. #
  1194. #period: 6w
  1195. # The amount of time before an account's expiry date at which Synapse will
  1196. # send an email to the account's email address with a renewal link. By
  1197. # default, no such emails are sent.
  1198. #
  1199. # If you enable this setting, you will also need to fill out the 'email' and
  1200. # 'public_baseurl' configuration sections.
  1201. #
  1202. #renew_at: 1w
  1203. # The subject of the email sent out with the renewal link. '%(app)s' can be
  1204. # used as a placeholder for the 'app_name' parameter from the 'email'
  1205. # section.
  1206. #
  1207. # Note that the placeholder must be written '%(app)s', including the
  1208. # trailing 's'.
  1209. #
  1210. # If this is not set, a default value is used.
  1211. #
  1212. #renew_email_subject: "Renew your %(app)s account"
  1213. # Directory in which Synapse will try to find templates for the HTML files to
  1214. # serve to the user when trying to renew an account. If not set, default
  1215. # templates from within the Synapse package will be used.
  1216. #
  1217. # The currently available templates are:
  1218. #
  1219. # * account_renewed.html: Displayed to the user after they have successfully
  1220. # renewed their account.
  1221. #
  1222. # * account_previously_renewed.html: Displayed to the user if they attempt to
  1223. # renew their account with a token that is valid, but that has already
  1224. # been used. In this case the account is not renewed again.
  1225. #
  1226. # * invalid_token.html: Displayed to the user when they try to renew an account
  1227. # with an unknown or invalid renewal token.
  1228. #
  1229. # See https://github.com/matrix-org/synapse/tree/master/synapse/res/templates for
  1230. # default template contents.
  1231. #
  1232. # The file name of some of these templates can be configured below for legacy
  1233. # reasons.
  1234. #
  1235. #template_dir: "res/templates"
  1236. # A custom file name for the 'account_renewed.html' template.
  1237. #
  1238. # If not set, the file is assumed to be named "account_renewed.html".
  1239. #
  1240. #account_renewed_html_path: "account_renewed.html"
  1241. # A custom file name for the 'invalid_token.html' template.
  1242. #
  1243. # If not set, the file is assumed to be named "invalid_token.html".
  1244. #
  1245. #invalid_token_html_path: "invalid_token.html"
  1246. ## Metrics ###
  1247. # Enable collection and rendering of performance metrics
  1248. #
  1249. #enable_metrics: false
  1250. # Enable sentry integration
  1251. # NOTE: While attempts are made to ensure that the logs don't contain
  1252. # any sensitive information, this cannot be guaranteed. By enabling
  1253. # this option the sentry server may therefore receive sensitive
  1254. # information, and it in turn may then diseminate sensitive information
  1255. # through insecure notification channels if so configured.
  1256. #
  1257. #sentry:
  1258. # dsn: "..."
  1259. # Flags to enable Prometheus metrics which are not suitable to be
  1260. # enabled by default, either for performance reasons or limited use.
  1261. #
  1262. metrics_flags:
  1263. # Publish synapse_federation_known_servers, a gauge of the number of
  1264. # servers this homeserver knows about, including itself. May cause
  1265. # performance problems on large homeservers.
  1266. #
  1267. #known_servers: true
  1268. # Whether or not to report anonymized homeserver usage statistics.
  1269. #
  1270. #report_stats: true|false
  1271. # The endpoint to report the anonymized homeserver usage statistics to.
  1272. # Defaults to https://matrix.org/report-usage-stats/push
  1273. #
  1274. #report_stats_endpoint: https://example.com/report-usage-stats/push
  1275. ## API Configuration ##
  1276. # Controls for the state that is shared with users who receive an invite
  1277. # to a room
  1278. #
  1279. room_prejoin_state:
  1280. # By default, the following state event types are shared with users who
  1281. # receive invites to the room:
  1282. #
  1283. # - m.room.join_rules
  1284. # - m.room.canonical_alias
  1285. # - m.room.avatar
  1286. # - m.room.encryption
  1287. # - m.room.name
  1288. # - m.room.create
  1289. #
  1290. # Uncomment the following to disable these defaults (so that only the event
  1291. # types listed in 'additional_event_types' are shared). Defaults to 'false'.
  1292. #
  1293. #disable_default_event_types: true
  1294. # Additional state event types to share with users when they are invited
  1295. # to a room.
  1296. #
  1297. # By default, this list is empty (so only the default event types are shared).
  1298. #
  1299. #additional_event_types:
  1300. # - org.example.custom.event.type
  1301. # A list of application service config files to use
  1302. #
  1303. #app_service_config_files:
  1304. # - app_service_1.yaml
  1305. # - app_service_2.yaml
  1306. # Uncomment to enable tracking of application service IP addresses. Implicitly
  1307. # enables MAU tracking for application service users.
  1308. #
  1309. #track_appservice_user_ips: true
  1310. # a secret which is used to sign access tokens. If none is specified,
  1311. # the registration_shared_secret is used, if one is given; otherwise,
  1312. # a secret key is derived from the signing key.
  1313. #
  1314. #macaroon_secret_key: <PRIVATE STRING>
  1315. # a secret which is used to calculate HMACs for form values, to stop
  1316. # falsification of values. Must be specified for the User Consent
  1317. # forms to work.
  1318. #
  1319. #form_secret: <PRIVATE STRING>
  1320. ## Signing Keys ##
  1321. # Path to the signing key to sign messages with
  1322. #
  1323. signing_key_path: "CONFDIR/SERVERNAME.signing.key"
  1324. # The keys that the server used to sign messages with but won't use
  1325. # to sign new messages.
  1326. #
  1327. old_signing_keys:
  1328. # For each key, `key` should be the base64-encoded public key, and
  1329. # `expired_ts`should be the time (in milliseconds since the unix epoch) that
  1330. # it was last used.
  1331. #
  1332. # It is possible to build an entry from an old signing.key file using the
  1333. # `export_signing_key` script which is provided with synapse.
  1334. #
  1335. # For example:
  1336. #
  1337. #"ed25519:id": { key: "base64string", expired_ts: 123456789123 }
  1338. # How long key response published by this server is valid for.
  1339. # Used to set the valid_until_ts in /key/v2 APIs.
  1340. # Determines how quickly servers will query to check which keys
  1341. # are still valid.
  1342. #
  1343. #key_refresh_interval: 1d
  1344. # The trusted servers to download signing keys from.
  1345. #
  1346. # When we need to fetch a signing key, each server is tried in parallel.
  1347. #
  1348. # Normally, the connection to the key server is validated via TLS certificates.
  1349. # Additional security can be provided by configuring a `verify key`, which
  1350. # will make synapse check that the response is signed by that key.
  1351. #
  1352. # This setting supercedes an older setting named `perspectives`. The old format
  1353. # is still supported for backwards-compatibility, but it is deprecated.
  1354. #
  1355. # 'trusted_key_servers' defaults to matrix.org, but using it will generate a
  1356. # warning on start-up. To suppress this warning, set
  1357. # 'suppress_key_server_warning' to true.
  1358. #
  1359. # Options for each entry in the list include:
  1360. #
  1361. # server_name: the name of the server. required.
  1362. #
  1363. # verify_keys: an optional map from key id to base64-encoded public key.
  1364. # If specified, we will check that the response is signed by at least
  1365. # one of the given keys.
  1366. #
  1367. # accept_keys_insecurely: a boolean. Normally, if `verify_keys` is unset,
  1368. # and federation_verify_certificates is not `true`, synapse will refuse
  1369. # to start, because this would allow anyone who can spoof DNS responses
  1370. # to masquerade as the trusted key server. If you know what you are doing
  1371. # and are sure that your network environment provides a secure connection
  1372. # to the key server, you can set this to `true` to override this
  1373. # behaviour.
  1374. #
  1375. # An example configuration might look like:
  1376. #
  1377. #trusted_key_servers:
  1378. # - server_name: "my_trusted_server.example.com"
  1379. # verify_keys:
  1380. # "ed25519:auto": "abcdefghijklmnopqrstuvwxyzabcdefghijklmopqr"
  1381. # - server_name: "my_other_trusted_server.example.com"
  1382. #
  1383. trusted_key_servers:
  1384. - server_name: "matrix.org"
  1385. # Uncomment the following to disable the warning that is emitted when the
  1386. # trusted_key_servers include 'matrix.org'. See above.
  1387. #
  1388. #suppress_key_server_warning: true
  1389. # The signing keys to use when acting as a trusted key server. If not specified
  1390. # defaults to the server signing key.
  1391. #
  1392. # Can contain multiple keys, one per line.
  1393. #
  1394. #key_server_signing_keys_path: "key_server_signing_keys.key"
  1395. ## Single sign-on integration ##
  1396. # The following settings can be used to make Synapse use a single sign-on
  1397. # provider for authentication, instead of its internal password database.
  1398. #
  1399. # You will probably also want to set the following options to `false` to
  1400. # disable the regular login/registration flows:
  1401. # * enable_registration
  1402. # * password_config.enabled
  1403. #
  1404. # You will also want to investigate the settings under the "sso" configuration
  1405. # section below.
  1406. # Enable SAML2 for registration and login. Uses pysaml2.
  1407. #
  1408. # At least one of `sp_config` or `config_path` must be set in this section to
  1409. # enable SAML login.
  1410. #
  1411. # Once SAML support is enabled, a metadata file will be exposed at
  1412. # https://<server>:<port>/_synapse/client/saml2/metadata.xml, which you may be able to
  1413. # use to configure your SAML IdP with. Alternatively, you can manually configure
  1414. # the IdP to use an ACS location of
  1415. # https://<server>:<port>/_synapse/client/saml2/authn_response.
  1416. #
  1417. saml2_config:
  1418. # `sp_config` is the configuration for the pysaml2 Service Provider.
  1419. # See pysaml2 docs for format of config.
  1420. #
  1421. # Default values will be used for the 'entityid' and 'service' settings,
  1422. # so it is not normally necessary to specify them unless you need to
  1423. # override them.
  1424. #
  1425. sp_config:
  1426. # Point this to the IdP's metadata. You must provide either a local
  1427. # file via the `local` attribute or (preferably) a URL via the
  1428. # `remote` attribute.
  1429. #
  1430. #metadata:
  1431. # local: ["saml2/idp.xml"]
  1432. # remote:
  1433. # - url: https://our_idp/metadata.xml
  1434. # Allowed clock difference in seconds between the homeserver and IdP.
  1435. #
  1436. # Uncomment the below to increase the accepted time difference from 0 to 3 seconds.
  1437. #
  1438. #accepted_time_diff: 3
  1439. # By default, the user has to go to our login page first. If you'd like
  1440. # to allow IdP-initiated login, set 'allow_unsolicited: true' in a
  1441. # 'service.sp' section:
  1442. #
  1443. #service:
  1444. # sp:
  1445. # allow_unsolicited: true
  1446. # The examples below are just used to generate our metadata xml, and you
  1447. # may well not need them, depending on your setup. Alternatively you
  1448. # may need a whole lot more detail - see the pysaml2 docs!
  1449. #description: ["My awesome SP", "en"]
  1450. #name: ["Test SP", "en"]
  1451. #ui_info:
  1452. # display_name:
  1453. # - lang: en
  1454. # text: "Display Name is the descriptive name of your service."
  1455. # description:
  1456. # - lang: en
  1457. # text: "Description should be a short paragraph explaining the purpose of the service."
  1458. # information_url:
  1459. # - lang: en
  1460. # text: "https://example.com/terms-of-service"
  1461. # privacy_statement_url:
  1462. # - lang: en
  1463. # text: "https://example.com/privacy-policy"
  1464. # keywords:
  1465. # - lang: en
  1466. # text: ["Matrix", "Element"]
  1467. # logo:
  1468. # - lang: en
  1469. # text: "https://example.com/logo.svg"
  1470. # width: "200"
  1471. # height: "80"
  1472. #organization:
  1473. # name: Example com
  1474. # display_name:
  1475. # - ["Example co", "en"]
  1476. # url: "http://example.com"
  1477. #contact_person:
  1478. # - given_name: Bob
  1479. # sur_name: "the Sysadmin"
  1480. # email_address": ["admin@example.com"]
  1481. # contact_type": technical
  1482. # Instead of putting the config inline as above, you can specify a
  1483. # separate pysaml2 configuration file:
  1484. #
  1485. #config_path: "CONFDIR/sp_conf.py"
  1486. # The lifetime of a SAML session. This defines how long a user has to
  1487. # complete the authentication process, if allow_unsolicited is unset.
  1488. # The default is 15 minutes.
  1489. #
  1490. #saml_session_lifetime: 5m
  1491. # An external module can be provided here as a custom solution to
  1492. # mapping attributes returned from a saml provider onto a matrix user.
  1493. #
  1494. user_mapping_provider:
  1495. # The custom module's class. Uncomment to use a custom module.
  1496. #
  1497. #module: mapping_provider.SamlMappingProvider
  1498. # Custom configuration values for the module. Below options are
  1499. # intended for the built-in provider, they should be changed if
  1500. # using a custom module. This section will be passed as a Python
  1501. # dictionary to the module's `parse_config` method.
  1502. #
  1503. config:
  1504. # The SAML attribute (after mapping via the attribute maps) to use
  1505. # to derive the Matrix ID from. 'uid' by default.
  1506. #
  1507. # Note: This used to be configured by the
  1508. # saml2_config.mxid_source_attribute option. If that is still
  1509. # defined, its value will be used instead.
  1510. #
  1511. #mxid_source_attribute: displayName
  1512. # The mapping system to use for mapping the saml attribute onto a
  1513. # matrix ID.
  1514. #
  1515. # Options include:
  1516. # * 'hexencode' (which maps unpermitted characters to '=xx')
  1517. # * 'dotreplace' (which replaces unpermitted characters with
  1518. # '.').
  1519. # The default is 'hexencode'.
  1520. #
  1521. # Note: This used to be configured by the
  1522. # saml2_config.mxid_mapping option. If that is still defined, its
  1523. # value will be used instead.
  1524. #
  1525. #mxid_mapping: dotreplace
  1526. # In previous versions of synapse, the mapping from SAML attribute to
  1527. # MXID was always calculated dynamically rather than stored in a
  1528. # table. For backwards- compatibility, we will look for user_ids
  1529. # matching such a pattern before creating a new account.
  1530. #
  1531. # This setting controls the SAML attribute which will be used for this
  1532. # backwards-compatibility lookup. Typically it should be 'uid', but if
  1533. # the attribute maps are changed, it may be necessary to change it.
  1534. #
  1535. # The default is 'uid'.
  1536. #
  1537. #grandfathered_mxid_source_attribute: upn
  1538. # It is possible to configure Synapse to only allow logins if SAML attributes
  1539. # match particular values. The requirements can be listed under
  1540. # `attribute_requirements` as shown below. All of the listed attributes must
  1541. # match for the login to be permitted.
  1542. #
  1543. #attribute_requirements:
  1544. # - attribute: userGroup
  1545. # value: "staff"
  1546. # - attribute: department
  1547. # value: "sales"
  1548. # If the metadata XML contains multiple IdP entities then the `idp_entityid`
  1549. # option must be set to the entity to redirect users to.
  1550. #
  1551. # Most deployments only have a single IdP entity and so should omit this
  1552. # option.
  1553. #
  1554. #idp_entityid: 'https://our_idp/entityid'
  1555. # List of OpenID Connect (OIDC) / OAuth 2.0 identity providers, for registration
  1556. # and login.
  1557. #
  1558. # Options for each entry include:
  1559. #
  1560. # idp_id: a unique identifier for this identity provider. Used internally
  1561. # by Synapse; should be a single word such as 'github'.
  1562. #
  1563. # Note that, if this is changed, users authenticating via that provider
  1564. # will no longer be recognised as the same user!
  1565. #
  1566. # (Use "oidc" here if you are migrating from an old "oidc_config"
  1567. # configuration.)
  1568. #
  1569. # idp_name: A user-facing name for this identity provider, which is used to
  1570. # offer the user a choice of login mechanisms.
  1571. #
  1572. # idp_icon: An optional icon for this identity provider, which is presented
  1573. # by clients and Synapse's own IdP picker page. If given, must be an
  1574. # MXC URI of the format mxc://<server-name>/<media-id>. (An easy way to
  1575. # obtain such an MXC URI is to upload an image to an (unencrypted) room
  1576. # and then copy the "url" from the source of the event.)
  1577. #
  1578. # idp_brand: An optional brand for this identity provider, allowing clients
  1579. # to style the login flow according to the identity provider in question.
  1580. # See the spec for possible options here.
  1581. #
  1582. # discover: set to 'false' to disable the use of the OIDC discovery mechanism
  1583. # to discover endpoints. Defaults to true.
  1584. #
  1585. # issuer: Required. The OIDC issuer. Used to validate tokens and (if discovery
  1586. # is enabled) to discover the provider's endpoints.
  1587. #
  1588. # client_id: Required. oauth2 client id to use.
  1589. #
  1590. # client_secret: oauth2 client secret to use. May be omitted if
  1591. # client_secret_jwt_key is given, or if client_auth_method is 'none'.
  1592. #
  1593. # client_secret_jwt_key: Alternative to client_secret: details of a key used
  1594. # to create a JSON Web Token to be used as an OAuth2 client secret. If
  1595. # given, must be a dictionary with the following properties:
  1596. #
  1597. # key: a pem-encoded signing key. Must be a suitable key for the
  1598. # algorithm specified. Required unless 'key_file' is given.
  1599. #
  1600. # key_file: the path to file containing a pem-encoded signing key file.
  1601. # Required unless 'key' is given.
  1602. #
  1603. # jwt_header: a dictionary giving properties to include in the JWT
  1604. # header. Must include the key 'alg', giving the algorithm used to
  1605. # sign the JWT, such as "ES256", using the JWA identifiers in
  1606. # RFC7518.
  1607. #
  1608. # jwt_payload: an optional dictionary giving properties to include in
  1609. # the JWT payload. Normally this should include an 'iss' key.
  1610. #
  1611. # client_auth_method: auth method to use when exchanging the token. Valid
  1612. # values are 'client_secret_basic' (default), 'client_secret_post' and
  1613. # 'none'.
  1614. #
  1615. # scopes: list of scopes to request. This should normally include the "openid"
  1616. # scope. Defaults to ["openid"].
  1617. #
  1618. # authorization_endpoint: the oauth2 authorization endpoint. Required if
  1619. # provider discovery is disabled.
  1620. #
  1621. # token_endpoint: the oauth2 token endpoint. Required if provider discovery is
  1622. # disabled.
  1623. #
  1624. # userinfo_endpoint: the OIDC userinfo endpoint. Required if discovery is
  1625. # disabled and the 'openid' scope is not requested.
  1626. #
  1627. # jwks_uri: URI where to fetch the JWKS. Required if discovery is disabled and
  1628. # the 'openid' scope is used.
  1629. #
  1630. # skip_verification: set to 'true' to skip metadata verification. Use this if
  1631. # you are connecting to a provider that is not OpenID Connect compliant.
  1632. # Defaults to false. Avoid this in production.
  1633. #
  1634. # user_profile_method: Whether to fetch the user profile from the userinfo
  1635. # endpoint. Valid values are: 'auto' or 'userinfo_endpoint'.
  1636. #
  1637. # Defaults to 'auto', which fetches the userinfo endpoint if 'openid' is
  1638. # included in 'scopes'. Set to 'userinfo_endpoint' to always fetch the
  1639. # userinfo endpoint.
  1640. #
  1641. # allow_existing_users: set to 'true' to allow a user logging in via OIDC to
  1642. # match a pre-existing account instead of failing. This could be used if
  1643. # switching from password logins to OIDC. Defaults to false.
  1644. #
  1645. # user_mapping_provider: Configuration for how attributes returned from a OIDC
  1646. # provider are mapped onto a matrix user. This setting has the following
  1647. # sub-properties:
  1648. #
  1649. # module: The class name of a custom mapping module. Default is
  1650. # 'synapse.handlers.oidc.JinjaOidcMappingProvider'.
  1651. # See https://matrix-org.github.io/synapse/latest/sso_mapping_providers.html#openid-mapping-providers
  1652. # for information on implementing a custom mapping provider.
  1653. #
  1654. # config: Configuration for the mapping provider module. This section will
  1655. # be passed as a Python dictionary to the user mapping provider
  1656. # module's `parse_config` method.
  1657. #
  1658. # For the default provider, the following settings are available:
  1659. #
  1660. # subject_claim: name of the claim containing a unique identifier
  1661. # for the user. Defaults to 'sub', which OpenID Connect
  1662. # compliant providers should provide.
  1663. #
  1664. # localpart_template: Jinja2 template for the localpart of the MXID.
  1665. # If this is not set, the user will be prompted to choose their
  1666. # own username (see 'sso_auth_account_details.html' in the 'sso'
  1667. # section of this file).
  1668. #
  1669. # display_name_template: Jinja2 template for the display name to set
  1670. # on first login. If unset, no displayname will be set.
  1671. #
  1672. # email_template: Jinja2 template for the email address of the user.
  1673. # If unset, no email address will be added to the account.
  1674. #
  1675. # extra_attributes: a map of Jinja2 templates for extra attributes
  1676. # to send back to the client during login.
  1677. # Note that these are non-standard and clients will ignore them
  1678. # without modifications.
  1679. #
  1680. # When rendering, the Jinja2 templates are given a 'user' variable,
  1681. # which is set to the claims returned by the UserInfo Endpoint and/or
  1682. # in the ID Token.
  1683. #
  1684. # It is possible to configure Synapse to only allow logins if certain attributes
  1685. # match particular values in the OIDC userinfo. The requirements can be listed under
  1686. # `attribute_requirements` as shown below. All of the listed attributes must
  1687. # match for the login to be permitted. Additional attributes can be added to
  1688. # userinfo by expanding the `scopes` section of the OIDC config to retrieve
  1689. # additional information from the OIDC provider.
  1690. #
  1691. # If the OIDC claim is a list, then the attribute must match any value in the list.
  1692. # Otherwise, it must exactly match the value of the claim. Using the example
  1693. # below, the `family_name` claim MUST be "Stephensson", but the `groups`
  1694. # claim MUST contain "admin".
  1695. #
  1696. # attribute_requirements:
  1697. # - attribute: family_name
  1698. # value: "Stephensson"
  1699. # - attribute: groups
  1700. # value: "admin"
  1701. #
  1702. # See https://matrix-org.github.io/synapse/latest/openid.html
  1703. # for information on how to configure these options.
  1704. #
  1705. # For backwards compatibility, it is also possible to configure a single OIDC
  1706. # provider via an 'oidc_config' setting. This is now deprecated and admins are
  1707. # advised to migrate to the 'oidc_providers' format. (When doing that migration,
  1708. # use 'oidc' for the idp_id to ensure that existing users continue to be
  1709. # recognised.)
  1710. #
  1711. oidc_providers:
  1712. # Generic example
  1713. #
  1714. #- idp_id: my_idp
  1715. # idp_name: "My OpenID provider"
  1716. # idp_icon: "mxc://example.com/mediaid"
  1717. # discover: false
  1718. # issuer: "https://accounts.example.com/"
  1719. # client_id: "provided-by-your-issuer"
  1720. # client_secret: "provided-by-your-issuer"
  1721. # client_auth_method: client_secret_post
  1722. # scopes: ["openid", "profile"]
  1723. # authorization_endpoint: "https://accounts.example.com/oauth2/auth"
  1724. # token_endpoint: "https://accounts.example.com/oauth2/token"
  1725. # userinfo_endpoint: "https://accounts.example.com/userinfo"
  1726. # jwks_uri: "https://accounts.example.com/.well-known/jwks.json"
  1727. # skip_verification: true
  1728. # user_mapping_provider:
  1729. # config:
  1730. # subject_claim: "id"
  1731. # localpart_template: "{{ user.login }}"
  1732. # display_name_template: "{{ user.name }}"
  1733. # email_template: "{{ user.email }}"
  1734. # attribute_requirements:
  1735. # - attribute: userGroup
  1736. # value: "synapseUsers"
  1737. # Enable Central Authentication Service (CAS) for registration and login.
  1738. #
  1739. cas_config:
  1740. # Uncomment the following to enable authorization against a CAS server.
  1741. # Defaults to false.
  1742. #
  1743. #enabled: true
  1744. # The URL of the CAS authorization endpoint.
  1745. #
  1746. #server_url: "https://cas-server.com"
  1747. # The attribute of the CAS response to use as the display name.
  1748. #
  1749. # If unset, no displayname will be set.
  1750. #
  1751. #displayname_attribute: name
  1752. # It is possible to configure Synapse to only allow logins if CAS attributes
  1753. # match particular values. All of the keys in the mapping below must exist
  1754. # and the values must match the given value. Alternately if the given value
  1755. # is None then any value is allowed (the attribute just must exist).
  1756. # All of the listed attributes must match for the login to be permitted.
  1757. #
  1758. #required_attributes:
  1759. # userGroup: "staff"
  1760. # department: None
  1761. # Additional settings to use with single-sign on systems such as OpenID Connect,
  1762. # SAML2 and CAS.
  1763. #
  1764. sso:
  1765. # A list of client URLs which are whitelisted so that the user does not
  1766. # have to confirm giving access to their account to the URL. Any client
  1767. # whose URL starts with an entry in the following list will not be subject
  1768. # to an additional confirmation step after the SSO login is completed.
  1769. #
  1770. # WARNING: An entry such as "https://my.client" is insecure, because it
  1771. # will also match "https://my.client.evil.site", exposing your users to
  1772. # phishing attacks from evil.site. To avoid this, include a slash after the
  1773. # hostname: "https://my.client/".
  1774. #
  1775. # If public_baseurl is set, then the login fallback page (used by clients
  1776. # that don't natively support the required login flows) is whitelisted in
  1777. # addition to any URLs in this list.
  1778. #
  1779. # By default, this list is empty.
  1780. #
  1781. #client_whitelist:
  1782. # - https://riot.im/develop
  1783. # - https://my.custom.client/
  1784. # Uncomment to keep a user's profile fields in sync with information from
  1785. # the identity provider. Currently only syncing the displayname is
  1786. # supported. Fields are checked on every SSO login, and are updated
  1787. # if necessary.
  1788. #
  1789. # Note that enabling this option will override user profile information,
  1790. # regardless of whether users have opted-out of syncing that
  1791. # information when first signing in. Defaults to false.
  1792. #
  1793. #update_profile_information: true
  1794. # Directory in which Synapse will try to find the template files below.
  1795. # If not set, or the files named below are not found within the template
  1796. # directory, default templates from within the Synapse package will be used.
  1797. #
  1798. # Synapse will look for the following templates in this directory:
  1799. #
  1800. # * HTML page to prompt the user to choose an Identity Provider during
  1801. # login: 'sso_login_idp_picker.html'.
  1802. #
  1803. # This is only used if multiple SSO Identity Providers are configured.
  1804. #
  1805. # When rendering, this template is given the following variables:
  1806. # * redirect_url: the URL that the user will be redirected to after
  1807. # login.
  1808. #
  1809. # * server_name: the homeserver's name.
  1810. #
  1811. # * providers: a list of available Identity Providers. Each element is
  1812. # an object with the following attributes:
  1813. #
  1814. # * idp_id: unique identifier for the IdP
  1815. # * idp_name: user-facing name for the IdP
  1816. # * idp_icon: if specified in the IdP config, an MXC URI for an icon
  1817. # for the IdP
  1818. # * idp_brand: if specified in the IdP config, a textual identifier
  1819. # for the brand of the IdP
  1820. #
  1821. # The rendered HTML page should contain a form which submits its results
  1822. # back as a GET request, with the following query parameters:
  1823. #
  1824. # * redirectUrl: the client redirect URI (ie, the `redirect_url` passed
  1825. # to the template)
  1826. #
  1827. # * idp: the 'idp_id' of the chosen IDP.
  1828. #
  1829. # * HTML page to prompt new users to enter a userid and confirm other
  1830. # details: 'sso_auth_account_details.html'. This is only shown if the
  1831. # SSO implementation (with any user_mapping_provider) does not return
  1832. # a localpart.
  1833. #
  1834. # When rendering, this template is given the following variables:
  1835. #
  1836. # * server_name: the homeserver's name.
  1837. #
  1838. # * idp: details of the SSO Identity Provider that the user logged in
  1839. # with: an object with the following attributes:
  1840. #
  1841. # * idp_id: unique identifier for the IdP
  1842. # * idp_name: user-facing name for the IdP
  1843. # * idp_icon: if specified in the IdP config, an MXC URI for an icon
  1844. # for the IdP
  1845. # * idp_brand: if specified in the IdP config, a textual identifier
  1846. # for the brand of the IdP
  1847. #
  1848. # * user_attributes: an object containing details about the user that
  1849. # we received from the IdP. May have the following attributes:
  1850. #
  1851. # * display_name: the user's display_name
  1852. # * emails: a list of email addresses
  1853. #
  1854. # The template should render a form which submits the following fields:
  1855. #
  1856. # * username: the localpart of the user's chosen user id
  1857. #
  1858. # * HTML page allowing the user to consent to the server's terms and
  1859. # conditions. This is only shown for new users, and only if
  1860. # `user_consent.require_at_registration` is set.
  1861. #
  1862. # When rendering, this template is given the following variables:
  1863. #
  1864. # * server_name: the homeserver's name.
  1865. #
  1866. # * user_id: the user's matrix proposed ID.
  1867. #
  1868. # * user_profile.display_name: the user's proposed display name, if any.
  1869. #
  1870. # * consent_version: the version of the terms that the user will be
  1871. # shown
  1872. #
  1873. # * terms_url: a link to the page showing the terms.
  1874. #
  1875. # The template should render a form which submits the following fields:
  1876. #
  1877. # * accepted_version: the version of the terms accepted by the user
  1878. # (ie, 'consent_version' from the input variables).
  1879. #
  1880. # * HTML page for a confirmation step before redirecting back to the client
  1881. # with the login token: 'sso_redirect_confirm.html'.
  1882. #
  1883. # When rendering, this template is given the following variables:
  1884. #
  1885. # * redirect_url: the URL the user is about to be redirected to.
  1886. #
  1887. # * display_url: the same as `redirect_url`, but with the query
  1888. # parameters stripped. The intention is to have a
  1889. # human-readable URL to show to users, not to use it as
  1890. # the final address to redirect to.
  1891. #
  1892. # * server_name: the homeserver's name.
  1893. #
  1894. # * new_user: a boolean indicating whether this is the user's first time
  1895. # logging in.
  1896. #
  1897. # * user_id: the user's matrix ID.
  1898. #
  1899. # * user_profile.avatar_url: an MXC URI for the user's avatar, if any.
  1900. # None if the user has not set an avatar.
  1901. #
  1902. # * user_profile.display_name: the user's display name. None if the user
  1903. # has not set a display name.
  1904. #
  1905. # * HTML page which notifies the user that they are authenticating to confirm
  1906. # an operation on their account during the user interactive authentication
  1907. # process: 'sso_auth_confirm.html'.
  1908. #
  1909. # When rendering, this template is given the following variables:
  1910. # * redirect_url: the URL the user is about to be redirected to.
  1911. #
  1912. # * description: the operation which the user is being asked to confirm
  1913. #
  1914. # * idp: details of the Identity Provider that we will use to confirm
  1915. # the user's identity: an object with the following attributes:
  1916. #
  1917. # * idp_id: unique identifier for the IdP
  1918. # * idp_name: user-facing name for the IdP
  1919. # * idp_icon: if specified in the IdP config, an MXC URI for an icon
  1920. # for the IdP
  1921. # * idp_brand: if specified in the IdP config, a textual identifier
  1922. # for the brand of the IdP
  1923. #
  1924. # * HTML page shown after a successful user interactive authentication session:
  1925. # 'sso_auth_success.html'.
  1926. #
  1927. # Note that this page must include the JavaScript which notifies of a successful authentication
  1928. # (see https://matrix.org/docs/spec/client_server/r0.6.0#fallback).
  1929. #
  1930. # This template has no additional variables.
  1931. #
  1932. # * HTML page shown after a user-interactive authentication session which
  1933. # does not map correctly onto the expected user: 'sso_auth_bad_user.html'.
  1934. #
  1935. # When rendering, this template is given the following variables:
  1936. # * server_name: the homeserver's name.
  1937. # * user_id_to_verify: the MXID of the user that we are trying to
  1938. # validate.
  1939. #
  1940. # * HTML page shown during single sign-on if a deactivated user (according to Synapse's database)
  1941. # attempts to login: 'sso_account_deactivated.html'.
  1942. #
  1943. # This template has no additional variables.
  1944. #
  1945. # * HTML page to display to users if something goes wrong during the
  1946. # OpenID Connect authentication process: 'sso_error.html'.
  1947. #
  1948. # When rendering, this template is given two variables:
  1949. # * error: the technical name of the error
  1950. # * error_description: a human-readable message for the error
  1951. #
  1952. # You can see the default templates at:
  1953. # https://github.com/matrix-org/synapse/tree/master/synapse/res/templates
  1954. #
  1955. #template_dir: "res/templates"
  1956. # JSON web token integration. The following settings can be used to make
  1957. # Synapse JSON web tokens for authentication, instead of its internal
  1958. # password database.
  1959. #
  1960. # Each JSON Web Token needs to contain a "sub" (subject) claim, which is
  1961. # used as the localpart of the mxid.
  1962. #
  1963. # Additionally, the expiration time ("exp"), not before time ("nbf"),
  1964. # and issued at ("iat") claims are validated if present.
  1965. #
  1966. # Note that this is a non-standard login type and client support is
  1967. # expected to be non-existent.
  1968. #
  1969. # See https://matrix-org.github.io/synapse/latest/jwt.html.
  1970. #
  1971. #jwt_config:
  1972. # Uncomment the following to enable authorization using JSON web
  1973. # tokens. Defaults to false.
  1974. #
  1975. #enabled: true
  1976. # This is either the private shared secret or the public key used to
  1977. # decode the contents of the JSON web token.
  1978. #
  1979. # Required if 'enabled' is true.
  1980. #
  1981. #secret: "provided-by-your-issuer"
  1982. # The algorithm used to sign the JSON web token.
  1983. #
  1984. # Supported algorithms are listed at
  1985. # https://pyjwt.readthedocs.io/en/latest/algorithms.html
  1986. #
  1987. # Required if 'enabled' is true.
  1988. #
  1989. #algorithm: "provided-by-your-issuer"
  1990. # The issuer to validate the "iss" claim against.
  1991. #
  1992. # Optional, if provided the "iss" claim will be required and
  1993. # validated for all JSON web tokens.
  1994. #
  1995. #issuer: "provided-by-your-issuer"
  1996. # A list of audiences to validate the "aud" claim against.
  1997. #
  1998. # Optional, if provided the "aud" claim will be required and
  1999. # validated for all JSON web tokens.
  2000. #
  2001. # Note that if the "aud" claim is included in a JSON web token then
  2002. # validation will fail without configuring audiences.
  2003. #
  2004. #audiences:
  2005. # - "provided-by-your-issuer"
  2006. password_config:
  2007. # Uncomment to disable password login
  2008. #
  2009. #enabled: false
  2010. # Uncomment to disable authentication against the local password
  2011. # database. This is ignored if `enabled` is false, and is only useful
  2012. # if you have other password_providers.
  2013. #
  2014. #localdb_enabled: false
  2015. # Uncomment and change to a secret random string for extra security.
  2016. # DO NOT CHANGE THIS AFTER INITIAL SETUP!
  2017. #
  2018. #pepper: "EVEN_MORE_SECRET"
  2019. # Define and enforce a password policy. Each parameter is optional.
  2020. # This is an implementation of MSC2000.
  2021. #
  2022. policy:
  2023. # Whether to enforce the password policy.
  2024. # Defaults to 'false'.
  2025. #
  2026. #enabled: true
  2027. # Minimum accepted length for a password.
  2028. # Defaults to 0.
  2029. #
  2030. #minimum_length: 15
  2031. # Whether a password must contain at least one digit.
  2032. # Defaults to 'false'.
  2033. #
  2034. #require_digit: true
  2035. # Whether a password must contain at least one symbol.
  2036. # A symbol is any character that's not a number or a letter.
  2037. # Defaults to 'false'.
  2038. #
  2039. #require_symbol: true
  2040. # Whether a password must contain at least one lowercase letter.
  2041. # Defaults to 'false'.
  2042. #
  2043. #require_lowercase: true
  2044. # Whether a password must contain at least one lowercase letter.
  2045. # Defaults to 'false'.
  2046. #
  2047. #require_uppercase: true
  2048. ui_auth:
  2049. # The amount of time to allow a user-interactive authentication session
  2050. # to be active.
  2051. #
  2052. # This defaults to 0, meaning the user is queried for their credentials
  2053. # before every action, but this can be overridden to allow a single
  2054. # validation to be re-used. This weakens the protections afforded by
  2055. # the user-interactive authentication process, by allowing for multiple
  2056. # (and potentially different) operations to use the same validation session.
  2057. #
  2058. # This is ignored for potentially "dangerous" operations (including
  2059. # deactivating an account, modifying an account password, and
  2060. # adding a 3PID).
  2061. #
  2062. # Uncomment below to allow for credential validation to last for 15
  2063. # seconds.
  2064. #
  2065. #session_timeout: "15s"
  2066. # Configuration for sending emails from Synapse.
  2067. #
  2068. email:
  2069. # The hostname of the outgoing SMTP server to use. Defaults to 'localhost'.
  2070. #
  2071. #smtp_host: mail.server
  2072. # The port on the mail server for outgoing SMTP. Defaults to 25.
  2073. #
  2074. #smtp_port: 587
  2075. # Username/password for authentication to the SMTP server. By default, no
  2076. # authentication is attempted.
  2077. #
  2078. #smtp_user: "exampleusername"
  2079. #smtp_pass: "examplepassword"
  2080. # Uncomment the following to require TLS transport security for SMTP.
  2081. # By default, Synapse will connect over plain text, and will then switch to
  2082. # TLS via STARTTLS *if the SMTP server supports it*. If this option is set,
  2083. # Synapse will refuse to connect unless the server supports STARTTLS.
  2084. #
  2085. #require_transport_security: true
  2086. # notif_from defines the "From" address to use when sending emails.
  2087. # It must be set if email sending is enabled.
  2088. #
  2089. # The placeholder '%(app)s' will be replaced by the application name,
  2090. # which is normally 'app_name' (below), but may be overridden by the
  2091. # Matrix client application.
  2092. #
  2093. # Note that the placeholder must be written '%(app)s', including the
  2094. # trailing 's'.
  2095. #
  2096. #notif_from: "Your Friendly %(app)s homeserver <noreply@example.com>"
  2097. # app_name defines the default value for '%(app)s' in notif_from and email
  2098. # subjects. It defaults to 'Matrix'.
  2099. #
  2100. #app_name: my_branded_matrix_server
  2101. # Uncomment the following to enable sending emails for messages that the user
  2102. # has missed. Disabled by default.
  2103. #
  2104. #enable_notifs: true
  2105. # Uncomment the following to disable automatic subscription to email
  2106. # notifications for new users. Enabled by default.
  2107. #
  2108. #notif_for_new_users: false
  2109. # Custom URL for client links within the email notifications. By default
  2110. # links will be based on "https://matrix.to".
  2111. #
  2112. # (This setting used to be called riot_base_url; the old name is still
  2113. # supported for backwards-compatibility but is now deprecated.)
  2114. #
  2115. #client_base_url: "http://localhost/riot"
  2116. # Configure the time that a validation email will expire after sending.
  2117. # Defaults to 1h.
  2118. #
  2119. #validation_token_lifetime: 15m
  2120. # The web client location to direct users to during an invite. This is passed
  2121. # to the identity server as the org.matrix.web_client_location key. Defaults
  2122. # to unset, giving no guidance to the identity server.
  2123. #
  2124. #invite_client_location: https://app.element.io
  2125. # Directory in which Synapse will try to find the template files below.
  2126. # If not set, or the files named below are not found within the template
  2127. # directory, default templates from within the Synapse package will be used.
  2128. #
  2129. # Synapse will look for the following templates in this directory:
  2130. #
  2131. # * The contents of email notifications of missed events: 'notif_mail.html' and
  2132. # 'notif_mail.txt'.
  2133. #
  2134. # * The contents of account expiry notice emails: 'notice_expiry.html' and
  2135. # 'notice_expiry.txt'.
  2136. #
  2137. # * The contents of password reset emails sent by the homeserver:
  2138. # 'password_reset.html' and 'password_reset.txt'
  2139. #
  2140. # * An HTML page that a user will see when they follow the link in the password
  2141. # reset email. The user will be asked to confirm the action before their
  2142. # password is reset: 'password_reset_confirmation.html'
  2143. #
  2144. # * HTML pages for success and failure that a user will see when they confirm
  2145. # the password reset flow using the page above: 'password_reset_success.html'
  2146. # and 'password_reset_failure.html'
  2147. #
  2148. # * The contents of address verification emails sent during registration:
  2149. # 'registration.html' and 'registration.txt'
  2150. #
  2151. # * HTML pages for success and failure that a user will see when they follow
  2152. # the link in an address verification email sent during registration:
  2153. # 'registration_success.html' and 'registration_failure.html'
  2154. #
  2155. # * The contents of address verification emails sent when an address is added
  2156. # to a Matrix account: 'add_threepid.html' and 'add_threepid.txt'
  2157. #
  2158. # * HTML pages for success and failure that a user will see when they follow
  2159. # the link in an address verification email sent when an address is added
  2160. # to a Matrix account: 'add_threepid_success.html' and
  2161. # 'add_threepid_failure.html'
  2162. #
  2163. # You can see the default templates at:
  2164. # https://github.com/matrix-org/synapse/tree/master/synapse/res/templates
  2165. #
  2166. #template_dir: "res/templates"
  2167. # Subjects to use when sending emails from Synapse.
  2168. #
  2169. # The placeholder '%(app)s' will be replaced with the value of the 'app_name'
  2170. # setting above, or by a value dictated by the Matrix client application.
  2171. #
  2172. # If a subject isn't overridden in this configuration file, the value used as
  2173. # its example will be used.
  2174. #
  2175. #subjects:
  2176. # Subjects for notification emails.
  2177. #
  2178. # On top of the '%(app)s' placeholder, these can use the following
  2179. # placeholders:
  2180. #
  2181. # * '%(person)s', which will be replaced by the display name of the user(s)
  2182. # that sent the message(s), e.g. "Alice and Bob".
  2183. # * '%(room)s', which will be replaced by the name of the room the
  2184. # message(s) have been sent to, e.g. "My super room".
  2185. #
  2186. # See the example provided for each setting to see which placeholder can be
  2187. # used and how to use them.
  2188. #
  2189. # Subject to use to notify about one message from one or more user(s) in a
  2190. # room which has a name.
  2191. #message_from_person_in_room: "[%(app)s] You have a message on %(app)s from %(person)s in the %(room)s room..."
  2192. #
  2193. # Subject to use to notify about one message from one or more user(s) in a
  2194. # room which doesn't have a name.
  2195. #message_from_person: "[%(app)s] You have a message on %(app)s from %(person)s..."
  2196. #
  2197. # Subject to use to notify about multiple messages from one or more users in
  2198. # a room which doesn't have a name.
  2199. #messages_from_person: "[%(app)s] You have messages on %(app)s from %(person)s..."
  2200. #
  2201. # Subject to use to notify about multiple messages in a room which has a
  2202. # name.
  2203. #messages_in_room: "[%(app)s] You have messages on %(app)s in the %(room)s room..."
  2204. #
  2205. # Subject to use to notify about multiple messages in multiple rooms.
  2206. #messages_in_room_and_others: "[%(app)s] You have messages on %(app)s in the %(room)s room and others..."
  2207. #
  2208. # Subject to use to notify about multiple messages from multiple persons in
  2209. # multiple rooms. This is similar to the setting above except it's used when
  2210. # the room in which the notification was triggered has no name.
  2211. #messages_from_person_and_others: "[%(app)s] You have messages on %(app)s from %(person)s and others..."
  2212. #
  2213. # Subject to use to notify about an invite to a room which has a name.
  2214. #invite_from_person_to_room: "[%(app)s] %(person)s has invited you to join the %(room)s room on %(app)s..."
  2215. #
  2216. # Subject to use to notify about an invite to a room which doesn't have a
  2217. # name.
  2218. #invite_from_person: "[%(app)s] %(person)s has invited you to chat on %(app)s..."
  2219. # Subject for emails related to account administration.
  2220. #
  2221. # On top of the '%(app)s' placeholder, these one can use the
  2222. # '%(server_name)s' placeholder, which will be replaced by the value of the
  2223. # 'server_name' setting in your Synapse configuration.
  2224. #
  2225. # Subject to use when sending a password reset email.
  2226. #password_reset: "[%(server_name)s] Password reset"
  2227. #
  2228. # Subject to use when sending a verification email to assert an address's
  2229. # ownership.
  2230. #email_validation: "[%(server_name)s] Validate your email"
  2231. # Password providers allow homeserver administrators to integrate
  2232. # their Synapse installation with existing authentication methods
  2233. # ex. LDAP, external tokens, etc.
  2234. #
  2235. # For more information and known implementations, please see
  2236. # https://matrix-org.github.io/synapse/latest/password_auth_providers.html
  2237. #
  2238. # Note: instances wishing to use SAML or CAS authentication should
  2239. # instead use the `saml2_config` or `cas_config` options,
  2240. # respectively.
  2241. #
  2242. password_providers:
  2243. # # Example config for an LDAP auth provider
  2244. # - module: "ldap_auth_provider.LdapAuthProvider"
  2245. # config:
  2246. # enabled: true
  2247. # uri: "ldap://ldap.example.com:389"
  2248. # start_tls: true
  2249. # base: "ou=users,dc=example,dc=com"
  2250. # attributes:
  2251. # uid: "cn"
  2252. # mail: "email"
  2253. # name: "givenName"
  2254. # #bind_dn:
  2255. # #bind_password:
  2256. # #filter: "(objectClass=posixAccount)"
  2257. ## Push ##
  2258. push:
  2259. # Clients requesting push notifications can either have the body of
  2260. # the message sent in the notification poke along with other details
  2261. # like the sender, or just the event ID and room ID (`event_id_only`).
  2262. # If clients choose the former, this option controls whether the
  2263. # notification request includes the content of the event (other details
  2264. # like the sender are still included). For `event_id_only` push, it
  2265. # has no effect.
  2266. #
  2267. # For modern android devices the notification content will still appear
  2268. # because it is loaded by the app. iPhone, however will send a
  2269. # notification saying only that a message arrived and who it came from.
  2270. #
  2271. # The default value is "true" to include message details. Uncomment to only
  2272. # include the event ID and room ID in push notification payloads.
  2273. #
  2274. #include_content: false
  2275. # When a push notification is received, an unread count is also sent.
  2276. # This number can either be calculated as the number of unread messages
  2277. # for the user, or the number of *rooms* the user has unread messages in.
  2278. #
  2279. # The default value is "true", meaning push clients will see the number of
  2280. # rooms with unread messages in them. Uncomment to instead send the number
  2281. # of unread messages.
  2282. #
  2283. #group_unread_count_by_room: false
  2284. ## Rooms ##
  2285. # Controls whether locally-created rooms should be end-to-end encrypted by
  2286. # default.
  2287. #
  2288. # Possible options are "all", "invite", and "off". They are defined as:
  2289. #
  2290. # * "all": any locally-created room
  2291. # * "invite": any room created with the "private_chat" or "trusted_private_chat"
  2292. # room creation presets
  2293. # * "off": this option will take no effect
  2294. #
  2295. # The default value is "off".
  2296. #
  2297. # Note that this option will only affect rooms created after it is set. It
  2298. # will also not affect rooms created by other servers.
  2299. #
  2300. #encryption_enabled_by_default_for_room_type: invite
  2301. # Uncomment to allow non-server-admin users to create groups on this server
  2302. #
  2303. #enable_group_creation: true
  2304. # If enabled, non server admins can only create groups with local parts
  2305. # starting with this prefix
  2306. #
  2307. #group_creation_prefix: "unofficial_"
  2308. # User Directory configuration
  2309. #
  2310. user_directory:
  2311. # Defines whether users can search the user directory. If false then
  2312. # empty responses are returned to all queries. Defaults to true.
  2313. #
  2314. # Uncomment to disable the user directory.
  2315. #
  2316. #enabled: false
  2317. # Defines whether to search all users visible to your HS when searching
  2318. # the user directory, rather than limiting to users visible in public
  2319. # rooms. Defaults to false.
  2320. #
  2321. # If you set it true, you'll have to rebuild the user_directory search
  2322. # indexes, see:
  2323. # https://matrix-org.github.io/synapse/latest/user_directory.html
  2324. #
  2325. # Uncomment to return search results containing all known users, even if that
  2326. # user does not share a room with the requester.
  2327. #
  2328. #search_all_users: true
  2329. # Defines whether to prefer local users in search query results.
  2330. # If True, local users are more likely to appear above remote users
  2331. # when searching the user directory. Defaults to false.
  2332. #
  2333. # Uncomment to prefer local over remote users in user directory search
  2334. # results.
  2335. #
  2336. #prefer_local_users: true
  2337. # User Consent configuration
  2338. #
  2339. # for detailed instructions, see
  2340. # https://matrix-org.github.io/synapse/latest/consent_tracking.html
  2341. #
  2342. # Parts of this section are required if enabling the 'consent' resource under
  2343. # 'listeners', in particular 'template_dir' and 'version'.
  2344. #
  2345. # 'template_dir' gives the location of the templates for the HTML forms.
  2346. # This directory should contain one subdirectory per language (eg, 'en', 'fr'),
  2347. # and each language directory should contain the policy document (named as
  2348. # '<version>.html') and a success page (success.html).
  2349. #
  2350. # 'version' specifies the 'current' version of the policy document. It defines
  2351. # the version to be served by the consent resource if there is no 'v'
  2352. # parameter.
  2353. #
  2354. # 'server_notice_content', if enabled, will send a user a "Server Notice"
  2355. # asking them to consent to the privacy policy. The 'server_notices' section
  2356. # must also be configured for this to work. Notices will *not* be sent to
  2357. # guest users unless 'send_server_notice_to_guests' is set to true.
  2358. #
  2359. # 'block_events_error', if set, will block any attempts to send events
  2360. # until the user consents to the privacy policy. The value of the setting is
  2361. # used as the text of the error.
  2362. #
  2363. # 'require_at_registration', if enabled, will add a step to the registration
  2364. # process, similar to how captcha works. Users will be required to accept the
  2365. # policy before their account is created.
  2366. #
  2367. # 'policy_name' is the display name of the policy users will see when registering
  2368. # for an account. Has no effect unless `require_at_registration` is enabled.
  2369. # Defaults to "Privacy Policy".
  2370. #
  2371. #user_consent:
  2372. # template_dir: res/templates/privacy
  2373. # version: 1.0
  2374. # server_notice_content:
  2375. # msgtype: m.text
  2376. # body: >-
  2377. # To continue using this homeserver you must review and agree to the
  2378. # terms and conditions at %(consent_uri)s
  2379. # send_server_notice_to_guests: true
  2380. # block_events_error: >-
  2381. # To continue using this homeserver you must review and agree to the
  2382. # terms and conditions at %(consent_uri)s
  2383. # require_at_registration: false
  2384. # policy_name: Privacy Policy
  2385. #
  2386. # Settings for local room and user statistics collection. See
  2387. # https://matrix-org.github.io/synapse/latest/room_and_user_statistics.html.
  2388. #
  2389. stats:
  2390. # Uncomment the following to disable room and user statistics. Note that doing
  2391. # so may cause certain features (such as the room directory) not to work
  2392. # correctly.
  2393. #
  2394. #enabled: false
  2395. # Server Notices room configuration
  2396. #
  2397. # Uncomment this section to enable a room which can be used to send notices
  2398. # from the server to users. It is a special room which cannot be left; notices
  2399. # come from a special "notices" user id.
  2400. #
  2401. # If you uncomment this section, you *must* define the system_mxid_localpart
  2402. # setting, which defines the id of the user which will be used to send the
  2403. # notices.
  2404. #
  2405. # It's also possible to override the room name, the display name of the
  2406. # "notices" user, and the avatar for the user.
  2407. #
  2408. #server_notices:
  2409. # system_mxid_localpart: notices
  2410. # system_mxid_display_name: "Server Notices"
  2411. # system_mxid_avatar_url: "mxc://server.com/oumMVlgDnLYFaPVkExemNVVZ"
  2412. # room_name: "Server Notices"
  2413. # Uncomment to disable searching the public room list. When disabled
  2414. # blocks searching local and remote room lists for local and remote
  2415. # users by always returning an empty list for all queries.
  2416. #
  2417. #enable_room_list_search: false
  2418. # The `alias_creation` option controls who's allowed to create aliases
  2419. # on this server.
  2420. #
  2421. # The format of this option is a list of rules that contain globs that
  2422. # match against user_id, room_id and the new alias (fully qualified with
  2423. # server name). The action in the first rule that matches is taken,
  2424. # which can currently either be "allow" or "deny".
  2425. #
  2426. # Missing user_id/room_id/alias fields default to "*".
  2427. #
  2428. # If no rules match the request is denied. An empty list means no one
  2429. # can create aliases.
  2430. #
  2431. # Options for the rules include:
  2432. #
  2433. # user_id: Matches against the creator of the alias
  2434. # alias: Matches against the alias being created
  2435. # room_id: Matches against the room ID the alias is being pointed at
  2436. # action: Whether to "allow" or "deny" the request if the rule matches
  2437. #
  2438. # The default is:
  2439. #
  2440. #alias_creation_rules:
  2441. # - user_id: "*"
  2442. # alias: "*"
  2443. # room_id: "*"
  2444. # action: allow
  2445. # The `room_list_publication_rules` option controls who can publish and
  2446. # which rooms can be published in the public room list.
  2447. #
  2448. # The format of this option is the same as that for
  2449. # `alias_creation_rules`.
  2450. #
  2451. # If the room has one or more aliases associated with it, only one of
  2452. # the aliases needs to match the alias rule. If there are no aliases
  2453. # then only rules with `alias: *` match.
  2454. #
  2455. # If no rules match the request is denied. An empty list means no one
  2456. # can publish rooms.
  2457. #
  2458. # Options for the rules include:
  2459. #
  2460. # user_id: Matches against the creator of the alias
  2461. # room_id: Matches against the room ID being published
  2462. # alias: Matches against any current local or canonical aliases
  2463. # associated with the room
  2464. # action: Whether to "allow" or "deny" the request if the rule matches
  2465. #
  2466. # The default is:
  2467. #
  2468. #room_list_publication_rules:
  2469. # - user_id: "*"
  2470. # alias: "*"
  2471. # room_id: "*"
  2472. # action: allow
  2473. # Server admins can define a Python module that implements extra rules for
  2474. # allowing or denying incoming events. In order to work, this module needs to
  2475. # override the methods defined in synapse/events/third_party_rules.py.
  2476. #
  2477. # This feature is designed to be used in closed federations only, where each
  2478. # participating server enforces the same rules.
  2479. #
  2480. #third_party_event_rules:
  2481. # module: "my_custom_project.SuperRulesSet"
  2482. # config:
  2483. # example_option: 'things'
  2484. ## Opentracing ##
  2485. # These settings enable opentracing, which implements distributed tracing.
  2486. # This allows you to observe the causal chains of events across servers
  2487. # including requests, key lookups etc., across any server running
  2488. # synapse or any other other services which supports opentracing
  2489. # (specifically those implemented with Jaeger).
  2490. #
  2491. opentracing:
  2492. # tracing is disabled by default. Uncomment the following line to enable it.
  2493. #
  2494. #enabled: true
  2495. # The list of homeservers we wish to send and receive span contexts and span baggage.
  2496. # See https://matrix-org.github.io/synapse/latest/opentracing.html.
  2497. #
  2498. # This is a list of regexes which are matched against the server_name of the
  2499. # homeserver.
  2500. #
  2501. # By default, it is empty, so no servers are matched.
  2502. #
  2503. #homeserver_whitelist:
  2504. # - ".*"
  2505. # A list of the matrix IDs of users whose requests will always be traced,
  2506. # even if the tracing system would otherwise drop the traces due to
  2507. # probabilistic sampling.
  2508. #
  2509. # By default, the list is empty.
  2510. #
  2511. #force_tracing_for_users:
  2512. # - "@user1:server_name"
  2513. # - "@user2:server_name"
  2514. # Jaeger can be configured to sample traces at different rates.
  2515. # All configuration options provided by Jaeger can be set here.
  2516. # Jaeger's configuration is mostly related to trace sampling which
  2517. # is documented here:
  2518. # https://www.jaegertracing.io/docs/latest/sampling/.
  2519. #
  2520. #jaeger_config:
  2521. # sampler:
  2522. # type: const
  2523. # param: 1
  2524. # logging:
  2525. # false
  2526. ## Workers ##
  2527. # Disables sending of outbound federation transactions on the main process.
  2528. # Uncomment if using a federation sender worker.
  2529. #
  2530. #send_federation: false
  2531. # It is possible to run multiple federation sender workers, in which case the
  2532. # work is balanced across them.
  2533. #
  2534. # This configuration must be shared between all federation sender workers, and if
  2535. # changed all federation sender workers must be stopped at the same time and then
  2536. # started, to ensure that all instances are running with the same config (otherwise
  2537. # events may be dropped).
  2538. #
  2539. #federation_sender_instances:
  2540. # - federation_sender1
  2541. # When using workers this should be a map from `worker_name` to the
  2542. # HTTP replication listener of the worker, if configured.
  2543. #
  2544. #instance_map:
  2545. # worker1:
  2546. # host: localhost
  2547. # port: 8034
  2548. # Experimental: When using workers you can define which workers should
  2549. # handle event persistence and typing notifications. Any worker
  2550. # specified here must also be in the `instance_map`.
  2551. #
  2552. #stream_writers:
  2553. # events: worker1
  2554. # typing: worker1
  2555. # The worker that is used to run background tasks (e.g. cleaning up expired
  2556. # data). If not provided this defaults to the main process.
  2557. #
  2558. #run_background_tasks_on: worker1
  2559. # A shared secret used by the replication APIs to authenticate HTTP requests
  2560. # from workers.
  2561. #
  2562. # By default this is unused and traffic is not authenticated.
  2563. #
  2564. #worker_replication_secret: ""
  2565. # Configuration for Redis when using workers. This *must* be enabled when
  2566. # using workers (unless using old style direct TCP configuration).
  2567. #
  2568. redis:
  2569. # Uncomment the below to enable Redis support.
  2570. #
  2571. #enabled: true
  2572. # Optional host and port to use to connect to redis. Defaults to
  2573. # localhost and 6379
  2574. #
  2575. #host: localhost
  2576. #port: 6379
  2577. # Optional password if configured on the Redis instance
  2578. #
  2579. #password: <secret_password>