This repository was archived by the owner on Jan 23, 2024. It is now read-only.
File tree 3 files changed +11
-1
lines changed
3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
# ansible-role-matrix
2
2
3
- intended to have only one user - due to incompatibility with bridges...
3
+ intended to have only one user - due to incompatibility with bridges...
4
+
5
+ Currently this bridge officially supports only the mautrix-whatsapp bridge, even though telegram, signal and discord should also be working.
Original file line number Diff line number Diff line change @@ -8,21 +8,25 @@ matrix_synapse_postgresql_username: synapse
8
8
matrix_synapse_postgresql_password :
9
9
matrix_synapse_postgresql_database : synapse
10
10
11
+ matrix_enable_whatsapp : false
11
12
matrix_whatsapp_postgresql_username : mautrix-whatsapp
12
13
matrix_whatsapp_postgresql_password :
13
14
matrix_whatsapp_postgresql_database : mautrix-whatsapp
14
15
16
+ matrix_enable_signal : false
15
17
matrix_signal_postgresql_username : mautrix-signal
16
18
matrix_signal_postgresql_password :
17
19
matrix_signal_postgresql_database : mautrix-signal
18
20
21
+ matrix_enable_telegram : false
19
22
matrix_telegram_postgresql_username : mautrix-telegram
20
23
matrix_telegram_postgresql_password :
21
24
matrix_telegram_postgresql_database : mautrix-telegram
22
25
23
26
matrix_telegram_api_id :
24
27
matrix_telegram_api_hash :
25
28
29
+ matrix_enable_discord : false
26
30
matrix_discord_postgresql_username : mautrix-discord
27
31
matrix_discord_postgresql_password :
28
32
matrix_discord_postgresql_database : mautrix-discord
Original file line number Diff line number Diff line change 13
13
14
14
- name : " Setup mautrix-whatsapp"
15
15
when :
16
+ - " matrix_enable_whatsapp"
16
17
- " matrix_whatsapp_postgresql_username is defined"
17
18
- " matrix_whatsapp_postgresql_password is defined"
18
19
- " matrix_whatsapp_postgresql_database is defined"
23
24
24
25
# - name: "Setup mautrix-telegram"
25
26
# when:
27
+ # - "matrix_enable_telegram"
26
28
# - "matrix_telegram_postgresql_username is defined"
27
29
# - "matrix_telegram_postgresql_password is defined"
28
30
# - "matrix_telegram_postgresql_database is defined"
37
39
38
40
# - name: "Setup mautrix-signal"
39
41
# when:
42
+ # - "matrix_enable_signal"
40
43
# - "matrix_signal_postgresql_username is defined"
41
44
# - "matrix_signal_postgresql_password is defined"
42
45
# - "matrix_signal_postgresql_database is defined"
47
50
48
51
# - name: "Setup mautrix-discord"
49
52
# when:
53
+ # - "matrix_enable_discord"
50
54
# - "matrix_discord_postgresql_username is defined"
51
55
# - "matrix_discord_postgresql_password is defined"
52
56
# - "matrix_discord_postgresql_database is defined"
You can’t perform that action at this time.
0 commit comments