mirror of
https://github.com/YunoHost-Apps/mautrix_whatsapp_ynh.git
synced 2024-09-03 19:46:01 +02:00
Add changes to config.yaml
This commit is contained in:
parent
6db7e4faf3
commit
a46e5ea525
1 changed files with 6 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
homeserver:
|
homeserver:
|
||||||
# The address that this appservice can use to connect to the homeserver.
|
# The address that this appservice can use to connect to the homeserver.
|
||||||
address: https://__DOMAIN__
|
address: https://__DOMAIN__
|
||||||
# The domain of the homeserver (for MXIDs, etc).
|
# The domain of the homeserver (also known as server_name, used for MXIDs, etc).
|
||||||
domain: __SERVER_NAME__
|
domain: __SERVER_NAME__
|
||||||
|
|
||||||
# What software is the homeserver running?
|
# What software is the homeserver running?
|
||||||
|
@ -29,11 +29,12 @@ appservice:
|
||||||
|
|
||||||
# Database config.
|
# Database config.
|
||||||
database:
|
database:
|
||||||
# The database type. "sqlite3" and "postgres" are supported.
|
# The database type. "sqlite3-fk-wal" and "postgres" are supported.
|
||||||
#type: sqlite3
|
#type: sqlite3
|
||||||
type: postgres
|
type: postgres
|
||||||
# The database URI.
|
# The database URI.
|
||||||
# SQLite: File name is enough. https://github.com/mattn/go-sqlite3#connection-string
|
# SQLite: A raw file path is supported, but `file:<path>?_txlock=immediate` is recommended.
|
||||||
|
# https://github.com/mattn/go-sqlite3#connection-string
|
||||||
# Postgres: Connection string. For example, postgres://user:password@host/database?sslmode=disable
|
# Postgres: Connection string. For example, postgres://user:password@host/database?sslmode=disable
|
||||||
# To connect via Unix socket, use something like postgres:///dbname?host=/var/run/postgresql
|
# To connect via Unix socket, use something like postgres:///dbname?host=/var/run/postgresql
|
||||||
uri: postgres://__APP__:__DB_PWD__@localhost:5432/__DB_NAME__
|
uri: postgres://__APP__:__DB_PWD__@localhost:5432/__DB_NAME__
|
||||||
|
@ -301,6 +302,8 @@ bridge:
|
||||||
# Send captions in the same message as images. This will send data compatible with both MSC2530 and MSC3552.
|
# Send captions in the same message as images. This will send data compatible with both MSC2530 and MSC3552.
|
||||||
# This is currently not supported in most clients.
|
# This is currently not supported in most clients.
|
||||||
caption_in_message: false
|
caption_in_message: false
|
||||||
|
# Should polls be sent using MSC3381 event types?
|
||||||
|
extev_polls: false
|
||||||
# Should Matrix edits be bridged to WhatsApp edits?
|
# Should Matrix edits be bridged to WhatsApp edits?
|
||||||
# Official WhatsApp clients don't render edits yet, but once they do, the bridge should work with them right away.
|
# Official WhatsApp clients don't render edits yet, but once they do, the bridge should work with them right away.
|
||||||
send_whatsapp_edits: false
|
send_whatsapp_edits: false
|
||||||
|
|
Loading…
Add table
Reference in a new issue