.config
.github
bin
collections
docs
examples
group_vars
roles
custom
matrix-alertmanager-receiver
matrix-appservice-double-puppet
matrix-appservice-draupnir-for-all
matrix-authentication-service
matrix-base
matrix-bot-baibot
matrix-bot-buscarron
defaults
tasks
templates
systemd
env.j2
labels.j2
matrix-bot-chatgpt
matrix-bot-draupnir
matrix-bot-go-neb
matrix-bot-honoroit
matrix-bot-matrix-registration-bot
matrix-bot-matrix-reminder-bot
matrix-bot-maubot
matrix-bot-mjolnir
matrix-bridge-appservice-discord
matrix-bridge-appservice-irc
matrix-bridge-appservice-kakaotalk
matrix-bridge-appservice-slack
matrix-bridge-appservice-webhooks
matrix-bridge-beeper-linkedin
matrix-bridge-go-skype-bridge
matrix-bridge-heisenbridge
matrix-bridge-hookshot
matrix-bridge-mautrix-discord
matrix-bridge-mautrix-facebook
matrix-bridge-mautrix-gmessages
matrix-bridge-mautrix-googlechat
matrix-bridge-mautrix-hangouts
matrix-bridge-mautrix-instagram
matrix-bridge-mautrix-meta-instagram
matrix-bridge-mautrix-meta-messenger
matrix-bridge-mautrix-signal
matrix-bridge-mautrix-slack
matrix-bridge-mautrix-telegram
matrix-bridge-mautrix-twitter
matrix-bridge-mautrix-whatsapp
matrix-bridge-mautrix-wsproxy
matrix-bridge-mx-puppet-discord
matrix-bridge-mx-puppet-groupme
matrix-bridge-mx-puppet-instagram
matrix-bridge-mx-puppet-slack
matrix-bridge-mx-puppet-steam
matrix-bridge-mx-puppet-twitter
matrix-bridge-postmoogle
matrix-bridge-sms
matrix-bridge-wechat
matrix-cactus-comments
matrix-cactus-comments-client
matrix-client-cinny
matrix-client-element
matrix-client-hydrogen
matrix-client-schildichat
matrix-common-after
matrix-conduit
matrix-corporal
matrix-coturn
matrix-dendrite
matrix-dimension
matrix-dynamic-dns
matrix-email2matrix
matrix-ldap-registration-proxy
matrix-ma1sd
matrix-media-repo
matrix-pantalaimon
matrix-prometheus-nginxlog-exporter
matrix-prometheus-services-connect
matrix-rageshake
matrix-registration
matrix-sliding-sync
matrix-static-files
matrix-sygnal
matrix-synapse
matrix-synapse-admin
matrix-synapse-auto-compressor
matrix-synapse-reverse-proxy-companion
matrix-synapse-usage-exporter
matrix-user-creator
matrix-user-verification-service
matrix_playbook_migration
.editorconfig
.envrc
.gitattributes
.gitignore
.yamllint
CHANGELOG.md
LICENSE
Makefile
README.md
YEAR-IN-REVIEW.md
ansible.cfg
flake.lock
flake.nix
jitsi_jvb.yml
justfile
requirements.yml
setup.yml
* buscarron v1.4.2 * Add more spaces before comments --------- Co-authored-by: Slavi Pantaleev <slavi@devture.com>
43 lines
2.6 KiB
Django/Jinja
43 lines
2.6 KiB
Django/Jinja
BUSCARRON_LOGIN={{ matrix_bot_buscarron_login }}
|
|
BUSCARRON_PASSWORD={{ matrix_bot_buscarron_password }}
|
|
BUSCARRON_HOMESERVER={{ matrix_bot_buscarron_homeserver }}
|
|
BUSCARRON_DB_DSN={{ matrix_bot_buscarron_database_connection_string }}
|
|
BUSCARRON_DB_DIALECT={{ matrix_bot_buscarron_database_dialect }}
|
|
BUSCARRON_SPAMLIST={{ matrix_bot_buscarron_spamlist|join(" ") }}
|
|
BUSCARRON_SENTRY={{ matrix_bot_buscarron_sentry }}
|
|
BUSCARRON_HC_URL={{ matrix_bot_buscarron_hc_url }}
|
|
BUSCARRON_HC_UUID={{ matrix_bot_buscarron_hc_uuid }}
|
|
BUSCARRON_LOGLEVEL={{ matrix_bot_buscarron_loglevel }}
|
|
BUSCARRON_BAN_SIZE={{ matrix_bot_buscarron_ban_size }}
|
|
BUSCARRON_BAN_LIST={{ matrix_bot_buscarron_ban_list|default('')|join(' ') }}
|
|
BUSCARRON_PM_TOKEN={{ matrix_bot_buscarron_pm_token }}
|
|
BUSCARRON_PM_FROM={{ matrix_bot_buscarron_pm_from }}
|
|
BUSCARRON_PM_REPLYTO={{ matrix_bot_buscarron_pm_replyto }}
|
|
BUSCARRON_SMTP_FROM={{ matrix_bot_buscarron_smtp_from }}
|
|
BUSCARRON_SMTP_VALIDATION={{ matrix_bot_buscarron_smtp_validation }}
|
|
BUSCARRON_METRICS_LOGIN={{ matrix_bot_buscarron_metrics_login }}
|
|
BUSCARRON_METRICS_PASSWORD={{ matrix_bot_buscarron_metrics_password }}
|
|
BUSCARRON_METRICS_IPS={{ matrix_bot_buscarron_metrics_ips|default([])|join(" ") }}
|
|
BUSCARRON_REDMINE_HOST={{ matrix_bot_buscarron_redmine_host }}
|
|
BUSCARRON_REDMINE_APIKEY={{ matrix_bot_buscarron_redmine_apikey }}
|
|
BUSCARRON_REDMINE_PROJECT={{ matrix_bot_buscarron_redmine_project }}
|
|
BUSCARRON_REDMINE_TRACKERID={{ matrix_bot_buscarron_redmine_trackerid }}
|
|
BUSCARRON_REDMINE_STATUSID={{ matrix_bot_buscarron_redmine_statusid }}
|
|
{% set forms = [] %}
|
|
{% for form in matrix_bot_buscarron_forms -%}{{- forms.append(form.name) -}}
|
|
BUSCARRON_{{ form.name|upper }}_ROOM={{ form.room|default('') }}
|
|
BUSCARRON_{{ form.name|upper }}_TEXT={{ form.text|default('') }}
|
|
BUSCARRON_{{ form.name|upper }}_REDIRECT={{ form.redirect|default('') }}
|
|
BUSCARRON_{{ form.name|upper }}_REDIRECT_REJECT={{ form.redirect_reject|default('') }}
|
|
BUSCARRON_{{ form.name|upper }}_HASDOMAIN={{ form.hasdomain|default('') }}
|
|
BUSCARRON_{{ form.name|upper }}_HASEMAIL={{ form.hasemail|default('') }}
|
|
BUSCARRON_{{ form.name|upper }}_RATELIMIT={{ form.ratelimit|default('') }}
|
|
BUSCARRON_{{ form.name|upper }}_RATELIMIT_SHARED={{ form.ratelimit_shared|default(false) }}
|
|
BUSCARRON_{{ form.name|upper }}_EXTENSIONS={{ form.extensions|default('')|join(' ') }}
|
|
BUSCARRON_{{ form.name|upper }}_CONFIRMATION_SUBJECT={{ form.confirmation_subject|default('') }}
|
|
BUSCARRON_{{ form.name|upper }}_CONFIRMATION_BODY={{ form.confirmation_body|default('') }}
|
|
{% endfor %}
|
|
BUSCARRON_LIST={{ forms|join(" ") }}
|
|
|
|
{{ matrix_bot_buscarron_environment_variables_extension }}
|