Sygnal is a reference Push Gateway for Matrix.
See https://matrix.org/docs/spec/client_server/r0.5.0#id134 for a high level overview of how notifications work in Matrix.
https://matrix.org/docs/spec/push_gateway/r0.1.0 describes the protocol that Matrix Home Servers use to send notifications to Push Gateways such as Sygnal.
Sygnal is configured through a YAML configuration file.
By default, this configuration file is assumed to be named sygnal.yaml
and to be in the working directory.
To change this, set the SYGNAL_CONF
environment variable to the path to your configuration file.
A sample configuration file is provided in this repository;
see sygnal.yaml.sample
.
Sygnal supports using either SQLite3 or PostgreSQL as a database backend. See the sygnal.yaml.sample
for more information on how to configure.
The apps: section is where you set up different apps that are to be handled.
Each app should be given its own subsection, with the key of that subsection being the app's app_id
.
Keys in this section take the form of the app_id
, as specified when setting up a Matrix pusher
(see https://matrix.org/docs/spec/client_server/r0.5.0#post-matrix-client-r0-pushers-set).
See the sample configuration for examples.
There are two supported App Types:
- apns
This sends push notifications to iOS apps via the Apple Push Notification Service (APNS).
Expected configuration depends on which kind of authentication you wish to use:
- For certificate-based authentication:
It expects:
- the
certfile
parameter to be a path relative to sygnal's working directory of a PEM file containing the APNS certificate and unencrypted private key.
- the
- For token-based authentication:
It expects:
- the 'keyfile' parameter to be a path relative to Sygnal's working directory of a p8 file
- the 'key_id' parameter
- the 'team_id' parameter
- the 'topic' parameter
- For either type:
It can accept:
- the 'platform' parameter which determines whether the production or sandbox APNS environment is used. Valid values are 'production' or 'sandbox'. If not provided, 'production' is used.
- gcm
- This sends messages via Google/Firebase Cloud Messaging (GCM/FCM) and hence can be used
to deliver notifications to Android apps. It expects the 'api_key' parameter
to contain the 'Server key', which can be acquired from Firebase Console at:
https://console.firebase.google.com/project/<PROJECT NAME>/settings/cloudmessaging/
python -m sygnal.sygnal
Python 3.7 or higher is required.
Sygnal's logging appends to files but does not use a rotating logger.
The recommended configuration is therefore to use logrotate
.
The log file will be automatically reopened if the log file changes, for example
due to logrotate
.