mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Fix sample_config.yaml in regards track_puppeted_user_ips (#11749)
* Fix sample_config.yaml in regards track_puppeted_user_ips Closes #11741 Signed-off-by: Jason Robinson <jasonr@matrix.org>
This commit is contained in:
parent
3e0536cd2a
commit
904bb04409
1
changelog.d/11749.feature
Normal file
1
changelog.d/11749.feature
Normal file
@ -0,0 +1 @@
|
|||||||
|
Add `track_puppeted_user_ips` config flag to track puppeted user IP addresses. This also includes them in monthly active user counts.
|
@ -1503,11 +1503,12 @@ room_prejoin_state:
|
|||||||
#additional_event_types:
|
#additional_event_types:
|
||||||
# - org.example.custom.event.type
|
# - org.example.custom.event.type
|
||||||
|
|
||||||
# If enabled, puppeted user IP's can also be tracked. By default when
|
# By default when puppeting another user, the user who has created the
|
||||||
# puppeting another user, the user who has created the access token
|
# access token for puppeting is tracked. If this is enabled, both
|
||||||
# for puppeting is tracked. If this is enabled, both requests are tracked.
|
# requests are tracked. Implicitly enables MAU tracking for puppeted users.
|
||||||
# Implicitly enables MAU tracking for puppeted users.
|
# Uncomment to also track puppeted user IP's.
|
||||||
#track_puppeted_user_ips: false
|
#
|
||||||
|
#track_puppeted_user_ips: true
|
||||||
|
|
||||||
|
|
||||||
# A list of application service config files to use
|
# A list of application service config files to use
|
||||||
|
@ -61,11 +61,12 @@ class ApiConfig(Config):
|
|||||||
#additional_event_types:
|
#additional_event_types:
|
||||||
# - org.example.custom.event.type
|
# - org.example.custom.event.type
|
||||||
|
|
||||||
# If enabled, puppeted user IP's can also be tracked. By default when
|
# By default when puppeting another user, the user who has created the
|
||||||
# puppeting another user, the user who has created the access token
|
# access token for puppeting is tracked. If this is enabled, both
|
||||||
# for puppeting is tracked. If this is enabled, both requests are tracked.
|
# requests are tracked. Implicitly enables MAU tracking for puppeted users.
|
||||||
# Implicitly enables MAU tracking for puppeted users.
|
# Uncomment to also track puppeted user IP's.
|
||||||
#track_puppeted_user_ips: false
|
#
|
||||||
|
#track_puppeted_user_ips: true
|
||||||
""" % {
|
""" % {
|
||||||
"formatted_default_state_types": formatted_default_state_types
|
"formatted_default_state_types": formatted_default_state_types
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user