summaryrefslogtreecommitdiff
path: root/poezio
diff options
context:
space:
mode:
Diffstat (limited to 'poezio')
-rw-r--r--poezio/config.py2
-rw-r--r--poezio/core/core.py9
2 files changed, 7 insertions, 4 deletions
diff --git a/poezio/config.py b/poezio/config.py
index 0fb6d118..830c505b 100644
--- a/poezio/config.py
+++ b/poezio/config.py
@@ -137,7 +137,7 @@ DEFAULT_CONFIG = {
'themes_dir': '',
'tmp_image_dir': '',
'use_bookmarks_method': '',
- 'use_log': False,
+ 'use_log': True,
'use_remote_bookmarks': True,
'user_list_sort': 'desc',
'use_tab_nicks': True,
diff --git a/poezio/core/core.py b/poezio/core/core.py
index 85e68bf5..580e4c76 100644
--- a/poezio/core/core.py
+++ b/poezio/core/core.py
@@ -526,10 +526,13 @@ class Core:
if firstrun:
self.information(
'It seems that it is the first time you start poezio.\n'
- 'The online help is here http://doc.poez.io/\n'
+ 'The online help is here https://doc.poez.io/\n\n'
'No room is joined by default, but you can join poezio’s'
- ' room (with /join poezio@muc.poez.io), where you can'
- ' ask for help or tell us how great it is.', 'Help')
+ ' room (with \x19b/join poezio@muc.poez.io\x19o), where you can'
+ ' ask for help or tell us how great it is.\n\n'
+ 'Note that all of your discussions are currently logged'
+ ' to the disk, you can prevent that with'
+ ' \x19b/set use_log false\x19o', 'Help')
self.refresh_window()
self.xmpp.plugin['xep_0012'].begin_idle(jid=self.xmpp.boundjid)