mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 10:56:34 +01:00
update whatsapp config
This commit is contained in:
parent
80f1baecca
commit
85fefe2e93
1 changed files with 14 additions and 2 deletions
|
@ -62,7 +62,7 @@ in
|
||||||
registration_shared_secret = "";
|
registration_shared_secret = "";
|
||||||
public_baseurl = baseUrl;
|
public_baseurl = baseUrl;
|
||||||
app_service_config_files = [
|
app_service_config_files = [
|
||||||
"/var/lib/mautrix-whatsapp/whatsapp-registration.yaml"
|
"/var/lib/matrix-synapse/whatsapp-registration.yaml"
|
||||||
];
|
];
|
||||||
listeners = [
|
listeners = [
|
||||||
{
|
{
|
||||||
|
@ -90,7 +90,7 @@ in
|
||||||
type = "sqlite3";
|
type = "sqlite3";
|
||||||
uri = "/var/lib/mautrix-whatsapp/mautrix-whatsapp.db";
|
uri = "/var/lib/mautrix-whatsapp/mautrix-whatsapp.db";
|
||||||
};
|
};
|
||||||
ephemeral_events = false;
|
ephemeral_events = true;
|
||||||
id = "whatsapp";
|
id = "whatsapp";
|
||||||
};
|
};
|
||||||
bridge = {
|
bridge = {
|
||||||
|
@ -98,15 +98,27 @@ in
|
||||||
allow = true;
|
allow = true;
|
||||||
default = true;
|
default = true;
|
||||||
require = true;
|
require = true;
|
||||||
|
appservice = true;
|
||||||
|
|
||||||
};
|
};
|
||||||
history_sync = {
|
history_sync = {
|
||||||
request_full_sync = true;
|
request_full_sync = true;
|
||||||
|
message_count = -1;
|
||||||
};
|
};
|
||||||
mute_bridging = true;
|
mute_bridging = true;
|
||||||
|
personal_filtering_spaces = true;
|
||||||
permissions = {
|
permissions = {
|
||||||
|
"*" = "relay";
|
||||||
"missing.ninja" = "user";
|
"missing.ninja" = "user";
|
||||||
|
"@admin:missing.ninja" = "admin";
|
||||||
};
|
};
|
||||||
private_chat_portal_meta = true;
|
private_chat_portal_meta = true;
|
||||||
|
whatsapp_thumbnail = true;
|
||||||
|
federate_rooms = false;
|
||||||
|
caption_in_message = true;
|
||||||
|
extev_polls = true;
|
||||||
|
cross_room_replies = true;
|
||||||
|
|
||||||
provisioning = {
|
provisioning = {
|
||||||
shared_secret = "disable";
|
shared_secret = "disable";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue