configuration.rst 76 KB

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