2022-02-05 20:32:54 +00:00
---
2020-05-22 11:50:59 +00:00
# matrix-sms-bridge is a Matrix <-> SMS bridge
2022-07-16 20:59:21 +00:00
# Project source code URL: https://github.com/benkuly/matrix-sms-bridge
2020-05-22 11:50:59 +00:00
matrix_sms_bridge_enabled : true
2021-04-27 12:39:58 +00:00
matrix_sms_bridge_version : 0.5 .7
2021-04-12 12:39:16 +00:00
matrix_sms_bridge_docker_image : "{{ matrix_container_global_registry_prefix }}folivonet/matrix-sms-bridge:{{ matrix_sms_bridge_version }}"
2020-05-22 11:50:59 +00:00
matrix_sms_bridge_base_path : "{{ matrix_base_data_path }}/matrix-sms-bridge"
matrix_sms_bridge_config_path : "{{ matrix_base_data_path }}/matrix-sms-bridge/config"
matrix_sms_bridge_data_path : "{{ matrix_base_data_path }}/matrix-sms-bridge/data"
matrix_sms_bridge_appservice_token : ''
matrix_sms_bridge_homeserver_token : ''
matrix_sms_bridge_container_http_host_bind_port : ''
# A list of extra arguments to pass to the container
matrix_sms_bridge_container_extra_arguments : [ ]
2020-05-23 11:14:24 +00:00
# List of systemd services that service depends on.
2020-11-13 07:44:21 +00:00
matrix_sms_bridge_systemd_required_services_list : [ 'docker.service' ]
2020-05-22 11:50:59 +00:00
2020-05-23 11:14:24 +00:00
# List of systemd services that service wants
2020-05-22 11:50:59 +00:00
matrix_sms_bridge_systemd_wanted_services_list : [ ]
matrix_sms_bridge_appservice_url : 'http://matrix-sms-bridge:8080'
matrix_sms_bridge_homeserver_hostname : 'matrix-synapse'
2021-11-16 19:03:21 +00:00
matrix_sms_bridge_homeserver_port : ""
2020-05-22 11:50:59 +00:00
matrix_sms_bridge_homserver_domain : "{{ matrix_domain }}"
matrix_sms_bridge_default_room : ''
2020-06-11 13:37:46 +00:00
matrix_sms_bridge_default_region : ''
2020-07-14 11:02:34 +00:00
matrix_sms_bridge_default_timezone : ''
2020-11-13 07:44:21 +00:00
matrix_sms_bridge_single_mode_enabled : false
2020-05-22 11:50:59 +00:00
2020-11-23 11:30:39 +00:00
matrix_sms_bridge_provider_android_baseurl : ''
matrix_sms_bridge_provider_android_username : ''
matrix_sms_bridge_provider_android_password : ''
matrix_sms_bridge_provider_android_truststore_local_path : ''
matrix_sms_bridge_provider_android_truststore_password : ''
2020-06-02 12:56:22 +00:00
2020-05-22 11:50:59 +00:00
matrix_sms_bridge_configuration_yaml : |
#jinja2: lstrip_blocks: "True"
# Database connection
matrix :
bridge :
sms :
# (optional) SMS messages without a valid token a routed to this room.
# Note that you must invite @smsbot:yourHomeServer to this room.
defaultRoomId : "{{ matrix_sms_bridge_default_room }}"
2020-06-11 13:37:46 +00:00
defaultRegion : "{{ matrix_sms_bridge_default_region }}"
2020-07-14 11:02:34 +00:00
defaultTimeZone : "{{ matrix_sms_bridge_default_timezone }}"
2020-11-13 07:44:21 +00:00
singleModeEnabled : "{{ matrix_sms_bridge_single_mode_enabled }}"
2020-05-22 11:50:59 +00:00
provider :
2020-11-23 11:30:39 +00:00
android :
2020-05-22 11:50:59 +00:00
# (optional) default is disabled
enabled : true
2020-11-23 11:30:39 +00:00
# The url to the android-sms-gateway-server
baseUrl : {{ matrix_sms_bridge_provider_android_baseurl }}
# The username of the gateway
username : {{ matrix_sms_bridge_provider_android_username }}
# The password of the gateway
password : {{ matrix_sms_bridge_provider_android_password }}
# (optional) if you use a self signed certificate, you can add the public key here
2020-11-23 11:38:17 +00:00
{% if matrix_sms_bridge_provider_android_truststore_local_path %}
2020-11-23 11:30:39 +00:00
trustStore :
2020-11-23 11:52:16 +00:00
path : /config/matrix-sms-gateway-server.p12
2020-11-23 11:30:39 +00:00
password : {{ matrix_sms_bridge_provider_android_truststore_password }}
type : PKCS12
{% endif %}
2020-05-22 11:50:59 +00:00
bot :
# The domain-part of matrix-ids. E. g. example.org when your userIds look like @unicorn:example.org
serverName : {{ matrix_sms_bridge_homserver_domain }}
2020-11-13 07:44:21 +00:00
migration :
url : "jdbc:h2:file:/data/database/db"
username : sa
database :
url : "r2dbc:h2:file:////data/database/db"
username : sa
2020-05-22 11:50:59 +00:00
client :
homeServer :
# The hostname of your Homeserver.
hostname : {{ matrix_sms_bridge_homeserver_hostname }}
# (optional) The port of your Homeserver. Default is 443.
port : {{ matrix_sms_bridge_homeserver_port }}
# (optional) Use http or https. Default is true (so uses https).
secure : false
# The token to authenticate against the Homeserver.
token : {{ matrix_sms_bridge_appservice_token }}
appservice :
# A unique token for Homeservers to use to authenticate requests to this application service.
hsToken : {{ matrix_sms_bridge_homeserver_token }}
matrix_sms_bridge_configuration_extension_yaml : |
# Your custom YAML configuration goes here.
# This configuration extends the default starting configuration (`matrix_sms_bridge_configuration_yaml`).
#
# You can override individual variables from the default configuration, or introduce new ones.
#
# If you need something more special, you can take full control by
# completely redefining `matrix_sms_bridge_configuration_yaml`.
matrix_sms_bridge_configuration_extension : "{{ matrix_sms_bridge_configuration_extension_yaml|from_yaml if matrix_sms_bridge_configuration_extension_yaml|from_yaml is mapping else {} }}"
2020-05-23 11:54:07 +00:00
matrix_sms_bridge_configuration : "{{ matrix_sms_bridge_configuration_yaml|from_yaml|combine(matrix_sms_bridge_configuration_extension, recursive=True) }}"
2020-05-22 11:50:59 +00:00
matrix_sms_bridge_registration_yaml : |
id : sms
as_token : "{{ matrix_sms_bridge_appservice_token }}"
hs_token : "{{ matrix_sms_bridge_homeserver_token }}"
namespaces :
users :
- exclusive : true
regex : '^@sms_.+:{{ matrix_sms_bridge_homserver_domain|regex_escape }}$'
2020-11-13 07:44:21 +00:00
aliases :
- exclusive : true
regex : '^#sms_.+:{{ matrix_sms_bridge_homserver_domain|regex_escape }}$'
2020-05-22 11:50:59 +00:00
url : {{ matrix_sms_bridge_appservice_url }}
sender_localpart : smsbot
rate_limited : false
2020-05-23 13:32:16 +00:00
2020-07-30 13:25:07 +00:00
matrix_sms_bridge_registration : "{{ matrix_sms_bridge_registration_yaml|from_yaml }}"