18 lines
654 B
PHP
18 lines
654 B
PHP
<?php
|
|
$config = [
|
|
"homeserver" => "example.com",
|
|
"access_token" => "To be used for sending the registration notification",
|
|
|
|
// Which e-mail-adresse shall the bot use to send e-mails?
|
|
"register_email" => 'register_bot@example.com',
|
|
// Where should the bot post registration requests to?
|
|
"register_room" => '$registerRoomID:example.com',
|
|
|
|
// Where is the public part of the bot located? make sure you have a / at the end
|
|
"webroot" => "https://myregisterdomain.net/",
|
|
|
|
// optional: Do you have a place where howTo's are located? If not leave this value out
|
|
"howToURL" => "https://my-url-for-storing-howTos.net",
|
|
]
|
|
?>
|