diff options
author | mathieui <mathieui@mathieui.net> | 2015-08-16 12:22:10 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2015-08-16 12:22:10 +0200 |
commit | 37774bc35290089838b671cd4a1b6842bce1842f (patch) | |
tree | 933961688b5393498203656cf0a1f47ba03a48c5 /doc | |
parent | 1ce31d927d2a88c52645577033924ef30db0de6d (diff) | |
download | poezio-37774bc35290089838b671cd4a1b6842bce1842f.tar.gz poezio-37774bc35290089838b671cd4a1b6842bce1842f.tar.bz2 poezio-37774bc35290089838b671cd4a1b6842bce1842f.tar.xz poezio-37774bc35290089838b671cd4a1b6842bce1842f.zip |
Add an 'eval_password' option
to read the password from a secrets store
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/configuration.rst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/source/configuration.rst b/doc/source/configuration.rst index df9700a4..084af482 100644 --- a/doc/source/configuration.rst +++ b/doc/source/configuration.rst @@ -1156,6 +1156,24 @@ found. The password needed to join the room. + eval_password + + **Default value:** [empty] + + A command which execution will retrieve the password from a password manager. + + E.g. with secret-tool and the gnome keyring: + + .. code-block:: bash + + # Storing (to do beforehand) + secret-tool store --label="My jabber password" xmpp your@jid + + # Retrieving (this should be the value of the option) + secret-tool lookup xmpp your@jid + + .. note:: This will only be used if the :term:`password` option is empty. + private_auto_response **Default value:** ``Not in private, please.`` |