README.rst 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. Installation
  2. ============
  3. Installing the system dependencies
  4. ----------------------------------
  5. To install Sydent's dependencies on a Debian-based system, run::
  6. sudo apt-get install build-essential python3-dev libffi-dev \
  7. sqlite3 libssl-dev python-virtualenv libxslt1-dev
  8. Creating the virtualenv
  9. -----------------------
  10. To create the virtual environment in which Sydent will run::
  11. virtualenv -p python3 ~/.sydent
  12. source ~/.sydent/bin/activate
  13. pip install --upgrade pip
  14. pip install --upgrade setuptools
  15. Installing the latest Sydent release from PyPI
  16. ----------------------------------------------
  17. Sydent and its dependencies can be installed using ``pip`` by running::
  18. pip install matrix-sydent
  19. Installing from source
  20. ----------------------
  21. Alternatively, Sydent can be installed using ``pip`` from a local git checkout::
  22. git clone https://github.com/matrix-org/sydent.git
  23. cd sydent
  24. pip install -e .
  25. Running Sydent
  26. ==============
  27. With the virtualenv activated, you can run Sydent using::
  28. python -m sydent.sydent
  29. This will create a configuration file in ``sydent.conf`` with some defaults. If a setting is
  30. defined in both the ``[DEFAULT]`` section and another section in the configuration file,
  31. then the value in the other section is used.
  32. You'll most likely want to change the server name (``server.name``) and specify an email server
  33. (look for the settings starting with ``email.``).
  34. By default, Sydent will listen on ``0.0.0.0:8090``. This can be changed by changing the values for
  35. the configuration settings ``clientapi.http.bind_address`` and ``clientapi.http.port``.
  36. Sydent uses SQLite as its database backend. By default, it will create the database as ``sydent.db``
  37. in its working directory. The name can be overridden by modifying the ``db.file`` configuration option.
  38. Sydent is known to be working with SQLite version 3.16.2 and later.
  39. SMS originators
  40. ---------------
  41. Defaults for SMS originators will not be added to the generated config file, these should
  42. be added to the ``[sms]`` section of that config file in the form::
  43. originators.<country code> = <long|short|alpha>:<originator>
  44. Where country code is the numeric country code, or ``default`` to specify the originator
  45. used for countries not listed. For example, to use a selection of long codes for the
  46. US/Canada, a short code for the UK and an alphanumertic originator for everywhere else::
  47. originators.1 = long:12125552368,long:12125552369
  48. originators.44 = short:12345
  49. originators.default = alpha:Matrix
  50. Testing
  51. =======
  52. Sydent uses matrix-is-tester (https://github.com/matrix-org/matrix-is-tester/) to provide
  53. black-box testing of compliance with the `Matrix Identity Service API <https://matrix.org/docs/spec/identity_service/latest>`_.
  54. This can be run as follows::
  55. pip install git+https://github.com/matrix-org/matrix-is-tester.git
  56. trial matrix_is_tester
  57. The ``SYDENT_PYTHON`` enviroment variable can be set to launch Sydent with a specific python binary::
  58. SYDENT_PYTHON=/path/to/python trial matrix_is_tester
  59. The ``matrix_is_test`` directory contains Sydent's launcher for ``matrix_is_tester``: this means
  60. that Sydent's directory needs to be on the Python path (e.g. ``PYTHONPATH=$PYTHONPATH:/path/to/sydent``).
  61. Sydent also has some unit tests to ensure some of its features that aren't part of the Matrix
  62. specification (e.g. replication) keep on working. To run these tests, run the following with Sydent's
  63. virtualenv activated from the root of the Sydent repository::
  64. trial tests
  65. Internal bind and unbind API
  66. ============================
  67. It is possible to enable an internal API which allows for binding and unbinding
  68. between identifiers and matrix IDs without any validation.
  69. This is open to abuse, so is disabled by
  70. default, and when it is enabled, is available only on a separate socket which
  71. is bound to ``localhost`` by default.
  72. To enable it, configure the port in the config file. For example::
  73. [http]
  74. internalapi.http.port = 8091
  75. To change the address to which that API is bound, set the ``internalapi.http.bind_address`` configuration
  76. setting in the ``[http]`` section, for example::
  77. [http]
  78. internalapi.http.port = 8091
  79. internalapi.http.bind_address = 192.168.0.18
  80. As already mentioned above, this is open to abuse, so make sure this address is not publicly accessible.
  81. To use bind::
  82. curl -XPOST 'http://localhost:8091/_matrix/identity/internal/bind' -H "Content-Type: application/json" -d '{"address": "matthew@arasphere.net", "medium": "email", "mxid": "@matthew:matrix.org"}'
  83. The response has the same format as
  84. `/_matrix/identity/api/v1/3pid/bind <https://matrix.org/docs/spec/identity_service/r0.3.0#deprecated-post-matrix-identity-api-v1-3pid-bind>`_.
  85. To use unbind::
  86. curl -XPOST 'http://localhost:8091/_matrix/identity/internal/unbind' -H "Content-Type: application/json" -d '{"address": "matthew@arasphere.net", "medium": "email", "mxid": "@matthew:matrix.org"}'
  87. The response has the same format as
  88. `/_matrix/identity/api/v1/3pid/unbind <https://matrix.org/docs/spec/identity_service/r0.3.0#deprecated-post-matrix-identity-api-v1-3pid-unbind>`_.
  89. Replication
  90. ===========
  91. It is possible to configure a mesh of Sydent instances which replicate identity bindings
  92. between each other. See `<docs/replication.md>`_.