summaryrefslogtreecommitdiff
path: root/poezio/core/core.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-08-13 22:04:42 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-08-13 22:04:42 +0200
commit661fab8df0ab7482e530030eba617f2818d7e386 (patch)
tree6917f69de80e343f3fafd93451cc531cb53bec97 /poezio/core/core.py
parent40fc9246e5de87991ba1823bbe235a35785343cc (diff)
downloadpoezio-661fab8df0ab7482e530030eba617f2818d7e386.tar.gz
poezio-661fab8df0ab7482e530030eba617f2818d7e386.tar.bz2
poezio-661fab8df0ab7482e530030eba617f2818d7e386.tar.xz
poezio-661fab8df0ab7482e530030eba617f2818d7e386.zip
Switch the default use_log value to true
Since this is a privacy sensitive action, a short message is now displayed on first run.
Diffstat (limited to 'poezio/core/core.py')
-rw-r--r--poezio/core/core.py9
1 files changed, 6 insertions, 3 deletions
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)