Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

39 行
1.4 KiB

  1. # SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. # matrix_user_creator_users holds a list of users that should be created on the Matrix homeserver.
  6. #
  7. # Removing a user from this list will not automatically delete/disable the Matrix user on the homeserver.
  8. #
  9. # As the `initial_password` / `initial_type` field names indicate, these are just initial values.
  10. # Changing the password or type values subsequently will not update the already existing user's details.
  11. #
  12. # The known user types are: 'admin', 'user', 'bot', 'support'.
  13. # These are inspired by Synapse's user types.
  14. # 'admin' and 'user' types are generally recognized across homeservers.
  15. # Other homeservers may not support 'bot' and 'support'. Such homeservers will fall back to whatever types they do support.
  16. #
  17. # Example:
  18. # matrix_user_creator_users:
  19. # - username: root
  20. # initial_password: some-password
  21. # initial_type: admin
  22. #
  23. # - username: alice
  24. # initial_password: some-password
  25. # initial_type: user
  26. #
  27. # - username: bot.matrix-reminder-bot
  28. # initial_password: some-password
  29. # initial_type: bot
  30. #
  31. # - username: bot.matrix-reminder-bot
  32. # initial_password: some-password
  33. # initial_type: support
  34. #
  35. # To create you own users, use the `matrix_user_creator_users_additional` variable.
  36. matrix_user_creator_users: "{{ matrix_user_creator_users_auto + matrix_user_creator_users_additional }}"