67 lines
1.8 KiB
Bash
67 lines
1.8 KiB
Bash
###############################################
|
|
# SNEEDCHAT LOGIN / ROOM CONFIGURATION
|
|
###############################################
|
|
|
|
# Your Sneedchat login username (same as XenForo account)
|
|
BRIDGE_USERNAME=
|
|
|
|
# Your Sneedchat login password
|
|
BRIDGE_PASSWORD=
|
|
|
|
# Optional: your numeric XenForo user_id for the bridge account
|
|
# Used ONLY for echo-suppression (detecting bridge's own posts)
|
|
BRIDGE_USER_ID=0
|
|
|
|
# The Sneedchat room number you want to join
|
|
# Example: 69 (General Room)
|
|
SNEEDCHAT_ROOM_ID=
|
|
|
|
|
|
###############################################
|
|
# MATRIX CLIENT MODE (normal user token)
|
|
###############################################
|
|
|
|
# Your Matrix homeserver (no trailing slash)
|
|
# Example: https://matrix.org
|
|
MATRIX_HOMESERVER=
|
|
|
|
# Access token for the Matrix bot/user account
|
|
MATRIX_ACCESS_TOKEN=
|
|
|
|
# MXID of the Matrix bot/user account
|
|
# Example: @bridge:example.org
|
|
MATRIX_USER_ID=
|
|
|
|
# Matrix room ID to bridge to
|
|
# Example: !yourroomid:example.org
|
|
MATRIX_ROOM_ID=
|
|
|
|
|
|
###############################################
|
|
# MATRIX APPSERVICE MODE (ghost user spawning)
|
|
###############################################
|
|
|
|
# Enable: 1 / true
|
|
# Disable: 0 / false
|
|
MATRIX_APPSERVICE_MODE=false
|
|
|
|
# Your appservice token (required only if APPSERVICE_MODE=true)
|
|
MATRIX_APPSERVICE_TOKEN=
|
|
|
|
# Default domain for ghost MXIDs spawned by the bridge
|
|
# Example output: @john:sneedchat.kiwifarms.net
|
|
MATRIX_GHOST_USER_DOMAIN=sneedchat.kiwifarms.net
|
|
|
|
# Prefix for generated ghost MXIDs
|
|
# Final MXID format: @sneed_<username>:sneedchat.kiwifarms.net
|
|
# If you prefer @username:sneedchat.kiwifarms.net, set prefix=""
|
|
MATRIX_GHOST_USER_PREFIX=
|
|
|
|
|
|
###############################################
|
|
# DEBUG SETTINGS
|
|
###############################################
|
|
# Enable verbose debugging: 1 / true
|
|
# Disable: 0 / false
|
|
DEBUG=false
|