Mercurial > libervia-backend
view doc/libervia-cli/account.rst @ 4240:79c8a70e1813
backend, frontend: prepare remote control:
This is a series of changes necessary to prepare the implementation of remote control
feature:
- XEP-0166: add a `priority` attribute to `ApplicationData`: this is needed when several
applications are working in a same session, to know which one must be handled first.
Will be used to make Remote Control have precedence over Call content.
- XEP-0166: `_call_plugins` is now async and is not used with `DeferredList` anymore: the
benefit to have methods called in parallels is very low, and it cause a lot of trouble
as we can't predict order. Methods are now called sequentially so workflow can be
predicted.
- XEP-0167: fix `senders` XMPP attribute <=> SDP mapping
- XEP-0234: preflight acceptance key is now `pre-accepted` instead of `file-accepted`, so
the same key can be used with other jingle applications.
- XEP-0167, XEP-0343: move some method to XEP-0167
- XEP-0353: use new `priority` feature to call preflight methods of applications according
to it.
- frontend (webrtc): refactor the sources/sink handling with a more flexible mechanism
based on Pydantic models. It is now possible to have has many Data Channel as necessary,
to have them in addition to A/V streams, to specify manually GStreamer sources and
sinks, etc.
- frontend (webrtc): rework of the pipeline to reduce latency.
- frontend: new `portal_desktop` method. Screenshare portal handling has been moved there,
and RemoteDesktop portal has been added.
- frontend (webrtc): fix `extract_ufrag_pwd` method.
rel 436
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 11 May 2024 13:52:41 +0200 |
parents | 267e4987b58b |
children |
line wrap: on
line source
================================ account: XMPP account management ================================ ``account`` command help you to create or manage the XMPP account of a server, using In-Band Registration (`XEP-0077`_). .. _XEP-0077: https://xmpp.org/extensions/xep-0077.html create ====== Create a XMPP account. You have to specify your jid and password as positional arguments. By default the registration is done on ``localhost`` with default XMPP Client 2 Server port (i.e. 5222), but you can specify other host/port using ``-H HOST, --host HOST`` and ``-P PORT, --port PORT``. You may also specify an e-mail address using ``-e EMAIL, --email EMAIL`` (use of this data depend of the server implementation). By default, no Libervia profile is created and associated to this new XMPP account, but you can use ``-p PROFILE, --profile PROFILE`` if you are willing to have one. example ------- Create account for the new user Nestor at ``nestor@example.org`` and associate it with the Libervia profile ``nestor``:: $ li account create nestor@example.org some_password -p nestor modify ====== Modify an existing XMPP account password. This will modify the XMPP account linked to the given profile. .. note:: Only the XMPP password on the server is changed, not the one registered in the parameter of Libervia. You may have to update the parameter of your profile if the new password doesn't correspond to your parameters one (you can do that with li param set or with most Libervia frontends in parameters). example ------- Change the XMPP password of the XMPP account of the default profile:: $ li account modify new_password delete ====== Delete the XMPP account linked to the given profile from the XMPP server. Before using this command, please be sure to understand well that **THIS WILL REMOVE THE WHOLE XMPP ACCOUNT AND DATA FROM THE XMPP SERVER**. By default a confirmation is requested, you can do this without confirmation by using ``-f, --force``, however this is **NOT RECOMMENDED**, be sure to understand what you're doing if you use this option (and be sure to spell correctly the profile, if you forget the ``-p PROFILE, --profile`` argument for instance, this would delete entirely the default profile). .. note:: Be extra careful with this command, as it will remove the whole account from the server, and the associated data. example ------- Delete the XMPP account of Pierre, which is not on the local server anymore:: $ li account delete -p pierre