Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

447 rivejä
23 KiB

  1. # SPDX-FileCopyrightText: 2019 - 2020 Lee Verberne
  2. # SPDX-FileCopyrightText: 2019 - 2022 MDAD project contributors
  3. # SPDX-FileCopyrightText: 2019 - 2025 Slavi Pantaleev
  4. # SPDX-FileCopyrightText: 2019 Aaron Raimist
  5. # SPDX-FileCopyrightText: 2019 Alexander Acevedo
  6. # SPDX-FileCopyrightText: 2019 Dan Arnfield
  7. # SPDX-FileCopyrightText: 2019 Hugues Morisset
  8. # SPDX-FileCopyrightText: 2019 Lyubomir Popov
  9. # SPDX-FileCopyrightText: 2019 Sylvia van Os
  10. # SPDX-FileCopyrightText: 2020 John Goerzen
  11. # SPDX-FileCopyrightText: 2021 - 2023 Thom Wiggers
  12. # SPDX-FileCopyrightText: 2021 Ahmad Haghighi
  13. # SPDX-FileCopyrightText: 2021 Joseph Walton-Rivers
  14. # SPDX-FileCopyrightText: 2021 Panagiotis Georgiadis
  15. # SPDX-FileCopyrightText: 2021 Sebastian Gumprich
  16. # SPDX-FileCopyrightText: 2022 Marko Weltzer
  17. # SPDX-FileCopyrightText: 2022 Nikita Chernyi
  18. # SPDX-FileCopyrightText: 2023 Samuel Meenzen
  19. #
  20. # SPDX-License-Identifier: AGPL-3.0-or-later
  21. ---
  22. # Matrix Appservice IRC is a Matrix <-> IRC bridge
  23. # Project source code URL: https://github.com/matrix-org/matrix-appservice-irc
  24. matrix_appservice_irc_enabled: true
  25. matrix_appservice_irc_container_image_self_build: false
  26. matrix_appservice_irc_docker_repo: "https://github.com/matrix-org/matrix-appservice-irc.git"
  27. matrix_appservice_irc_docker_repo_version: "{{ 'master' if matrix_appservice_irc_version == 'latest' else matrix_appservice_irc_version }}"
  28. matrix_appservice_irc_docker_src_files_path: "{{ matrix_base_data_path }}/appservice-irc/docker-src"
  29. # matrix_appservice_irc_version used to contain the full Docker image tag (e.g. `release-X.X.X`).
  30. # It's a bare version number now. We try to somewhat retain compatibility below.
  31. # renovate: datasource=docker depName=docker.io/matrixdotorg/matrix-appservice-irc
  32. matrix_appservice_irc_version: 1.0.1
  33. matrix_appservice_irc_docker_image: "{{ matrix_appservice_irc_docker_image_registry_prefix }}matrixdotorg/matrix-appservice-irc:{{ matrix_appservice_irc_docker_image_tag }}"
  34. matrix_appservice_irc_docker_image_registry_prefix: "{{ 'localhost/' if matrix_appservice_irc_container_image_self_build else matrix_appservice_irc_docker_image_registry_prefix_upstream }}"
  35. matrix_appservice_irc_docker_image_registry_prefix_upstream: "{{ matrix_appservice_irc_docker_image_registry_prefix_upstream_default }}"
  36. matrix_appservice_irc_docker_image_registry_prefix_upstream_default: docker.io/
  37. matrix_appservice_irc_docker_image_tag: "{{ 'latest' if matrix_appservice_irc_version == 'latest' else ('release-' + matrix_appservice_irc_version) }}"
  38. matrix_appservice_irc_docker_image_force_pull: "{{ matrix_appservice_irc_docker_image.endswith(':latest') }}"
  39. matrix_appservice_irc_base_path: "{{ matrix_base_data_path }}/appservice-irc"
  40. matrix_appservice_irc_config_path: "{{ matrix_appservice_irc_base_path }}/config"
  41. matrix_appservice_irc_data_path: "{{ matrix_appservice_irc_base_path }}/data"
  42. matrix_appservice_irc_homeserver_url: ""
  43. matrix_appservice_irc_homeserver_media_url: '{{ matrix_homeserver_url }}'
  44. matrix_appservice_irc_homeserver_domain: '{{ matrix_domain }}'
  45. matrix_appservice_irc_homeserver_enablePresence: true # noqa var-naming
  46. matrix_appservice_irc_appservice_address: 'http://matrix-appservice-irc:9999'
  47. matrix_appservice_irc_database_engine: nedb
  48. matrix_appservice_irc_database_username: matrix_appservice_irc
  49. matrix_appservice_irc_database_password: 'some-password'
  50. matrix_appservice_irc_database_hostname: ''
  51. matrix_appservice_irc_database_port: 5432
  52. matrix_appservice_irc_database_name: matrix_appservice_irc
  53. matrix_appservice_irc_database_sslmode: disable
  54. # The name of the container network to use when importing a NeDB database into Postgres.
  55. # For Postgres not working in a container, this can be left empty.
  56. matrix_appservice_irc_database_container_network: ''
  57. # This is just the Postgres connection string, if Postgres is used.
  58. # Naming clashes with `matrix_appservice_irc_database_connectionString` somewhat.
  59. matrix_appservice_irc_database_connection_string: 'postgresql://{{ matrix_appservice_irc_database_username }}:{{ matrix_appservice_irc_database_password }}@{{ matrix_appservice_irc_database_hostname }}:{{ matrix_appservice_irc_database_port }}/{{ matrix_appservice_irc_database_name }}?sslmode={{ matrix_appservice_irc_database_sslmode }}'
  60. # This is what actually goes into `database.connectionString` for the bridge.
  61. matrix_appservice_irc_database_connectionString: |- # noqa var-naming
  62. {{
  63. {
  64. 'nedb': 'nedb:///data',
  65. 'postgres': matrix_appservice_irc_database_connection_string,
  66. }[matrix_appservice_irc_database_engine]
  67. }}
  68. matrix_appservice_irc_ircService_servers: [] # noqa var-naming
  69. # Example of `matrix_appservice_irc_ircService_servers` with one server (and all its options):
  70. #
  71. # matrix_appservice_irc_ircService_servers:
  72. # # The address of the server to connect to.
  73. # irc.example.com:
  74. # # A human-readable short name. This is used to label IRC status rooms
  75. # # where Matrix users control their connections.
  76. # # E.g. 'ExampleNet IRC Bridge status'.
  77. # # It is also used in the Third Party Lookup API as the instance `desc`
  78. # # property, where each server is an instance.
  79. # name: "ExampleNet"
  80. # additionalAddresses: [ "irc2.example.com" ]
  81. # #
  82. # # [DEPRECATED] Use `name`, above, instead.
  83. # # A human-readable description string
  84. # # description: "Example.com IRC network"
  85. # # An ID for uniquely identifying this server amongst other servers being bridged.
  86. # # networkId: "example"
  87. # # URL to an icon used as the network icon whenever this network appear in
  88. # # a network list. (Like in the Riot room directory, for instance.)
  89. # # icon: https://example.com/images/hash.png
  90. # # The port to connect to. Optional.
  91. # port: 6697
  92. # # Whether to use SSL or not. Default: false.
  93. # ssl: true
  94. # # Whether or not IRC server is using a self-signed cert or not providing CA Chain
  95. # sslselfsign: false
  96. # # Should the connection attempt to identify via SASL (if a server or user password is given)
  97. # # If false, this will use PASS instead. If SASL fails, we do not fallback to PASS.
  98. # sasl: false
  99. # # Whether to allow expired certs when connecting to the IRC server.
  100. # # Usually this should be off. Default: false.
  101. # allowExpiredCerts: false
  102. # # A specific CA to trust instead of the default CAs. Optional.
  103. # #ca: |
  104. # # -----BEGIN CERTIFICATE-----
  105. # # …
  106. # # -----END CERTIFICATE-----
  107. # #
  108. # # The connection password to send for all clients as a PASS (or SASL, if enabled above) command. Optional.
  109. # # password: 'pa$$w0rd'
  110. # #
  111. # # Whether or not to send connection/error notices to real Matrix users. Default: true.
  112. # sendConnectionMessages: true
  113. # quitDebounce:
  114. # # Whether parts due to net-splits are debounced for delayMs, to allow
  115. # # time for the netsplit to resolve itself. A netsplit is detected as being
  116. # # a QUIT rate higher than quitsPerSecond. Default: false.
  117. # enabled: false
  118. # # The maximum number of quits per second acceptable above which a netsplit is
  119. # # considered ongoing. Default: 5.
  120. # quitsPerSecond: 5
  121. # # The time window in which to wait before bridging a QUIT to Matrix that occurred during
  122. # # a netsplit. Debouncing is jittered randomly between delayMinMs and delayMaxMs so that the HS
  123. # # is not sent many requests to leave rooms all at once if a netsplit occurs and many
  124. # # people to not rejoin.
  125. # # If the user with the same IRC nick as the one who sent the quit rejoins a channel
  126. # # they are considered back online and the quit is not bridged, so long as the rejoin
  127. # # occurs before the randomly-jittered timeout is not reached.
  128. # # Default: 3600000, = 1h
  129. # delayMinMs: 3600000 # 1h
  130. # # Default: 7200000, = 2h
  131. # delayMaxMs: 7200000 # 2h
  132. # # A map for conversion of IRC user modes to Matrix power levels. This enables bridging
  133. # # of IRC ops to Matrix power levels only, it does not enable the reverse. If a user has
  134. # # been given multiple modes, the one that maps to the highest power level will be used.
  135. # modePowerMap:
  136. # o: 50
  137. # botConfig:
  138. # # Enable the presence of the bot in IRC channels. The bot serves as the entity
  139. # # which maps from IRC -> Matrix. You can disable the bot entirely which
  140. # # means IRC -> Matrix chat will be shared by active "M-Nick" connections
  141. # # in the room. If there are no users in the room (or if there are users
  142. # # but their connections are not on IRC) then nothing will be bridged to
  143. # # Matrix. If you're concerned about the bot being treated as a "logger"
  144. # # entity, then you may want to disable the bot. If you want IRC->Matrix
  145. # # but don't want to have TCP connections to IRC unless a Matrix user speaks
  146. # # (because your client connection limit is low), then you may want to keep
  147. # # the bot enabled. Default: true.
  148. # # NB: If the bot is disabled, you SHOULD have matrix-to-IRC syncing turned
  149. # # on, else there will be no users and no bot in a channel (meaning no
  150. # # messages to Matrix!) until a Matrix user speaks which makes a client
  151. # # join the target IRC channel.
  152. # # NBB: The bridge bot IRC client will still join the target IRC network so
  153. # # it can service bridge-specific queries from the IRC-side e.g. so
  154. # # real IRC clients have a way to change their Matrix display name.
  155. # # See https://github.com/matrix-org/matrix-appservice-irc/issues/55
  156. # enabled: true
  157. # # The nickname to give the AS bot.
  158. # nick: "MatrixBot"
  159. # # The password to give to NickServ or IRC Server for this nick. Optional.
  160. # # password: "helloworld"
  161. # #
  162. # # Join channels even if there are no Matrix users on the other side of
  163. # # the bridge. Set to false to prevent the bot from joining channels which have no
  164. # # real Matrix users in them, even if there is a mapping for the channel.
  165. # # Default: true
  166. # joinChannelsIfNoUsers: true
  167. # # Configuration for PMs / private 1:1 communications between users.
  168. # privateMessages:
  169. # # Enable the ability for PMs to be sent to/from IRC/Matrix.
  170. # # Default: true.
  171. # enabled: true
  172. # # Prevent Matrix users from sending PMs to the following IRC nicks.
  173. # # Optional. Default: [].
  174. # # exclude: ["Alice", "Bob"] # NOT YET IMPLEMENTED
  175. # # Should created Matrix PM rooms be federated? If false, only users on the
  176. # # HS attached to this AS will be able to interact with this room.
  177. # # Optional. Default: true.
  178. # federate: true
  179. # # Configuration for mappings not explicitly listed in the 'mappings'
  180. # # section.
  181. # dynamicChannels:
  182. # # Enable the ability for Matrix users to join *any* channel on this IRC
  183. # # network.
  184. # # Default: false.
  185. # enabled: true
  186. # # Should the AS create a room alias for the new Matrix room? The form of
  187. # # the alias can be modified via 'aliasTemplate'. Default: true.
  188. # createAlias: true
  189. # # Should the AS publish the new Matrix room to the public room list so
  190. # # anyone can see it? Default: true.
  191. # published: true
  192. # # What should the join_rule be for the new Matrix room? If 'public',
  193. # # anyone can join the room. If 'invite', only users with an invite can
  194. # # join the room. Note that if an IRC channel has +k or +i set on it,
  195. # # join_rules will be set to 'invite' until these modes are removed.
  196. # # Default: "public".
  197. # joinRule: public
  198. # # This will set the m.room.related_groups state event in newly created rooms
  199. # # with the given groupId. This means flares will show up on IRC users in those rooms.
  200. # # This should be set to the same thing as namespaces.users.group_id in irc_registration.
  201. # # This does not alter existing rooms.
  202. # # Leaving this option empty will not set the event.
  203. # groupId: +myircnetwork:localhost
  204. # # Should created Matrix rooms be federated? If false, only users on the
  205. # # HS attached to this AS will be able to interact with this room.
  206. # # Default: true.
  207. # federate: true
  208. # # The room alias template to apply when creating new aliases. This only
  209. # # applies if createAlias is 'true'. The following variables are exposed:
  210. # # $SERVER => The IRC server address (e.g. "irc.example.com")
  211. # # $CHANNEL => The IRC channel (e.g. "#python")
  212. # # This MUST have $CHANNEL somewhere in it.
  213. # # Default: '#irc_$SERVER_$CHANNEL'
  214. # aliasTemplate: "#irc_$CHANNEL"
  215. # # A list of user IDs which the AS bot will send invites to in response
  216. # # to a !join. Only applies if joinRule is 'invite'. Default: []
  217. # # whitelist:
  218. # # - "@foo:example.com"
  219. # # - "@bar:example.com"
  220. # #
  221. # # Prevent the given list of channels from being mapped under any
  222. # # circumstances.
  223. # # exclude: ["#foo", "#bar"]
  224. # # Configuration for controlling how Matrix and IRC membership lists are
  225. # # synced.
  226. # membershipLists:
  227. # # Enable the syncing of membership lists between IRC and Matrix. This
  228. # # can have a significant effect on performance on startup as the lists are
  229. # # synced. This must be enabled for anything else in this section to take
  230. # # effect. Default: false.
  231. # enabled: false
  232. # # Syncing membership lists at startup can result in hundreds of members to
  233. # # process all at once. This timer drip feeds membership entries at the
  234. # # specified rate. Default: 10000. (10s)
  235. # floodDelayMs: 10000
  236. # global:
  237. # ircToMatrix:
  238. # # Get a snapshot of all real IRC users on a channel (via NAMES) and
  239. # # join their virtual Matrix clients to the room.
  240. # initial: false
  241. # # Make virtual Matrix clients join and leave rooms as their real IRC
  242. # # counterparts join/part channels. Default: false.
  243. # incremental: false
  244. # matrixToIrc:
  245. # # Get a snapshot of all real Matrix users in the room and join all of
  246. # # them to the mapped IRC channel on startup. Default: false.
  247. # initial: false
  248. # # Make virtual IRC clients join and leave channels as their real Matrix
  249. # # counterparts join/leave rooms. Make sure your 'maxClients' value is
  250. # # high enough! Default: false.
  251. # incremental: false
  252. # # Apply specific rules to Matrix rooms. Only matrix-to-IRC takes effect.
  253. # rooms:
  254. # - room: "!qporfwt:localhost"
  255. # matrixToIrc:
  256. # initial: false
  257. # incremental: false
  258. # # Apply specific rules to IRC channels. Only IRC-to-matrix takes effect.
  259. # channels:
  260. # - channel: "#foo"
  261. # ircToMatrix:
  262. # initial: false
  263. # incremental: false
  264. # mappings:
  265. # # 1:many mappings from IRC channels to room IDs on this IRC server.
  266. # # The Matrix room must already exist. Your Matrix client should expose
  267. # # the room ID in a "settings" page for the room.
  268. # "#thepub":
  269. # roomIds: ["!qporfwt:localhost"]
  270. # # Channel key/password to use. Optional. If provided, Matrix users do
  271. # # not need to know the channel key in order to join the channel.
  272. # # key: "secret"
  273. # # Configuration for virtual Matrix users. The following variables are
  274. # # exposed:
  275. # # $NICK => The IRC nick
  276. # # $SERVER => The IRC server address (e.g. "irc.example.com")
  277. # matrixClients:
  278. # # The user ID template to use when creating virtual Matrix users. This
  279. # # MUST have $NICK somewhere in it.
  280. # # Optional. Default: "@$SERVER_$NICK".
  281. # # Example: "@irc.example.com_Alice:example.com"
  282. # userTemplate: "@irc_$NICK"
  283. # # The display name to use for created Matrix clients. This should have
  284. # # $NICK somewhere in it if it is specified. Can also use $SERVER to
  285. # # insert the IRC domain.
  286. # # Optional. Default: "$NICK (IRC)". Example: "Alice (IRC)"
  287. # displayName: "$NICK (IRC)"
  288. # # Number of tries a client can attempt to join a room before the request
  289. # # is discarded. You can also use -1 to never retry or 0 to never give up.
  290. # # Optional. Default: -1
  291. # joinAttempts: -1
  292. # # Configuration for virtual IRC users. The following variables are exposed:
  293. # # $LOCALPART => The user ID localpart ("alice" in @alice:localhost)
  294. # # $USERID => The user ID
  295. # # $DISPLAY => The display name of this user, with excluded characters
  296. # # (e.g. space) removed. If the user has no display name, this
  297. # # falls back to $LOCALPART.
  298. # ircClients:
  299. # # The template to apply to every IRC client nick. This MUST have either
  300. # # $DISPLAY or $USERID or $LOCALPART somewhere in it.
  301. # # Optional. Default: "M-$DISPLAY". Example: "M-Alice".
  302. # nickTemplate: "$DISPLAY[m]"
  303. # # True to allow virtual IRC clients to change their nick on this server
  304. # # by issuing !nick <server> <nick> commands to the IRC AS bot.
  305. # # This is completely freeform: it will NOT follow the nickTemplate.
  306. # allowNickChanges: true
  307. # # The max number of IRC clients that will connect. If the limit is
  308. # # reached, the client that spoke the longest time ago will be
  309. # # disconnected and replaced.
  310. # # Optional. Default: 30.
  311. # maxClients: 30
  312. # # IPv6 configuration.
  313. # ipv6:
  314. # # Optional. Set to true to force IPv6 for outgoing connections.
  315. # only: false
  316. # # Optional. The IPv6 prefix to use for generating unique addresses for each
  317. # # connected user. If not specified, all users will connect from the same
  318. # # (default) address. This may require additional OS-specific work to allow
  319. # # for the node process to bind to multiple different source addresses
  320. # # e.g IP_FREEBIND on Linux, which requires an LD_PRELOAD with the library
  321. # # https://github.com/matrix-org/freebindfree as Node does not expose setsockopt.
  322. # # prefix: "2001:0db8:85a3::" # modify appropriately
  323. # #
  324. # # The maximum amount of time in seconds that the client can exist
  325. # # without sending another message before being disconnected. Use 0 to
  326. # # not apply an idle timeout. This value is ignored if this IRC server is
  327. # # mirroring Matrix membership lists to IRC. Default: 172800 (48 hours)
  328. # idleTimeout: 10800
  329. # # The number of milliseconds to wait between consecutive reconnections if a
  330. # # client gets disconnected. Setting to 0 will cause the scheduling to be
  331. # # disabled, i.e. it will be scheduled immediately (with jitter.
  332. # # Otherwise, the scheduling interval will be used such that one client
  333. # # reconnect for this server will be handled every reconnectIntervalMs ms using
  334. # # a FIFO queue.
  335. # # Default: 5000 (5 seconds)
  336. # reconnectIntervalMs: 5000
  337. # # The number of concurrent reconnects if a user has been disconnected unexpectedly
  338. # # (e.g. a netsplit). You should set this to a reasonably high number so that
  339. # # bridges are not waiting an eternity to reconnect all its clients if
  340. # # we see a massive number of disconnect. This is unrelated to the reconnectIntervalMs
  341. # # setting above which is for connecting on restart of the bridge. Set to 0 to
  342. # # immediately try to reconnect all users.
  343. # # Default: 50
  344. # concurrentReconnectLimit: 50
  345. # # The number of lines to allow being sent by the IRC client that has received
  346. # # a large block of text to send from matrix. If the number of lines that would
  347. # # be sent is > lineLimit, the text will instead be uploaded to Matrix and the
  348. # # resulting URI is treated as a file. As such, a link will be sent to the IRC
  349. # # side instead of potentially spamming IRC and getting the IRC client kicked.
  350. # # Default: 3.
  351. # lineLimit: 3
  352. # # A list of user modes to set on every IRC client. For example, "RiG" would set
  353. # # +R, +i and +G on every IRC connection when they have successfully connected.
  354. # # User modes vary wildly depending on the IRC network you're connecting to,
  355. # # so check before setting this value. Some modes may not work as intended
  356. # # through the bridge e.g. caller ID as there is no way to /ACCEPT.
  357. # # Default: "" (no user modes)
  358. # # userModes: "R"
  359. # Controls whether the matrix-appservice-discord container exposes its HTTP port (tcp/9999 in the container).
  360. #
  361. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:9999"), or empty string to not expose.
  362. matrix_appservice_irc_container_http_host_bind_port: ''
  363. matrix_appservice_irc_container_network: ""
  364. matrix_appservice_irc_container_additional_networks: "{{ matrix_appservice_irc_container_additional_networks_auto + matrix_appservice_irc_container_additional_networks_custom }}"
  365. matrix_appservice_irc_container_additional_networks_auto: []
  366. matrix_appservice_irc_container_additional_networks_custom: []
  367. # A list of extra arguments to pass to the container
  368. matrix_appservice_irc_container_extra_arguments: []
  369. # List of systemd services that matrix-appservice-irc.service depends on.
  370. matrix_appservice_irc_systemd_required_services_list: "{{ matrix_appservice_irc_systemd_required_services_list_default + matrix_appservice_irc_systemd_required_services_list_auto + matrix_appservice_irc_systemd_required_services_list_custom }}"
  371. matrix_appservice_irc_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  372. matrix_appservice_irc_systemd_required_services_list_auto: []
  373. matrix_appservice_irc_systemd_required_services_list_custom: []
  374. # List of systemd services that matrix-appservice-irc.service wants
  375. matrix_appservice_irc_systemd_wanted_services_list: []
  376. matrix_appservice_irc_appservice_token: ''
  377. matrix_appservice_irc_homeserver_token: ''
  378. matrix_appservice_irc_configuration_yaml: "{{ lookup('template', 'templates/config.yaml.j2') }}"
  379. matrix_appservice_irc_configuration_extension_yaml: |
  380. # Your custom YAML configuration for Appservice IRC servers goes here.
  381. # This configuration extends the default starting configuration (`matrix_appservice_irc_configuration_yaml`).
  382. #
  383. # You can override individual variables from the default configuration, or introduce new ones.
  384. #
  385. # If you need something more special, you can take full control by
  386. # completely redefining `matrix_appservice_irc_configuration_yaml`.
  387. matrix_appservice_irc_configuration_extension: "{{ matrix_appservice_irc_configuration_extension_yaml | from_yaml if matrix_appservice_irc_configuration_extension_yaml | from_yaml is mapping else {} }}"
  388. matrix_appservice_irc_configuration: "{{ matrix_appservice_irc_configuration_yaml | from_yaml | combine(matrix_appservice_irc_configuration_extension, recursive=True) }}"
  389. # The original registration.yaml file generated by AppService IRC is merged with this config override,
  390. # to produce the final registration.yaml file ultimately used by both the bridge and the homeserver.
  391. #
  392. # We do this to ensure consistency:
  393. # - always having an up-to-date registration.yaml file (synced with the configuration file)
  394. # - always having the same AS/HS token and appservice ID in the registration.yaml file
  395. #
  396. # Learn more about this in `setup_install.yml`
  397. matrix_appservice_irc_registration_override_yaml: |
  398. id: appservice-irc
  399. as_token: "{{ matrix_appservice_irc_appservice_token }}"
  400. hs_token: "{{ matrix_appservice_irc_homeserver_token }}"
  401. matrix_appservice_irc_registration_override: "{{ matrix_appservice_irc_registration_override_yaml | from_yaml }}"