2023-07-09 16:59:30 -04:00
###########################################################################
# These values can be hard coded for easier usage: #
2023-07-22 16:21:50 -04:00
homeserver_url = "matrix.example.org" # Your homeserver URL
base_url = "example.org" # Your base URL (appears in usernames)
access_token = "" # Your homeserver admin access token
2023-07-14 11:18:31 -04:00
# ipinfo.io token
2023-07-22 16:21:50 -04:00
ipinfo_token = "" # Leave blank to disable ipinfo.io lookups
2023-07-09 16:59:30 -04:00
# rdlist specific
2023-08-07 07:26:58 -04:00
rdlist_dir = "~/rdlist" # The directory where rdlist is pulled to
2023-07-22 16:21:50 -04:00
rdlist_bot_username = "mod_team" # The username to perform automated room shutdowns
2023-07-29 11:46:32 -04:00
rdlist_bot_username = "strong-password" # The password for this user
2023-07-20 12:58:43 -04:00
rdlist_recommended_tags = ['hub_room_links', 'hub_room_trade', 'preban', 'degen_misc', 'beastiality', 'degen_porn', 'gore', 'snuff', 'degen_larp', 'hub_room_sussy', 'bot_spam', 'cfm', 'jailbait', 'bot_porn', 'toddlercon', 'loli', 'csam', 'tfm', 'degen_meet', 'stylized_3d_loli', '3d_loli']
2023-07-25 09:52:08 -04:00
# User report generator
2023-07-22 16:21:50 -04:00
report_folder = "./reports" # Reports folder name
2023-08-03 08:53:16 -04:00
testing_mode = False # Prevents the incident report feature from messaging/emailing anyone besides you, also limits the number of room states are exported when generating user reports.
2023-07-25 09:52:08 -04:00
# Incident report email settings
2023-07-23 15:30:55 -04:00
smtp_user = "abuse@matrix.example.org"
smtp_password = "strong-stmp-password"
smtp_server = "smtp.provider.org"
smtp_port = 587
2023-07-29 11:46:32 -04:00
incident_report_return_email = "youradminemail@example.org"
2023-07-30 21:26:47 -04:00
incident_report_return_mxid = "@yourmxid:example.com"
2023-07-09 16:59:30 -04:00
###########################################################################
2023-07-23 15:30:55 -04:00