configuration.rst 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199
  1. .. raw:: html
  2. <div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/configuration.rst">Edit me on GitHub</a></div>
  3. =============
  4. Configuration
  5. =============
  6. The included minified JavaScript and CSS files can be used for demoing or testing, but
  7. you'll want to configure Converse to suit your needs before you deploy it
  8. on your website.
  9. Converse is passed its configuration settings when you call its *initialize* method.
  10. You'll most likely want to call the *initialize* method in your HTML page. For
  11. an example of how this is done, please see the bottom of the *./index.html* page.
  12. Please refer to the `Configuration settings`_ section below for info on
  13. all the available configuration settings.
  14. .. _`configuration-settings`:
  15. Configuration settings
  16. ======================
  17. authentication
  18. --------------
  19. * Default: ``login``
  20. * Allowed values: `login`_, `external`, `anonymous`_, `prebind`_
  21. This option states the way Converse will authenticate.
  22. login
  23. ~~~~~
  24. The default means is ``login``, which means that the user either logs in manually with their
  25. username and password, or automatically if used together with `auto_login`_ set to ``true``
  26. and ``jid`` and ``password`` values.
  27. external
  28. ~~~~~~~~
  29. This setting will still show a login form and submit button, but the form will
  30. only contain an input for the user's JID, *not* for the password.
  31. That's because this setting is intended to be used when you are using
  32. SASL-EXTERNAL as authentication mechanism, in which case a password is usually
  33. not required.
  34. SASL-EXTERNAL is generally used together with x509 client certificates to
  35. enable passwordless login or 2-factor authentication.
  36. For more details on this, `read this blog post <https://opkode.com/blog/strophe_converse_sasl_external/>`_.
  37. anonymous
  38. ~~~~~~~~~
  39. This enables anonymous login if the XMPP server supports it. This option can be
  40. used together with `auto_login`_ to automatically and anonymously log a user in
  41. as soon as the page loads.
  42. The server's domain is passed in via the `jid`_ setting.
  43. .. _`prebind`:
  44. prebind
  45. ~~~~~~~
  46. See also: :ref:`session-support`
  47. Use this option when you want to attach to an existing XMPP
  48. `BOSH <https://en.wikipedia.org/wiki/BOSH>`_ session.
  49. Usually a BOSH session is set up server-side in your web app.
  50. Attaching to an existing BOSH session that was set up server-side is useful
  51. when you want to maintain a persistent single session for your users instead of
  52. requiring them to log in manually.
  53. When a BOSH session is initially created, you'll receive three tokens.
  54. A JID (jabber ID), SID (session ID) and RID (Request ID).
  55. Converse needs these tokens in order to attach to that same session.
  56. In addition to setting `authentication`_ to ``prebind``, you'll also need to
  57. set the `prebind_url`_ and `bosh-service-url`_.
  58. Here's an example of Converse being initialized with these options:
  59. .. code-block:: javascript
  60. converse.initialize({
  61. bosh_service_url: 'https://bind.example.com',
  62. jid: 'me@example.com',
  63. authentication: 'prebind',
  64. prebind_url: 'http://example.com/api/prebind',
  65. auto_login: true,
  66. allow_logout: false
  67. });
  68. allow_adhoc_commands
  69. --------------------
  70. * Default: ``true``
  71. Allows privileged users to run XEP-0050 Ad-Hoc commands via the settings modal.
  72. allow_bookmarks
  73. ---------------
  74. * Default: ``true``
  75. Enables/disables chatroom bookmarks functionality.
  76. This setting is only applicable if the ``converse-bookmarks`` plugin is loaded.
  77. See also: `allow_public_bookmarks`_
  78. allow_chat_pending_contacts
  79. ---------------------------
  80. * Default: ``false``
  81. Allow the user to chat with pending contacts.
  82. allow_contact_removal
  83. ---------------------
  84. * Default: ``true``
  85. Allow the user to remove roster contacts by clicking on the delete icon
  86. (i.e. trashcan) next to a contact's name in the roster.
  87. allow_contact_requests
  88. ----------------------
  89. * Default: ``true``
  90. Allow users to add one another as contacts. If this is set to false, the
  91. **Add a contact** widget, **Contact Requests** and **Pending Contacts** roster
  92. sections will all not appear. Additionally, all incoming contact requests will be
  93. ignored.
  94. allow_dragresize
  95. ----------------
  96. * Default: ``true``
  97. Allow users to resize chats by dragging the edges. The min-height and min-width
  98. CSS properties set on a chatboxes (specifically on the ``#converse.js .chatbox > .box-flyout`` element)
  99. will be honored, IF they are set in pixels.
  100. allow_logout
  101. ------------
  102. * Default: ``true``
  103. Determines whether the user is allowed to log out. If set to ``false``, there will be no logout button.
  104. .. _`allow_message_corrections`:
  105. allow_message_corrections
  106. -------------------------
  107. * Default: ``'all'``
  108. * Possible values: ``'all'``, ``'last'``
  109. Configures the last message correction (LMC) feature of Converse. By default you can edit all of your own
  110. messages. Setting this to ``'last'`` will limit this feature to the message sent most recently as suggested by
  111. `XEP-0308: Last Message Correction <https://xmpp.org/extensions/xep-0308.html>`_.
  112. Setting it to anything else (including ``false``) will disable the ability to correct sent messages.
  113. allow_message_retraction
  114. ------------------------
  115. * Default: ``'all'``
  116. * Possible values: ``'all'``, ``'own'``, ``'moderator'`` or any falsy value
  117. Determines who is allowed to retract messages. If set to ``'all'``, then normal
  118. users may retract their own messages and ``'moderators'`` may retract the messages of
  119. other users.
  120. allow_message_styling
  121. ---------------------
  122. * Default: ``true``
  123. * Possible values: ``true``, ``false``
  124. Determines wehether support for XEP-0393 Message Styling hints are enabled or not.
  125. allow_muc
  126. ---------
  127. * Default: ``true``
  128. Allow multi-user chat (muc) in chatrooms. Setting this to ``false`` will remove
  129. the ``Chatrooms`` tab from the control box.
  130. allow_muc_invitations
  131. ---------------------
  132. * Default: ``true``
  133. Allows users to be invited to join MUC chatrooms. An "Invite" widget will
  134. appear in the sidebar of the chatroom where you can type in the JID of a user
  135. to invite into the chatroom.
  136. .. _`allow_non_roster_messaging`:
  137. allow_non_roster_messaging
  138. --------------------------
  139. * Default: ``false``
  140. Determines whether you'll receive messages from users that are not in your
  141. roster. The XMPP specification allows for this (similar to email).
  142. Setting this to ``true`` increases your chances of receiving spam (when using a
  143. federated server), while setting it to ``false`` means that people not on your
  144. roster can't contact you unless one (or both) of you subscribe to one another's
  145. presence (i.e. adding as a roster contact).
  146. allow_public_bookmarks
  147. ----------------------
  148. * Default: ``false``
  149. Some XMPP servers don't support private PEP/PubSub nodes, as required for
  150. private bookmarks and outlined in `XEP-0223 <https://xmpp.org/extensions/xep-0223.html>`_.
  151. Even though Converse asks for the bookmarks to be kept private (via the
  152. `<publish-options>` XML node), the server simply ignores the privacy settings
  153. and publishes the node contents under the default privacy setting, which makes
  154. the information available to all roster contacts.
  155. If your XMPP server does not support `XEP-0223`'s ``#publish-options``
  156. feature and you don't mind that your room bookmarks are visible to all
  157. contacts, then you can set this setting to ``true``. Otherwise you won't be
  158. able to have any room bookmarks at all for an account on that XMPP server.
  159. allow_registration
  160. ------------------
  161. * Default: ``true``
  162. Support for `XEP-0077: In band registration <https://xmpp.org/extensions/xep-0077.html>`_
  163. Allow XMPP account registration showing the corresponding UI register form interface.
  164. allow_user_trust_override
  165. -------------------------
  166. * Default: ``true``
  167. * Allowed values: ``true``, ``false``, ``off``
  168. This setting determines whether a user may decide whether
  169. Converse is ``trusted`` or not (e.g. in the particular browser).
  170. This is done via a *This is a trusted device* checkbox in the login form.
  171. If this setting is set to ``true`` or ``off``, the checkbox will be shown to the user, otherwise not.
  172. When this setting is set to ``true``, the checkbox will be checked by default.
  173. To not have it checked by default, set this setting to ``off``.
  174. If the user indicates that this device/browser is not trusted, then effectively
  175. it's the same as setting `clear_cache_on_logout`_ to ``true``
  176. and `persistent_store`_ to ``sessionStorage``.
  177. ``sessionStorage`` only persists while the current tab or window containing a Converse instance is open.
  178. As soon as it's closed, the data is cleared.
  179. The data that is cached (or cleared) includes your sent and received messages, which chats you had
  180. open, what features the XMPP server supports and what your online status was.
  181. Clearing the cache makes Converse much slower when the user logs in again, because all data needs to be fetch anew.
  182. archived_messages_page_size
  183. ---------------------------
  184. * Default: ``50``
  185. See also: `message_archiving`_
  186. This feature applies to `XEP-0313: Message Archive Management (MAM) <https://xmpp.org/extensions/xep-0313.html>`_
  187. and will only take effect if your server supports MAM.
  188. It allows you to specify the maximum amount of archived messages to be returned per query.
  189. When you open a chatbox or room, archived messages will be displayed (if
  190. available) and the amount returned will be no more than the page size.
  191. You will be able to query for even older messages by scrolling upwards in the chatbox or room
  192. (the so-called infinite scrolling pattern).
  193. autocomplete_add_contact
  194. ------------------------
  195. * Default: ``true``
  196. Determines whether search suggestions are shown in the "Add Contact" modal.
  197. auto_focus
  198. ----------
  199. * Default: ``true``
  200. If set to ``true``, the textarea for composing chat messages will automatically
  201. become focused as soon as a chat is opened. This means you don't need to click
  202. the textarea first before starting to type a message. This also applies to the
  203. username field which is automatically focused after the login controlbox is
  204. loaded.
  205. For applications where chat is not the main feature, automatic focus of the
  206. chat box might be undesired.
  207. auto_list_rooms
  208. ---------------
  209. * Default: ``false``
  210. If true, and the XMPP server on which the current user is logged in supports
  211. multi-user chat, then a list of rooms on that server will be fetched in the
  212. "Query for Groupchats" modal.
  213. Not recommended for servers with lots of chatrooms.
  214. For each room on the server a query is made to fetch further details (e.g.
  215. features, number of occupants etc.), so on servers with many rooms this
  216. option will create lots of extra connection traffic.
  217. If the `muc_domain`_ is locked with the `locked_muc_domain`_ setting, then
  218. rooms will automatically be fetched in the "Query for Groupchats" modal,
  219. regardless of the value of this setting.
  220. .. _`auto_login`:
  221. auto_login
  222. ----------
  223. * Default: ``false``
  224. This option can be used to let Converse automatically log the user in as
  225. soon as the page loads.
  226. If `authentication`_ is set to ``login``, then you will also need to provide a
  227. valid ``jid`` and ``password`` values, either manually by passing them in, or
  228. by the `credentials_url`_ setting. Setting a ``credentials_url`` is preferable
  229. to manually passing in ``jid`` and ``password`` values, because it allows
  230. better reconnection with `auto_reconnect`_. When the connection drops,
  231. Converse will automatically fetch new login credentials from the
  232. ``credentials_url`` and reconnect.
  233. If `authentication`_ is set to ``anonymous``, then you will also need to provide the
  234. server's domain via the `jid`_ setting.
  235. This is a useful setting if you'd like to create a custom login form in your
  236. website. You'll need to write some JavaScript to accept that custom form's
  237. login credentials, then you can pass those credentials (``jid`` and
  238. ``password``) to ``converse.initialize`` to start Converse and log the user
  239. in to their XMPP account.
  240. .. note::
  241. The interaction between ``keepalive`` and ``auto_login`` is unfortunately
  242. inconsistent depending on the `authentication`_ method used.
  243. If ``auto_login`` is set to ``false`` and `authentication`_ is set to
  244. ``anonymous``, ``external`` or ``prebind``, then Converse won't automatically
  245. log the user in.
  246. If `authentication`_ set to ``login`` the situation is much more
  247. ambiguous, since we don't have a way to distinguish between wether we're
  248. restoring a previous session (``keepalive``) or whether we're
  249. automatically setting up a new session (``auto_login``).
  250. So currently if EITHER ``keepalive`` or ``auto_login`` is ``true`` and
  251. `authentication`_ is set to ``login``, then Converse will try to log the user in.
  252. auto_away
  253. ---------
  254. * Default: ``0``
  255. The amount of seconds after which the user's presence status should
  256. automatically become ``away``.
  257. If the user's status is ``extended away``, it won't be changed to ``away``.
  258. If the given value is negative or ``0``, this option is disabled.
  259. auto_xa
  260. -------
  261. * Default: ``0``
  262. The amount of seconds after which the user's presence status should
  263. automatically become ``extended away``.
  264. If the value is negative or ``0``, the function is disabled.
  265. auto_reconnect
  266. --------------
  267. * Default: ``false``
  268. Automatically reconnect to the XMPP server if the connection drops
  269. unexpectedly.
  270. This option works best when you have `authentication`_ set to ``prebind`` and have
  271. also specified a ``prebind_url`` URL, from where Converse can fetch the BOSH
  272. tokens. In this case, Converse will automaticallly reconnect when the
  273. connection drops but also reestablish earlier lost connections (due to
  274. network outages, closing your laptop etc.).
  275. When `authentication`_ is set to `login`, then this option will only work when
  276. the page hasn't been reloaded yet, because then the user's password has been
  277. wiped from memory. This configuration can however still be useful when using
  278. Converse in desktop apps, for example those based on `CEF <https://bitbucket.org/chromiumembedded/cef>`_
  279. or `electron <http://electron.atom.io/>`_.
  280. auto_register_muc_nickname
  281. --------------------------
  282. * Default: ``false``
  283. Determines whether Converse should automatically register a user's nickname
  284. when they enter a groupchat.
  285. See here fore more details: https://xmpp.org/extensions/xep-0045.html#register
  286. auto_subscribe
  287. --------------
  288. * Default: ``false``
  289. If true, the user will automatically subscribe back to any contact requests.
  290. auto_join_on_invite
  291. -------------------
  292. * Default: ``false``
  293. If true, the user will automatically join a chatroom on invite without any confirm.
  294. Also inviting users won't be prompted for a reason.
  295. auto_join_private_chats
  296. -----------------------
  297. * Default: ``[]``
  298. Allows you to provide a list of user JIDs for private (i.e. single) chats that
  299. should automatically be started upon login.
  300. For example::
  301. `['tom@example.org', 'dick@example.org', 'harry@example.org']`
  302. auto_join_rooms
  303. ---------------
  304. * Default: ``[]``
  305. This settings allows you to provide a list of groupchat conversations to be
  306. automatically joined once the user has logged in.
  307. You can either specify a simple list of room JIDs, in which case your nickname
  308. will be taken from your JID, or you can specify a list of maps, where each map
  309. specifies the room's JID and other options.
  310. For example::
  311. `[{'jid': 'room@example.org', 'nick': 'WizardKing69', 'minimized': true }]`
  312. blacklisted_plugins
  313. -------------------
  314. * Default: ``[]``
  315. A list of plugin names that are blacklisted and will therefore not be
  316. initialized once ``converse.initialize`` is called, even if the same plugin is
  317. whitelisted.
  318. From Converse 3.0 onwards most of the API is available only to plugins and
  319. all plugins need to be whitelisted first.
  320. The usecase for blacklisting is generally to disable removed core plugins
  321. (which are automatically whitelisted) to prevent other (potentially malicious)
  322. plugins from registering themselves under those names.
  323. The core, and by default whitelisted, plugins are::
  324. converse-bosh
  325. converse-bookmarks
  326. converse-chatboxes
  327. converse-chatview
  328. converse-controlbox
  329. converse-core
  330. converse-disco
  331. converse-dragresize
  332. converse-fullscreen
  333. converse-headline
  334. converse-mam
  335. converse-minimize
  336. converse-muc
  337. converse-muc-embedded
  338. converse-notification
  339. converse-ping
  340. converse-profile
  341. converse-register
  342. converse-roomslist
  343. converse-rosterview
  344. converse-singleton
  345. converse-smacks
  346. converse-spoilers
  347. converse-vcard
  348. Example:
  349. .. code-block:: javascript
  350. require(['converse-core', 'converse-muc-embedded'], function (converse) {
  351. converse.initialize({
  352. // other settings removed for brevity
  353. blacklisted_plugins: [
  354. 'converse-dragresize',
  355. 'converse-minimize'
  356. ],
  357. });
  358. });
  359. .. _`bosh-service-url`:
  360. bosh_service_url
  361. ----------------
  362. * Default: ``undefined``
  363. Example: ``http://xmpp.example.com:5280/bosh/``
  364. Example with reverse-proxy and TLS: ``https://xmpp.example.com/bosh/``
  365. To connect to an XMPP server over HTTP you need a `BOSH <https://en.wikipedia.org/wiki/BOSH>`_
  366. connection manager which acts as a middle man between the HTTP and XMPP
  367. protocols.
  368. The bosh_service_url setting takes the URL of a BOSH connection manager.
  369. Please refer to your XMPP server's documentation on how to enable BOSH.
  370. For more information, read this blog post: `Which BOSH server do you need? <http://metajack.im/2008/09/08/which-bosh-server-do-you-need>`_
  371. A more modern alternative to BOSH is to use `websockets <https://developer.mozilla.org/en/docs/WebSockets>`_.
  372. Please see the :ref:`websocket-url` configuration setting.
  373. clear_cache_on_logout
  374. ---------------------
  375. * Default: ``false``
  376. If set to ``true``, all locally cached data will be cleared when the user logs out,
  377. regardless of the `persistent_store`_ being used (``localStorage``, ``IndexedDB`` or ``sessionStorage``).
  378. *Note*: If `allow_user_trust_override`_ is set to ``true`` and the user
  379. indicates that this device/browser is **not** trusted, then the cache will be
  380. cleared on logout, even if this setting is set to ``true``.
  381. *Note*: If this setting is set to ``true``, then OMEMO will be disabled, since
  382. otherwise it won't be possible to decrypt archived messages that were
  383. already decrypted previously (due to forward security).
  384. clear_messages_on_reconnection
  385. ------------------------------
  386. * Default: ``false``
  387. In some cases, it might be desirable to clear cached chat messages once you've
  388. reconnected to the XMPP server.
  389. For example, if you want to prevent the chat history from getting too long or
  390. if you want to avoid gaps in the chat history (for example due to MAM not
  391. returning all messages since the last cached message).
  392. Beware, if you're using OMEMO, then you probably don't want to set this setting to
  393. ``true``. OMEMO messages can be decrypted only once, so if they then
  394. subsequently get cleared, you won't get the plaintext back.
  395. chatstate_notification_blacklist
  396. --------------------------------
  397. * Default: ``[]``
  398. A list of JIDs to be ignored when showing desktop notifications of changed chat states.
  399. Some user's clients routinely connect and disconnect (likely on mobile) and
  400. each time a chat state notificaion is received (``online`` when connecting and
  401. then ``offline`` when disconnecting).
  402. When desktop notifications are turned on (see `show-desktop-notifications`_),
  403. then you'll receive notification messages each time this happens.
  404. Receiving constant notifications that a user's client is connecting and disconnecting
  405. is annoying, so this option allows you to ignore those JIDs.
  406. connection_options
  407. ------------------
  408. * Default: ``{}``
  409. * Type: Object
  410. Converse relies on `Strophe.js <http://strophe.im>`_ to establish and
  411. maintain a connection to the XMPP server.
  412. This option allows you to pass a map of configuration options to be passed into
  413. the ``Strophe.Connection`` constructor.
  414. For documentation on the configuration options that ``Strophe.Connection``
  415. accepts, refer to the
  416. `Strophe.Connection documentation <http://strophe.im/strophejs/doc/1.2.8/files/strophe-js.html#Strophe.Connection.Strophe.Connection>`_.
  417. Restricting the supported authentication mechanisms:
  418. ****************************************************
  419. As an example, suppose you want to restrict the supported SASL authentication
  420. mechanisms, then you'd pass in the ``mechanisms`` as a ``connection_options``
  421. ``key:value`` pair:
  422. .. code-block:: javascript
  423. converse.initialize({
  424. connection_options: {
  425. 'mechanisms': [
  426. converse.env.Strophe.SASLMD5,
  427. ]
  428. }
  429. });
  430. Running the XMPP Connection inside a shared worker
  431. **************************************************
  432. Newer versions of Strophe.js, support the ability to run the XMPP Connection
  433. inside a `shared worker <https://developer.mozilla.org/en-US/docs/Web/API/SharedWorker>`_ that's shared
  434. between open tabs in the browser in which Converse is running (and which have the same domain).
  435. *Note:* This feature is experimental and there currently is no way to
  436. synchronize actions between tabs. For example, sent 1-on-1 messages aren't
  437. reflected by the server, so you if you send such a message in one tab, it won't
  438. appear in another.
  439. .. code-block:: javascript
  440. converse.initialize({
  441. connection_options: { 'worker': true }
  442. });
  443. .. _`credentials_url`:
  444. credentials_url
  445. ---------------
  446. * Default: ``null``
  447. * Type: URL
  448. This setting should be used in conjunction with `authentication`_ set to ``login``.
  449. It allows you to specify a URL which Converse will call when it needs to get
  450. the username and password (or authentication token) which Converse will use
  451. to automatically log the user in.
  452. If `auto_reconnect`_ is also set to ``true``, then Converse will automatically
  453. fetch new credentials from the ``credentials_url`` whenever the connection or
  454. session drops, and then attempt to reconnect and establish a new session.
  455. If the request to the ``credentials_url`` URL fails for whatever reason,
  456. Converse will continuously retry to fetch the credentials every 2 seconds.
  457. The server behind ``credentials_url`` should return a JSON encoded object::
  458. {
  459. "jid": "me@example.com/resource",
  460. "password": "Ilikecats!"
  461. }
  462. csi_waiting_time
  463. ----------------
  464. * Default: ``0``
  465. This option adds support for `XEP-0352 Client State Indication <https://xmpp.org/extensions/xep-0352.html>_`
  466. If Converse is idle for the configured amount of seconds, a chat state
  467. indication of ``inactive`` will be sent out to the XMPP server (if the server
  468. supports CSI).
  469. Afterwards, ss soon as there is any activity (for example, the mouse moves),
  470. a chat state indication of ``active`` will be sent out.
  471. A value of ``0`` means that this feature is disabled.
  472. .. _`loglevel`:
  473. loglevel
  474. --------
  475. * Default: ``'info'``
  476. * Allowed values: ``'debug'``, ``'info'``, ``'warn'``, ``'error'``, ``'fatal'``
  477. You can also set this value by changing a URL fragment `#converse?loglevel=debug`
  478. default_domain
  479. --------------
  480. * Default: ``undefined``
  481. Specify a domain to act as the default for user JIDs. This allows users to log
  482. in with only the username part of their JID, instead of the full JID.
  483. For example, if ``default_domain`` is ``example.org``, then the user
  484. ``johnny@example.org`` can log in with only ``johnny``.
  485. JIDs with other domains are still allowed but need to be provided in full.
  486. To specify only one domain and disallow other domains, see the `locked_domain`_
  487. option.
  488. registration_domain
  489. -------------------
  490. * Default: ``''``
  491. Specify a domain name for which the registration form will be fetched automatically,
  492. without the user having to enter any XMPP server domain name.
  493. default_state
  494. -------------
  495. * Default: ``'online'``
  496. The default chat status that the user wil have. If you for example set this to
  497. ``'chat'``, then Converse will send out a presence stanza with ``"show"``
  498. set to ``'chat'`` as soon as you've been logged in.
  499. discover_connection_methods
  500. ---------------------------
  501. * Default: ``true``
  502. Use `XEP-0156 <https://xmpp.org/extensions/xep-0156.html>`_ to discover whether
  503. the XMPP host for the current user advertises any Websocket or BOSH connection
  504. URLs that can be used.
  505. If this is set to ``false``, then a `websocket_url`_ or `bosh_service_url`_ need to be
  506. set.
  507. Currently only the XML encoded host-meta resource is supported as shown in
  508. `Example 2 under section 3.3 <https://xmpp.org/extensions/xep-0156.html#httpexamples>`_.
  509. domain_placeholder
  510. ------------------
  511. * Default: ``e.g. conversejs.org``
  512. The placeholder text shown in the domain input on the registration form.
  513. emoji_categories
  514. ----------------
  515. * Default:
  516. ::
  517. {
  518. "smileys": ":grinning:",
  519. "people": ":thumbsup:",
  520. "activity": ":soccer:",
  521. "travel": ":motorcycle:",
  522. "objects": ":bomb:",
  523. "nature": ":rainbow:",
  524. "food": ":hotdog:",
  525. "symbols": ":musical_note:",
  526. "flags": ":flag_ac:",
  527. "custom": ":converse:"
  528. }
  529. This setting lets you define the categories that are available in the emoji
  530. picker, as well as the default image that's shown for each category.
  531. The keys of the map are the categories and the values are the shortnames of the
  532. representative images.
  533. If you want to remove a category, don't just remove the key, instead set its
  534. value to ``undefined``.
  535. Due to restrictions intended to prevent addition of undeclared configuration
  536. settings, it's not possible to add new emoji categories. There is however a
  537. ``custom`` category where you can put your own custom emojis (also known as
  538. "stickers").
  539. To add custom emojis, you need to edit ``src/headless/emojis.json`` to add new
  540. entries to the map under the ``custom`` key.
  541. emoji_categories_label
  542. ----------------------
  543. * Default:
  544. ::
  545. {
  546. "smileys": "Smileys and emotions",
  547. "people": "People",
  548. "activity": "Activities",
  549. "travel": "Travel",
  550. "objects": "Objects",
  551. "nature": "Animals and nature",
  552. "food": "Food and drink",
  553. "symbols": "Symbols",
  554. "flags": "Flags",
  555. "custom": "Stickers"
  556. }
  557. This setting lets you pass in the text value that goes into the `title`
  558. attribute for the emoji categories. These strings will be translated, but for
  559. your custom text to be translatable, you'll need to wrap it in `__()``
  560. somewhere in your own code.
  561. emoji_image_path
  562. ----------------
  563. * Default: ``'https://twemoji.maxcdn.com/2/'``
  564. When `use_system_emojis`_ is set to ``false``, then this is the URL from where image files for
  565. displaying emojis will be fetched.
  566. enable_muc_push
  567. ---------------
  568. * Default: ``false``
  569. If true, then Converse will try to register
  570. `XEP-0357 push notification App Server(s) <https://xmpp.org/extensions/xep-0357.html#general-architecture>`_
  571. for the MUC domain of any newly entered groupchat.
  572. The app servers are specified with the `push_app_servers`_ option.
  573. .. note::
  574. Registering a push app server against a MUC domain is not (yet) standardized
  575. and this feature should be considered experimental.
  576. enable_smacks
  577. -------------
  578. * Default: ``false``
  579. Determines whether `XEP-0198 Stream Management <https://xmpp.org/extensions/xep-0198.html>`_
  580. support is turned on or not.
  581. Recommended to set to ``true`` if a websocket connection is used.
  582. Please see the :ref:`websocket-url` configuration setting.
  583. filter_by_resource
  584. ------------------
  585. * Default: ``false``
  586. Before version 1.0.3 Converse would ignore received messages if they were
  587. intended for a different resource then the current user had. It was decided to
  588. drop this restriction but leave it configurable.
  589. filter_url_query_params
  590. -----------------------
  591. * Default: ``null``
  592. Accepts a string or array of strings. Any query strings from URLs that match this setting will be removed.
  593. fullname
  594. --------
  595. If you are using prebinding, can specify the fullname of the currently
  596. logged in user, otherwise the user's vCard will be fetched.
  597. geouri_regex
  598. ------------
  599. * Default: ``/https:\/\/www.openstreetmap.org\/.*#map=[0-9]+\/([\-0-9.]+)\/([\-0-9.]+)\S*/g``
  600. Regular expression used to extract geo coordinates from links to openstreetmap.
  601. geouri_replacement
  602. ------------------
  603. * Default: ``'https://www.openstreetmap.org/?mlat=$1&mlon=$2#map=18/$1/$2'``
  604. String used to replace geo-URIs with. Ought to be a link to osm or similar. ``$1`` and ``$2`` is replaced by
  605. latitude and longitude respectively.
  606. hide_muc_participants
  607. ---------------------
  608. * Default: ``false``
  609. Option which allows you to hide the participants list by default.
  610. hide_offline_users
  611. ------------------
  612. * Default: ``false``
  613. If set to ``true``, then offline users aren't shown in the roster.
  614. hide_open_bookmarks
  615. -------------------
  616. * Default: ``false`` (``true`` when the `view_mode`_ is set to ``fullscreen``).
  617. This setting applies to the ``converse-bookmarks`` plugin and specfically the
  618. list of bookmarks shown in the ``Rooms`` tab of the control box.
  619. By default all bookmarks are shown in that list, if this setting is set to
  620. ``true``, then only bookmarks for rooms not currently open (i.e. that the
  621. current user hasn't joined), are shown.
  622. Makes sense to set this to ``true`` when also using the non-core
  623. ``converse-roomslist`` plugin, which shows a list of currently open (i.e.
  624. "joined") rooms.
  625. .. _`i18n`:
  626. i18n
  627. ----
  628. * Default: Auto-detection of the User/Browser language or ``en``;
  629. Specify the locale/language.
  630. The translations for that locale must be served in JSON format at `/dist/locales/${i18n}-LC_MESSAGES-converse-po.js`.
  631. The default webpack configuration for Converse.js ensures that these files are
  632. generated and placed in the right location.
  633. If an explicit locale is specified via the ``i18n`` setting and the
  634. translations for that locale are not found, then Converse will fall back to trying to determine the browser's language
  635. and fetching those translations, or if that fails the default English strings will be used.
  636. idle_presence_timeout
  637. ---------------------
  638. * Default: ``300``
  639. The amount of seconds after which the user is considered to be idle
  640. and an idle presence according to XEP-0319 is sent.
  641. If the given value is negative or ``0``, this feature is disabled.
  642. image_urls_regex
  643. ----------------
  644. * Default: ``null``
  645. Any URL in a message that matches the regex in this setting will be considered an image and rendered, if `show_images_inline`_ is set to ``true``.
  646. If the image cannot be rendered, a hyperlink will be rendered instead.
  647. For example, to render Imgur images inline, you can use the following regex: ``/^https?:\/\/(?:www.)?(?:imgur\.com\/\w{7})\/?$/i``
  648. jid
  649. ---
  650. The Jabber ID or "JID" of the current user. The JID uniquely identifies a user
  651. on the XMPP network. It looks like an email address, but it's used for instant
  652. messaging instead.
  653. This value may be provided together with a ``password`` instead of supplying a
  654. `credentials_url`_ when setting ``auto_login`` to ``true``.
  655. .. _`keepalive`:
  656. keepalive
  657. ---------
  658. * Default: ``true``
  659. Determines whether Converse will attempt to keep you logged in across page loads.
  660. .. _`locales`:
  661. locales
  662. -------
  663. * Default:
  664. .. code-block:: javascript
  665. locales: [
  666. 'af', 'ca', 'de',
  667. 'es', 'en', 'fr',
  668. 'he', 'hu', 'id',
  669. 'it', 'ja', 'nb',
  670. 'nl', 'pl', 'pt_BR',
  671. 'ru', 'uk', 'zh'
  672. ]
  673. This setting restricts the locales that are supported by Converse and
  674. therefore what may be given as value for the :ref:`i18n` option.
  675. Any other locales will be ignored.
  676. locked_domain
  677. -------------
  678. * Default: ``undefined``
  679. Similar to `default_domain`_ but no other domains are allowed.
  680. For example, if ``locked_domain`` is set to ``example.org``, then the user
  681. ``johnny@example.org`` can log in with only ``johnny``.
  682. Additionally, only users registered on the ``example.org`` host can log in, no
  683. other users are allowed to log in.
  684. locked_muc_domain
  685. -----------------
  686. * Default: ``false``
  687. * Allowed values: ``false``, ``true``, ``'hidden'``
  688. By setting this value to something truthy, you restrict the multi-user chat (MUC) domain to only the value
  689. specified in `muc_domain`_.
  690. If the value is set to `'hidden'` (which is also truthy), then the MUC domain
  691. will not be shown to users.
  692. locked_muc_nickname
  693. -------------------
  694. * Default: ``false``
  695. This setting allows you to restrict the multi-user chat (MUC) nickname that a
  696. user uses to a particular value.
  697. Where the nickname value comes from depends on other settings.
  698. The `nickname`_ configuration setting takes precedence ahead of any other
  699. nickname value. If that's not set, then the "nickname" value from the user's
  700. VCard is taken, and if that is not set but `muc_nickname_from_jid`_ is set to
  701. ``true``, then the node of the user's JID (the part before the ``@``) is used.
  702. If no nickame value is found, then an error will be raised.
  703. muc_hats
  704. -------------------
  705. * Default: ``['xep317']``
  706. Since version 7 Converse now has rudimentary support for `XEP-0317 Hats <https://xmpp.org/extensions/xep-0317.html>`_.
  707. It is also possible to display VCard roles, MUC affiliation and MUC role along with hats.
  708. By default only XEP-0317 hats are considered.
  709. For the inclusion of VCard roles ``'vcard_roles'`` must be added to the list.
  710. For the inclusion of MUC affiliation and MUC role, the specific affiliations and roles
  711. to be used must be added to the list e.g. ``'owner','participant'``.
  712. Example:
  713. For XEP-0317 hats and VCard roles this setting should be set to:
  714. ``'muc_hats': ['xep317', 'vcard_roles']``
  715. For VCard roles, admin MUC affiliation and moderator MUC role:
  716. ``'muc_hats': ['vcard_roles', 'admin', 'moderator']``
  717. And to prevent the displaying of anything, an empty list must be used:
  718. ``'muc_hats': []``
  719. muc_mention_autocomplete_min_chars
  720. -----------------------------------
  721. * Default: ``0``
  722. The number of characters that need to be entered before the auto-complete list
  723. of matching nicknames is shown.
  724. muc_mention_autocomplete_filter
  725. -------------------------------
  726. * Default: ``contains``
  727. The method used for filtering MUC participants when using auto-complete.
  728. Valid values are ``contains`` and ``starts_with``.
  729. muc_mention_autocomplete_show_avatar
  730. ------------------------------------
  731. * Default: ``true``
  732. Show avatars of MUC participants when using auto-complete.
  733. message_archiving
  734. -----------------
  735. * Default: ``undefined``
  736. Provides support for `XEP-0313: Message Archive Management <https://xmpp.org/extensions/xep-0313.html>`_,
  737. whereby messages are archived in the XMPP server for later retrieval.
  738. Note, your XMPP server must support XEP-0313 MAM for this to work.
  739. This option sets the default archiving preference.
  740. Valid values are ``undefined``, ``never``, ``always`` and ``roster``.
  741. ``undefined`` means that any existing MAM configuration, as set by the user or
  742. the server administrator, will be used.
  743. ``roster`` means that only messages to and from JIDs in your roster will be
  744. archived. The other two values are self-explanatory.
  745. message_archiving_timeout
  746. -------------------------
  747. * Default: ``20000``
  748. The amount of time (in milliseconds) to wait when requesting archived messages
  749. from the XMPP server.
  750. Used in conjunction with ``message_archiving`` and in context of `XEP-0313: Message Archive Management <https://xmpp.org/extensions/xep-0313.html>`_.
  751. message_carbons
  752. ---------------
  753. * Default: ``true``
  754. Support for `XEP-0280: Message Carbons <https://xmpp.org/extensions/xep-0280.html>`_
  755. In order to keep all IM clients for a user engaged in a conversation,
  756. outbound messages are carbon-copied to all interested resources.
  757. This is especially important with Converse, where each browser
  758. tab serves as a separate IM client.
  759. XEP-0280 requires server support, so make sure that message carbons are enabled
  760. on your server.
  761. message_limit
  762. -------------
  763. * Default: ``0``
  764. Determines the allowed amount of characters in a chat message. A value of zero means there is no limit.
  765. Note, this limitation only applies to the Converse UX code running in the browser
  766. and it's trivial for an attacker to bypass this restriction.
  767. You should therefore also configure your XMPP server to limit message sizes.
  768. modtools_disable_assign
  769. -----------------------
  770. * Default: ``false``
  771. * Possible Values: ``true``, ``false``, ``['owner', 'admin', 'member', 'outcast', 'none', 'moderator', 'participant', 'visitor']``
  772. This setting allows you to disable (either completely, or fine-grained) which affiliations and or roles
  773. may be assigned in the moderator tools modal.
  774. modtools_disable_query
  775. ----------------------
  776. * Default: ``[]``
  777. * Possible Values: ``['owner', 'admin', 'member', 'outcast', 'none', 'moderator', 'participant', 'visitor']``
  778. This setting allows you to disable which affiliations or roles may be queried in the moderator tools modal.
  779. If all roles or all affiliations are disabled, then the relevant tab won't be
  780. showed at all.
  781. muc_disable_slash_commands
  782. --------------------------
  783. * Default: ``false``
  784. Allows you to disable the moderator commands such as ``/kick`` or ``/ban``.
  785. Ìf set to ``true`` all commands will be disabled.
  786. You can also selectively disable some moderator commands by setting it to an
  787. array of commands you don't want.
  788. The following example will disable 'mute' and 'voice' command:
  789. .. code-block:: javascript
  790. muc_disable_slash_commands: ['mute', 'voice'],
  791. muc_domain
  792. ----------
  793. * Default: ``undefined``
  794. The default MUC (multi-user chat) domain that should be used.
  795. When setting this value, users can only enter the name when opening a new MUC,
  796. and don't have to add the whole address (i.e. including the domain part).
  797. Users can however still enter the domain and they can still open MUCs with
  798. other domains.
  799. If you want to restrict MUCs to only this domain, then set `locked_muc_domain`_ to
  800. ``true``.
  801. muc_fetch_members
  802. -----------------
  803. * Default: ``true``
  804. * Possible values: Array containing any of the following: ``['member', 'admin', 'owner']``
  805. Determines whether Converse.js will fetch the member lists for a MUC
  806. (multi-user chat) when the user first enters it.
  807. Here's the relevant part from the MUC XEP: https://xmpp.org/extensions/xep-0045.html#getmemberlist
  808. The MUC service won't necessarily allow any user to fetch member lists,
  809. but can usually be configured to do so.
  810. The member lists consists of three lists of users who have the affiliations
  811. ``member``, ``admin`` and ``owner`` respectively.
  812. By fetching member lists, Converse.js will always show these users as
  813. participants of the MUC, giving them a permanent "presence" in the MUC.
  814. muc_history_max_stanzas
  815. -----------------------
  816. * Default: ``undefined``
  817. This option allows you to specify the maximum amount of messages to be shown in a
  818. chatroom when you enter it. By default, the amount specified in the room
  819. configuration or determined by the server will be returned.
  820. Please note, this option is not related to
  821. `XEP-0313 Message Archive Management <https://xmpp.org/extensions/xep-0313.html>`_,
  822. which also allows you to show archived chatroom messages, but follows a
  823. different approach.
  824. If you're using MAM for archiving chatroom messages, you might want to set
  825. this option to zero.
  826. muc_instant_rooms
  827. ------------------
  828. * Default: ``true``
  829. Determines whether 'instant' (also called 'dynamic' in OpenFire) rooms are created.
  830. Otherwise rooms first have to be configured before they're available to other
  831. users (so-called "registered rooms" in `MUC-0045 <https://xmpp.org/extensions/xep-0045.html#createroom>`_).
  832. From a UX perspective, if this settings is `false`, then a configuration form will
  833. render, that has to be filled in first, before the room can be joined by other
  834. users.
  835. muc_nickname_from_jid
  836. ---------------------
  837. * Default: ``false``
  838. When set to ``true``, then users will not be prompted to provide nicknames for
  839. chatrooms. Instead, the node part of a user's JID (i.e. JID = node@domain/resource)
  840. will be used. If the user's nickname is already taken by another user in the
  841. chatroom, then an integer will be added to make it unique.
  842. So, for example, if john@example.com joins a chatroom, his nickname will
  843. automatically be "john". If now john@differentdomain.com tries to join the
  844. room, his nickname will be "john-2", and if john@somethingelse.com joins, then
  845. his nickname will be "john-3", and so forth.
  846. muc_send_probes
  847. ---------------
  848. * Default: ``false``
  849. If set to ``true``, then whenever Converse receives a MUC message with an author for which we don't have
  850. any information (i.e. because that user is currently not in the MUC), then Converse will send out a ``<presence>``
  851. stanza of type ``probe`` in order to request the authors presence data.
  852. Prosody has some experimental support in it's contrib branch (hopefully soon to
  853. be merged to trunk).
  854. The point of sending out presence probes is in order to receive
  855. presence-related metadata, such as `XEP-0317 Hats <https://xmpp.org/extensions/xep-0317.html>`_.
  856. .. note::
  857. Although this behavior is described in the `presence business rules of XEP-0045, section 17.3 point 4 <https://xmpp.org/extensions/xep-0045.html#bizrules-presence>`_,
  858. few XMPP servers support this.
  859. .. note::
  860. If member lists are fetched via muc_fetch_members, then the occupants created
  861. based on those member lists won't be probed again later (given that the
  862. occupants are already created). Certain metadata like XEP-0317 hats are not
  863. included in the member lists, which means that this metadata will be missing for
  864. those occupants.
  865. muc_respect_autojoin
  866. --------------------
  867. * Default; ``true``
  868. Determines whether Converse will respect the autojoin-attribute of bookmarks. Per default
  869. all MUCs with set autojoin flag in their respective bookmarks will be joined on
  870. startup of Converse. When set to ``false`` no MUCs are automatically joined based on
  871. their bookmarks.
  872. muc_roomid_policy
  873. -----------------
  874. * Default: ``null``
  875. This option defines the regular expression that a room id must satisfy to allow the
  876. room creation. Server administrators may want to impose restrictions on the minimum
  877. and maximum length and the allowed character set allowed for room ids. Otherwise
  878. users might create rooms which are difficult to handle.
  879. However, restricting that on the server only leads to bad UX as users might learn of
  880. the servers policy only after they have tried to create a room. Furthermore error
  881. messages from XMPP-servers might not be self-explanatory.
  882. Therefore this option allows converse to already check the policy and disallow the
  883. user from even trying to entering/creating such a room.
  884. As this only makes sense on your own server, the check is applied only if the domain
  885. part equals `muc_domain`_. If `muc_domain`_ is unset, then this check is disabled
  886. completely.
  887. Example:
  888. .. code-block:: javascript
  889. muc_roomid_policy: /^[a-z0-9._-]{5,40}$/,
  890. See also: `muc_roomid_policy_hint`_
  891. muc_roomid_policy_hint
  892. ----------------------
  893. * Default: ``null``
  894. This option can be used in conjuction with `muc_roomid_policy`_ in order to give
  895. a written explanation of the imposed room id policy. You can use the html-tags
  896. ``<br>``, ``<b>``, and ``<em>`` to allow some basic styling.
  897. Example:
  898. .. code-block:: javascript
  899. muc_roomid_policy_hint: '<br><b>Policy for groupchat id:</b><br>- between 5 and 40 characters,<br>- lowercase from a to z (no special characters) or<br>- digits or<br>- dots (.) or<br>- underlines (_) or<br>- hyphens (-),<br>- no spaces<br>',
  900. muc_show_join_leave
  901. -------------------
  902. * Default; ``true``
  903. Determines whether Converse will show info messages inside a chatroom
  904. whenever a user joins or leaves it.
  905. muc_show_logs_before_join
  906. -------------------------
  907. * Default: ``false``
  908. If set to ``true``, when opening a MUC for the first time (or if you don't have
  909. a nickname configured for it), you'll see the message history (if the
  910. server supports [XEP-0313 Message Archive Management](https://xmpp.org/extensions/xep-0313.html))
  911. and the nickname form at the bottom.
  912. .. _`nickname`:
  913. nickname
  914. --------
  915. * Default: ``undefined``
  916. This setting allows you to specify the nickname for the current user.
  917. The nickname will be included in presence requests to other users and will also
  918. be used as the default nickname when entering MUC chatrooms.
  919. This value will have first preference ahead of other nickname sources, such as
  920. the VCard ``nickname`` value.
  921. notify_all_room_messages
  922. ------------------------
  923. * Default: ``false``
  924. By default, sound and desktop notifications will only be made when you are
  925. mentioned in a room. If you set this setting to `true`, then you will be
  926. notified of all messages received in a room.
  927. You can also pass an array of room JIDs to this option, to only apply it to
  928. certain rooms.
  929. notification_delay
  930. ------------------
  931. * Default: ``5000``
  932. Desktop notifications will be shown for a time of ``notification_delay``
  933. ms. Setting this to ``0`` will make the notification stay until dismissed by
  934. the user (requires browser support).
  935. notification_icon
  936. -----------------
  937. * Default: ``'logo/conversejs-filled.svg'``
  938. This option specifies which icon is shown in HTML5 notifications, as provided
  939. by the ``src/converse-notification.js`` plugin.
  940. notify_nicknames_without_references
  941. -----------------------------------
  942. * Default: ``false``
  943. Enables notifications for nicknames in messages that don't have associated
  944. XEP-0372 references linking them to the JID of the person being mentioned.
  945. In Converse, these would be nicknames that weren't mentioned via the ``@`` sign.
  946. oauth_providers
  947. ---------------
  948. * Default: ``[]``
  949. Allows you to specify a list of OAuth providers that the user may use to log in
  950. with.
  951. .. note::
  952. Your XMPP server will have to support Oauth logins
  953. .. code-block:: javascript
  954. converse.initialize({
  955. oauth_providers: {
  956. 'github': {
  957. 'client_id': '1338d9f7ff52b1309b29',
  958. 'host': 'chat.example.org',
  959. 'class': 'fa-github-alt',
  960. 'id': 'github',
  961. 'name': 'Github'
  962. },
  963. 'twitter': {
  964. 'client_id': '0332d98cff83b1999b22',
  965. 'host': 'chat.example.org',
  966. 'class': 'fa-twitter',
  967. 'id': 'twitter',
  968. 'name': 'Twitter'
  969. }
  970. },
  971. });
  972. omemo_default
  973. -------------
  974. * Default: ``false``
  975. Use OMEMO encryption by default when the chat supports it.
  976. ping_interval
  977. -------------
  978. * Default: ``60``
  979. Make ping to server in order to keep connection with server killing sessions after idle timeout.
  980. The ping are sent only if no messages are sent in the last ``ping_interval`` seconds
  981. You need to set the value to any positive value to enable this functionality.
  982. If you set this value to ``0`` or any negative value, il will disable this functionality.
  983. .. _`play-sounds`:
  984. play_sounds
  985. -----------
  986. * Default: ``false``
  987. Plays a notification sound when you receive a personal message or when your
  988. nickname is mentioned in a chatroom.
  989. Inside the ``./sounds`` directory of the Converse repo you'll see MP3 and Ogg
  990. formatted sound files. We need both, because neither format is supported by all browsers.
  991. You can set the URL where the sound files are hosted with the `sounds_path`_ option.
  992. Requires the `src/converse-notification.js` plugin.
  993. .. _`prebind_url`:
  994. prebind_url
  995. -----------
  996. * Default: ``null``
  997. * Type: URL
  998. See also: :ref:`session-support`
  999. This setting should be used in conjunction with `authentication`_ set to `prebind`.
  1000. It allows you to specify a URL which Converse will call when it needs to get
  1001. the RID and SID (Request ID and Session ID) tokens of a BOSH connection, which
  1002. Converse will then attach to.
  1003. The server behind ``prebind_url`` should return a JSON encoded object with the
  1004. three tokens::
  1005. {
  1006. "jid": "me@example.com/resource",
  1007. "sid": "346234623462",
  1008. "rid": "876987608760"
  1009. }
  1010. priority
  1011. --------
  1012. * Default: ``0``
  1013. * Type: Number
  1014. Determines the priority used for presence stanzas sent out from this resource
  1015. (i.e. this instance of Converse).
  1016. The priority of a given XMPP chat client determines the importance of its presence
  1017. stanzas in relation to stanzas received from other clients of the same user.
  1018. In Converse, the indicated chat status of a roster contact will be taken from the
  1019. presence stanza (and associated resource) with the highest priority.
  1020. If multiple resources have the same top priority, then the chat status will be
  1021. taken from the most recent present stanza.
  1022. For more info you can read `Section 2.2.2.3 of RFC-3921 <https://xmpp.org/rfcs/rfc3921.html#rfc.section.2.2.2.3>`_.
  1023. providers_link
  1024. --------------
  1025. * Default: ``https://xmpp.net/directory.php``
  1026. The hyperlink on the registration form which points to a directory of public
  1027. XMPP servers.
  1028. .. _`assets_path`:
  1029. assets_path
  1030. -----------
  1031. * Default: ``'/dist/'`` or the `publicPath <https://webpack.js.org/guides/public-path/>`_ value as configured in the relevant Webpack configuration.
  1032. Since version 5.0.0, Converse serves a smaller bundle by extracting various
  1033. resources (for example emojis and translations) into separate files (aka
  1034. "chunks") which are loaded asynchronously on demand.
  1035. The URL path at which these resources are loaded is normally set by the ``publicPath``
  1036. setting of Webpack but this means that it's hardcoded to a particular value at
  1037. compile time.
  1038. This configuration seting allows this value to be set at runtime as well.
  1039. persistent_store
  1040. ----------------
  1041. * Default: ``localStorage``
  1042. * Valid options: ``localStorage``, ``IndexedDB``, ``sessionStorage``, ``BrowserExtLocal``, ``BrowserExtSync``
  1043. Determines which store is used for storing persistent data.
  1044. From version 6.0.0 onwards, Converse supports storing data in
  1045. `IndexedDB <https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API/Basic_Concepts_Behind_IndexedDB>`_.
  1046. IndexedDB is not subjected to the same space constraints as localStorage and is
  1047. also a requirement for progressive web apps which don't need persistent a
  1048. internet connectivity to be functional.
  1049. From version 7.0.0 onwards, Converse supports storing data in
  1050. `Browser Extension storage <https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/storage#Example_extensions>`_.
  1051. When Converse is running inside a web browser extension, it can now take advantage of storage optimized to meet the specific storage needs of extensions.
  1052. BrowserExtSync represents the sync storage area.
  1053. Items in sync storage are synced by the browser and are available across all instances of that browser that the user is logged into, across different devices.
  1054. BrowserExtLocal represents the local storage area.
  1055. Items in local storage are local to the machine the extension was installed on
  1056. push_app_servers
  1057. ----------------
  1058. * Default: ``[]``
  1059. This option lets you enable or disable so-called push notification "App Servers"
  1060. (as per `XEP-0357 <https://xmpp.org/extensions/xep-0357.html>`_).
  1061. For each "App Server" an object needs to be passed in. When enabling, you need
  1062. to specify ``jid`` and ``node`` values. You can also provide a
  1063. ``secret``, if required by your App Server.
  1064. When disabling, you need to specify at least a ``jid`` and set ``disabled`` to
  1065. ``true``. This will disable notifications to all pubsub nodes on that "App
  1066. Server". If you want to disable only a particular node, then specify a ``node``
  1067. value as well.
  1068. For example:
  1069. .. code-block:: javascript
  1070. converse.initialize({
  1071. 'push_app_servers': [{
  1072. 'jid': 'push-4@client.example',
  1073. 'node': 'yxs32uqsflafdk3iuqo',
  1074. 'disable': true
  1075. }, {
  1076. 'jid': 'push-5@client.example',
  1077. 'node': 'yxs32uqsflafdk3iuqo',
  1078. }]
  1079. });
  1080. .. _`roomconfig_whitelist`:
  1081. roomconfig_whitelist
  1082. --------------------
  1083. * Default: ``[]``
  1084. A list of room config-option names. If this list is non-empty, only the corresponding room
  1085. config-options will be shown in the room configuration form. The default will show all options.
  1086. In the following example the user can only see (and thus change) the roomname and nothing else:
  1087. .. code-block:: javascript
  1088. roomconfig_whitelist: ['muc#roomconfig_roomname'],
  1089. root
  1090. ----
  1091. * Default: ``window.document``
  1092. When using Converse inside a web component's shadow DOM, you will need to set this settings'
  1093. value to the shadow-root of the shadow DOM.
  1094. For example:
  1095. .. code-block:: javascript
  1096. class CustomChatComponent extends HTMLElement {
  1097. constructor() {
  1098. super();
  1099. const shadowRoot = this.attachShadow({mode: "open"});
  1100. this.initConverse(shadowRoot);
  1101. }
  1102. initConverse(shadowRoot) {
  1103. window.addEventListener("converse-loaded", function(event) {
  1104. const { converse } = event.detail;
  1105. converse.initialize({
  1106. root: shadowRoot,
  1107. // Other settings go here...
  1108. });
  1109. });
  1110. }
  1111. }
  1112. roster_groups
  1113. -------------
  1114. * Default: ``true``
  1115. If set to ``true``, Converse will show any roster groups you might have configured.
  1116. .. note::
  1117. It's currently not possible to use Converse to assign contacts to groups.
  1118. Converse can only show users and groups that were previously configured
  1119. elsewhere.
  1120. send_chat_state_notifications
  1121. -----------------------------
  1122. * Default: ``true``
  1123. Determines whether chat state notifications (see `XEP-0085 <https://xmpp.org/extensions/xep-0085.html>`_) should be sent out or not.
  1124. Can also be set to an Array in order to allow only certain types of chat state notifications.
  1125. For example:
  1126. .. code-block:: javascript
  1127. converse.initialize({
  1128. 'send_chat_state_notifications': ['composing']
  1129. });
  1130. Valid values are ``'active', 'composing', 'gone' 'inactive', 'paused'``
  1131. show_chat_state_notifications
  1132. -----------------------------
  1133. * Default: ``false``
  1134. Specifies whether chat state (online, dnd, away) HTML5 desktop notifications should be shown.
  1135. show_client_info
  1136. ----------------
  1137. * Default: ``true``
  1138. Specifies whether the info icon is shown on the controlbox which when clicked opens an
  1139. "About" modal with more information about the version of Converse being used.
  1140. show_controlbox_by_default
  1141. --------------------------
  1142. * Default: ``false`` (``true`` when the `view_mode`_ is set to ``fullscreen``)
  1143. The "controlbox" refers to the special chatbox containing your contacts roster,
  1144. status widget, chatrooms and other controls.
  1145. By default this box is hidden and can be toggled by clicking on any element in
  1146. the page with class *toggle-controlbox*.
  1147. If this options is set to true, the controlbox will by default be shown upon
  1148. page load.
  1149. However, be aware that even if this value is set to ``false``, if the
  1150. controlbox is open, and the page is reloaded, then it will stay open on the new
  1151. page as well.
  1152. .. _`show-desktop-notifications`:
  1153. show_desktop_notifications
  1154. --------------------------
  1155. * Default: ``true``
  1156. Should HTML5 desktop notifications be shown?
  1157. If set to ``true``, notifications will be shown in the following cases:
  1158. * the browser is not visible nor focused and a private message is received.
  1159. * the browser is not visible nor focused and a groupchat message is received which mentions you.
  1160. * ``auto_subscribe`` is set to ``false`` and a new contact request is received.
  1161. If set to ``all``, notifications will be shown even if the above conditions are
  1162. not fulfilled.
  1163. Requires the `src/converse-notification.js` plugin.
  1164. show_message_avatar
  1165. -------------------
  1166. * Default: ``true``
  1167. Whether chat messages should also render the author's avatar.
  1168. show_images_inline
  1169. ------------------
  1170. * Default: ``true``
  1171. If set to ``false``, images won't be rendered in chats, instead only their links will be shown.
  1172. It also accepts an array strings of whitelisted domain names to only render images that belong to those domains.
  1173. E.g. ``['imgur.com', 'imgbb.com']``
  1174. show_retraction_warning
  1175. -----------------------
  1176. * Default: ``true``
  1177. From `XEP-0424: Message Retraction <https://xmpp.org/extensions/xep-0424.html>`_:
  1178. ::
  1179. Due to the federated and extensible nature of XMPP it's not possible to remove a message with
  1180. full certainty and a retraction can only be considered an unenforceable request for such removal.
  1181. Clients which don't support message retraction are not obligated to enforce the request and
  1182. people could have seen or copied the message contents already.
  1183. By default Converse shows a warning to users when they retract a message, to
  1184. inform them that they don't have a guarantee that the message will be removed
  1185. everywhere.
  1186. This warning isn't applicable to all deployments of Converse and can therefore
  1187. be turned off by setting this config variable to ``false``.
  1188. show_send_button
  1189. ----------------
  1190. * Default: ``true``
  1191. Adds a button to the chat which can be clicked or tapped in order to send the
  1192. message.
  1193. show_tab_notifications
  1194. ----------------------
  1195. * Default: ``true``
  1196. Determines whether an unread messages counter is shown in the tab.
  1197. singleton
  1198. ---------
  1199. * Default: ``false``
  1200. If set to ``true``, then only one chat (one-on-one or groupchat) will be allowed.
  1201. The chat must be specified with the `auto_join_rooms`_ or `auto_join_private_chats`_ options.
  1202. This setting is useful together with `view_mode`_ set to ``embedded``, when you
  1203. want to embed a chat into the page.
  1204. Alternatively you could use it with `view_mode`_ set to ``overlayed`` to create
  1205. a single helpdesk-type chat.
  1206. smacks_max_unacked_stanzas
  1207. --------------------------
  1208. * Default: ``5``
  1209. This setting relates to `XEP-0198 <https://xmpp.org/extensions/xep-0198.html>`_
  1210. and determines the number of stanzas to be sent before Converse will ask the
  1211. server for acknowledgement of those stanzas.
  1212. sounds_path
  1213. -----------
  1214. * Default: ``${assets_path}/sounds/``
  1215. This option only makes sense in conjunction with the `play_sounds`_ option and
  1216. specifies the URL of the sound files to be played (exluding the file names
  1217. themselves).
  1218. In order to support all browsers we need both an MP3 and an Ogg file. Make sure
  1219. to name your files ``msg_received.ogg`` and ``msg_received.mp3``.
  1220. sticky_controlbox
  1221. -----------------
  1222. * Default: ``false`` (``true`` when the ``view_mode`` is set to ``fullscreen``).
  1223. If set to ``true``, the control box (which includes the login, registration,
  1224. contacts and rooms tabs) will not be closeable. It won't have a close button at
  1225. all.
  1226. The idea behind this setting is to provide a better experience on mobile
  1227. devices when the intent is to use Converse as a web app. In this case
  1228. it doesn't make sense to close the control box, as there's often then nothing
  1229. "behind" it that's relevant to the user.
  1230. .. _`strict_plugin_dependencies`:
  1231. strict_plugin_dependencies
  1232. --------------------------
  1233. * Default: ``false``
  1234. When set to ``true`` and a plugin tries to override an object which doesn't
  1235. exist (for example because the plugin which provides that object is not
  1236. loaded), then an error will be raised.
  1237. Otherwise a message will simply be logged and the override instruction ignored.
  1238. The Converse plugins architecture can have an :ref:`dependencies`
  1239. plugin attribute. This enables you to specify an array of other plugins which
  1240. this one depends on.
  1241. Converse (more specifically, `pluggable.js <https://jcbrand.github.io/pluggable.js/>`_)
  1242. will first load these dependencies before executing the plugin's overrides and
  1243. calling its ``initialize`` method.
  1244. This is especially important if you register event handlers in your plugin for
  1245. events that fire in other plugins. In this case, you want to specify those
  1246. other plugins as dependencies.
  1247. If ``strict_plugin_dependencies`` is set to ``false``, an error won't be raised
  1248. if the optional dependencies aren't found.
  1249. synchronize_availability
  1250. ------------------------
  1251. * Default: ``true``
  1252. * Valid options: ``true``, ``false``, ``a resource name``.
  1253. This option lets you synchronize your chat status (`online`, `busy`, `away`) with other chat clients. In other words,
  1254. if you change your status to ``busy`` in a different chat client, your status will change to ``busy`` in Converse as well.
  1255. If set to ``true``, Converse will synchronize with all other clients you are logged in with.
  1256. If set to ``false``, this feature is disabled.
  1257. If set to ``a resource name``, Converse will synchronize only with a client that has that particular resource assigned to it.
  1258. theme
  1259. -----
  1260. * Default: ``default``
  1261. * Valid options: ``default``, ``concord``
  1262. Let's you set a color theme for Converse.
  1263. time_format
  1264. -----------
  1265. * Default: ``HH:mm``
  1266. Examples: ``HH:mm``, ``hh:mm``, ``hh:mm a``.
  1267. This option makes the time format for the time shown, for each message, configurable. Converse uses `DayJS <https://github.com/iamkun/dayjs>`_
  1268. for showing time. This option allows the configuration of the format in which ``DayJS`` will display the time for the messages. For detailed
  1269. description of time-format options available for ``DayJS`` you can check the
  1270. `default formatting options <https://github.com/iamkun/dayjs/blob/dev/docs/en/API-reference.md#displaying>`_ and the
  1271. `advanced options <https://github.com/iamkun/dayjs/blob/master/docs/en/Plugin.md#advancedformat>`_.
  1272. use_system_emojis
  1273. -----------------
  1274. * Default: ``true``
  1275. Determines whether emojis should be rendered by the user's system.
  1276. Not all operating systems support (all) emojis. So alternatively you can let
  1277. Converse render the emojis with `Twemoji <https://twemoji.twitter.com/>`_.
  1278. See also `emoji_image_path`_.
  1279. visible_toolbar_buttons
  1280. -----------------------
  1281. * Default:
  1282. .. code-block:: javascript
  1283. {
  1284. call: false,
  1285. spoiler: false,
  1286. emoji: true,
  1287. toggle_occupants: true
  1288. }
  1289. Allows you to show or hide buttons on the chatboxes' toolbars.
  1290. * *call*:
  1291. Provides a button with a picture of a telephone on it.
  1292. When the call button is pressed, it will emit an event that can be used by a third-party library to initiate a call.
  1293. .. code-block:: javascript
  1294. converse.listen.on('callButtonClicked', function(data) {
  1295. console.log('Strophe connection is', data.connection);
  1296. console.log('Bare buddy JID is', data.model.get('jid'));
  1297. // ... Third-party library code ...
  1298. });
  1299. * *emoji*:
  1300. Enables rendering of emoji and provides a toolbar button for choosing them.
  1301. * *spoiler*:
  1302. Shows a button for showing`XEP-0382 <https://xmpp.org/extensions/xep-0382.html>`_ spoiler messages.
  1303. * *toggle_occupants*:
  1304. Shows a button for toggling (i.e. showing/hiding) the list of occupants in a chatroom.
  1305. .. _`websocket-url`:
  1306. websocket_url
  1307. -------------
  1308. * Default: ``undefined``
  1309. Example: ``ws://xmpp.example.com:5280/ws/``
  1310. Example with reverse-proxy and TLS: ``wss://xmpp.example.com/ws/``
  1311. This option is used to specify a
  1312. `websocket <https://developer.mozilla.org/en/docs/WebSockets>`_ URI to which
  1313. Converse can connect to.
  1314. Websockets provide a more modern and effective two-way communication protocol
  1315. between the browser and a server, effectively emulating TCP at the application
  1316. layer and therefore overcoming many of the problems with existing long-polling
  1317. techniques for bidirectional HTTP (such as `BOSH <https://en.wikipedia.org/wiki/BOSH>`_).
  1318. Please refer to your XMPP server's documentation on how to enable websocket
  1319. support.
  1320. .. _`view_mode`:
  1321. view_mode
  1322. ---------
  1323. * Default: ``overlayed``
  1324. * Allowed values: ``overlayed``, ``fullscreen``, ``mobile``, ``embedded``
  1325. The ``view_mode`` setting configures Converse's mode and resulting behavior.
  1326. * ``overlayed`` is the original mode, in which the chats appeared as small boxes overlaying a webpage which can contain arbitrary content.
  1327. * ``fullscreen`` is for a fullpage and single-page app.
  1328. * ``embedded`` is used to embed a single chat into a DOM element in the page. The DOM element must have the id ``#conversejs``.
  1329. * ``mobile`` is for smaller viewports. Converse is responsive, and the other views will also resize to fit a smaller viewport, but certain behavioural changes won't be made. For example, when using ``overlayed`` in a mobile view, Converse won't know which chat is currently visible and therefore won't be able to properly show notifications for chats that are obscured.
  1330. .. note::
  1331. Before the introduction of this setting (in version 3.3.0), there were there
  1332. different builds, each for the different modes.
  1333. These were:
  1334. * ``converse-mobile.js`` for the ``mobile`` mode
  1335. * ``converse-muc-embedded.js`` for embedding a single MUC room into a DOM element with id ``conversejs``
  1336. * ``converse.js`` for the ``overlayed`` mode
  1337. * ``inverse.js`` for the ``fullscreen`` mode
  1338. Besides having different builds, certain plugins had to be whitelisted
  1339. and blacklisted for the different modes.
  1340. ``converse-singleton`` had to be whitelisted for the ``mobile`` and ``fullscreen``
  1341. modes, additionally ``converse-inverse`` had to be whitelisted for the
  1342. ``fullscreen`` mode.
  1343. For both those modes the ``converse-minimize`` and ``converse-dragresize``
  1344. plugins had to be blacklisted.
  1345. When using ``converse-muc-embedded.js`` various plugins also had to manually be
  1346. blacklisted.
  1347. Since version 3.3.0 it's no longer necessary to blacklist any plugins (except
  1348. for ``converse-muc-embedded.js``, which is from version 3.3.3).
  1349. Blacklisting now happens automatically.
  1350. Since version 3.3.0, the ``inverse.js`` and ``converse-mobile.js`` builds no
  1351. longer exist. Instead the standard ``converse.js`` build is used, together with
  1352. the appropriate ``view_mode`` value.
  1353. Since version 4.0.0, there is now also only one CSS file to be used for all
  1354. the different view modes, ``converse.css``.
  1355. The ``converse-muc-embedded.js`` build can still be built, because it's smaller
  1356. than ``converse.js`` due to unused code being removed. It doesn't however contain
  1357. any new code, so the full ``converse.js`` build could be used instead, as long
  1358. as ``view_mode`` is set to ``embedded``.
  1359. Furthermore, it's no longer necessary to whitelist or blacklist any plugins
  1360. when switching view modes.
  1361. .. _`whitelisted_plugins`:
  1362. whitelisted_plugins
  1363. -------------------
  1364. * Default: ``[]``
  1365. A list of plugin names that are whitelisted and will therefore be
  1366. initialized once ``converse.initialize`` is called.
  1367. From Converse 3.0 onwards most of the API is available only to plugins and
  1368. all plugins need to be whitelisted first.
  1369. This is done to prevent malicious scripts from using the API to trick users or
  1370. to read their conversations.
  1371. By default all the core plugins are already whitelisted.
  1372. These are::
  1373. converse-bookmarks
  1374. converse-chatboxes
  1375. converse-chatview
  1376. converse-controlbox
  1377. converse-core
  1378. converse-disco
  1379. converse-dragresize
  1380. converse-fullscreen
  1381. converse-headline
  1382. converse-mam
  1383. converse-minimize
  1384. converse-muc
  1385. converse-muc-embedded
  1386. converse-notification
  1387. converse-ping
  1388. converse-profile
  1389. converse-register
  1390. converse-roomslist
  1391. converse-rosterview
  1392. converse-singleton
  1393. converse-spoilers
  1394. converse-vcard'
  1395. .. note::
  1396. If you are using a custom build which excludes some core plugins, then you
  1397. should blacklist them so that malicious scripts can't register their own
  1398. plugins under those names. See `blacklisted_plugins`_ for more info.
  1399. Example:
  1400. .. code-block:: javascript
  1401. require(['converse-core', 'converse-muc-embedded'], function (converse) {
  1402. converse.initialize({
  1403. // other settings removed for brevity
  1404. whitelisted_plugins: ['myplugin']
  1405. });
  1406. });
  1407. xhr_user_search_url
  1408. -------------------
  1409. .. note::
  1410. XHR stands for XMLHTTPRequest, and is meant here in the AJAX sense (Asynchronous JavaScript and XML).
  1411. * Default: ``null``
  1412. There are two ways to add users.
  1413. * The user inputs a valid JID (Jabber ID, aka XMPP address), and the user is added as a pending contact.
  1414. * The user inputs some text (for example part of a first name or last name),
  1415. an XHR (Ajax Request) will be made to a remote server, and a list of matches are returned.
  1416. The user can then choose one of the matches to add as a contact.
  1417. By providing an XHR search URL, you're enabling the second mechanism.
  1418. *What is expected from the remote server?*
  1419. A default JSON encoded list of objects must be returned. Each object
  1420. corresponds to a matched user and needs the keys ``jid`` and ``fullname``.
  1421. .. code-block:: javascript
  1422. [{"jid": "marty@mcfly.net", "fullname": "Marty McFly"}, {"jid": "doc@brown.com", "fullname": "Doc Brown"}]
  1423. .. note::
  1424. Make sure your server script sets the header `Content-Type: application/json`.
  1425. This is the URL to which an XHR GET request will be made to fetch user data from your remote server.
  1426. The query string will be included in the request with ``q`` as its key.
  1427. The data returned must be a JSON encoded list of user JIDs.
  1428. .. note::
  1429. Converse will construct the XHR get URL by simply appending
  1430. ``q=<query string entered>`` to the URL given by ``xhr_user_search_url``.
  1431. It is therefore important that the necessary question mark (``?``) preceding the
  1432. URL's query component or necessary delimiters (``&``) are included. See valid
  1433. examples below.
  1434. Examples:
  1435. .. code-block:: javascript
  1436. xhr_user_search_url: 'https://some.url/some_path?',
  1437. xhr_user_search_url: 'https://some.url/some_path?api_key=somekey&',