diff options
-rw-r--r-- | data/default_config.cfg | 2 | ||||
-rw-r--r-- | doc/source/configuration.rst | 2 | ||||
-rw-r--r-- | poezio/config.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/data/default_config.cfg b/data/default_config.cfg index 93b8d377..a166cc46 100644 --- a/data/default_config.cfg +++ b/data/default_config.cfg @@ -139,7 +139,7 @@ use_bookmarks_method = # Will create a bookmark on manual /join, using your preferred # storage method -#bookmark_on_join = true +#bookmark_on_join = false # What will be put after the name, when using autocompletion at the # beginning of the input. A space will always be added after that diff --git a/doc/source/configuration.rst b/doc/source/configuration.rst index 73e4677c..8f57dcc0 100644 --- a/doc/source/configuration.rst +++ b/doc/source/configuration.rst @@ -364,7 +364,7 @@ to understand what is :ref:`carbons <carbons-details>` or bookmark_on_join - **Default value:** ``true`` + **Default value:** ``false`` If ``true``, poezio will bookmark automatically every room that is joined with a manual ``/join`` command. diff --git a/poezio/config.py b/poezio/config.py index 4289bae5..7ac630b6 100644 --- a/poezio/config.py +++ b/poezio/config.py @@ -33,7 +33,7 @@ DEFAULT_CONFIG = { 'autorejoin_delay': '5', 'autorejoin': False, 'beep_on': 'highlight private invite disconnect', - 'bookmark_on_join': True, + 'bookmark_on_join': False, 'ca_cert_path': '', 'certificate': '', 'certfile': '', |