-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.toml
More file actions
32 lines (24 loc) · 956 Bytes
/
Copy pathconfig.example.toml
File metadata and controls
32 lines (24 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[matrix]
homeserver = "https://matrix.example.org"
username = "calendar_bot"
password = "secret" # or set MATRIX_PASSWORD env var
# access_token = "syt_..." # use instead of password for SSO accounts; or set MATRIX_ACCESS_TOKEN env var
[calendar]
latitude = "52.634289"
longitude = "-1.690710"
timezone = "Europe/London"
[bot]
prefix = "!"
# welcome_room = "Campfire" # room name where new joins get a welcome message
[moderation]
enabled = false # set to true to activate
# mod_room_id = "!yourModRoomId:matrix.org" # optional: dedicated mod room for alerts
screening_room = "Campfire Chat" # room display name where new users are screened
# How many clean messages before a user is considered trusted
new_user_threshold = 5
# Text analysis uses claude -p (requires Claude Code with CLAUDE_CODE_OAUTH_TOKEN set)
[notifications]
# Matrix user IDs to DM for bot alerts (errors, warnings, etc.)
admin_users = [
# "@you:matrix.example.org",
]