diff options
author | Caleb James DeLisle <cjd@cjdns.fr> | 2017-06-24 10:32:12 +0200 |
---|---|---|
committer | Caleb James DeLisle <cjd@cjdns.fr> | 2017-06-24 10:32:12 +0200 |
commit | 27bd0b9a91607beb3965c48edcab10e5f6924879 (patch) | |
tree | ea42a1ca87311a38e48a0e29f4b5830ce0c23d3e | |
parent | Fix TravisCI tests for PR #2301 - Fat finger mistake (diff) | |
download | synapse-27bd0b9a91607beb3965c48edcab10e5f6924879.tar.xz |
Change the config file generator to more descriptive explanation of push.redact_content
-rw-r--r-- | synapse/config/push.py | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/synapse/config/push.py b/synapse/config/push.py index 4e5f428820..9c68318b40 100644 --- a/synapse/config/push.py +++ b/synapse/config/push.py @@ -26,11 +26,19 @@ class PushConfig(Config): def default_config(self, config_dir_path, server_name, **kwargs): return """ # Control how push messages are sent to google/apple to notifications. - # Normally every message is posted to a push server hosted by matrix.org + # Normally every message said in a room with one or more people using + # mobile devices will be posted to a push server hosted by matrix.org # which is registered with google and apple in order to allow push - # notifications to be sent to mobile devices. + # notifications to be sent to these mobile devices. + # # Setting redact_content to true will make the push messages contain no - # message content which will provide increased privacy. + # message content which will provide increased privacy. This is a + # temporary solution pending improvements to Android and iPhone apps + # to get content from the app rather than the notification. + # + # For modern android devices the notification content will still appear + # because it is loaded by the app. iPhone, however will send a + # notification saying only that a message arrived and who it came from. # #push: # redact_content: false |