-
Notifications
You must be signed in to change notification settings - Fork 14
/
config.py
29 lines (21 loc) · 927 Bytes
/
config.py
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
# def account1_password_eval():
# # you can substitute your password directly here
# # or you can evaluate the password in any way you want if you don't
# # want it to appear in plain text
# return "account1secretpassword"
# def account2_matrixorg_password_eval():
# return "account2secretpassword"
# def account3_password_eval_any_name():
# return "yXkdsjhslkjhdlksjhffffffkkssskjsdhkljhssdc"
# accounts=[
# { "server":"https://example.com", # don't include the trailing slash
# "username":"account1",
# "passeval":account1_password_eval },
# { "server":"https://matrix.org",
# "username":"account2",
# "passeval":account2_matrixorg_password_eval},
# { "server":"https://example.com",
# "username":"account3",
# "passeval":account3_password_eval_any_name },
# ]
# ignore_rooms = ["room_id", "another_room_id"]