2019-04-13 12:31:28 +02:00
|
|
|
[http]
|
|
|
|
# The path the listener will expect the post data
|
|
|
|
http_uri = "/post"
|
|
|
|
# The port the listener will listen on
|
|
|
|
http_port = "9000"
|
|
|
|
|
|
|
|
|
2019-04-20 16:08:30 +02:00
|
|
|
[matrix]
|
2019-04-13 12:31:28 +02:00
|
|
|
# The matrix server to connect to
|
|
|
|
matrix_host = "http://matrix.org"
|
|
|
|
# The matrix room to post to
|
|
|
|
matrix_room = "#my-awesome-room:matrix.org"
|
|
|
|
# User credentions of the bot for posting to the room
|
|
|
|
matrix_pass = "supersecretpass"
|
|
|
|
matrix_user = "my-awesome-bot"
|
|
|
|
|
2019-04-20 16:08:30 +02:00
|
|
|
|
|
|
|
[bot]
|
|
|
|
# Path of the database to be used
|
|
|
|
db_path = "./tokens.db"
|
2019-04-22 16:30:52 +02:00
|
|
|
# message type: 'html' or 'plain'
|
|
|
|
message_type = "html"
|
2019-04-20 16:08:30 +02:00
|
|
|
|