Commit dffe3d1a authored by JC Brand's avatar JC Brand

smacks: Set `enable_smacks` to `true` as default

parent c3447dd2
......@@ -2,9 +2,10 @@
## 6.0.0 (Unreleased)
- [enable_smacks](https://conversejs.org/docs/html/configuration.html#enable-smacks) is not set to `true` by default.
- Refactor some presence and status handling code from `converse-core` into `@converse/headless/converse-status`.
- Add support for [XEP-0424 Message Retraction](http://localhost:3080/extensions/xep-0424.html)
- Add support for [XEP-0425 Message Moderation](http://localhost:3080/extensions/xep-0425.html)
- Refactor some presence and status handling code from `converse-core` into `@converse/headless/converse-status`.
- New API [\_converse.api.headlines](https://conversejs.org/docs/html/api/-_converse.api.headlines.html#.get)
- New config option [allow_message_retraction](https://conversejs.org/docs/html/configuration.html#allow-message-retraction)
- New config option [muc-show-logs-before-join](https://conversejs.org/docs/html/configuration.html#muc-show-logs-before-join)
......
......@@ -29,7 +29,7 @@ converse.plugins.add('converse-smacks', {
// Refer to docs/source/configuration.rst for explanations of these
// configuration settings.
_converse.api.settings.update({
'enable_smacks': false,
'enable_smacks': true,
'smacks_max_unacked_stanzas': 5,
});
......
......@@ -228,8 +228,9 @@
'animate': false,
'auto_subscribe': false,
'bosh_service_url': 'montague.lit/http-bind',
'loglevel': 'warn',
'enable_smacks': false,
'i18n': 'en',
'loglevel': 'warn',
'no_trimming': true,
'play_sounds': false,
'use_emojione': false,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment