configuration.rst 62 KB

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