commit 9e5545141f86be2f3577eef1684722e3dfb36c51
parent 54a3a6b1f0f83e1096d7a069e7a4d9b723a50bd8
Author: Antoine A <>
Date: Thu, 21 Mar 2024 13:16:24 +0100
Update libeufin manpages
Diffstat:
2 files changed, 44 insertions(+), 8 deletions(-)
diff --git a/manpages/libeufin-bank.1.rst b/manpages/libeufin-bank.1.rst
@@ -17,7 +17,8 @@ Synopsis
[**--version**]
COMMAND [ARGS...]
-Subcommands: **serve**, **dbinit**, **create-account**, **passwd**, **config**
+Subcommands: **serve**, **dbinit**, **create-account**, **passwd**, **gc**,
+**config**
Description
@@ -156,6 +157,20 @@ Its options are as follows:
**-L** \| **--log** *LOGLEVEL*
Configure logging to use LOGLEVEL.
+gc
+--
+
+This command performs garbage collection: abort expired operations and clean expired data, etc.
+
+Its options are as follows:
+
+**-h** \| **--help**
+ Print short help on options.
+**-c** \| **--config** *FILENAME*
+ Specifies the configuration file.
+**-L** \| **--log** *LOGLEVEL*
+ Configure logging to use LOGLEVEL.
+
.. include:: ../frags/libeufin-config-cli.rst
diff --git a/manpages/libeufin-bank.conf.5.rst b/manpages/libeufin-bank.conf.5.rst
@@ -39,25 +39,34 @@ WIRE_TYPE
Supported payment target type, this can either be ``iban`` or ``x-taler-bank``
IBAN_PAYTO_BIC
- Bank BIC used in generated iban payto URI. Required if WIRE_TYPE = iban
+ Bank BIC used in generated iban payto URI. Required if ``WIRE_TYPE``is ``iban``
X_TALER_BANK_PAYTO_HOSTNAME
- Bank hostname used in generated x-taler-bank payto URI. Required if WIRE_TYPE = x-taler-bank
+ Bank hostname used in generated x-taler-bank payto URI. Required if ``WIRE_TYPE``is ``x-taler-bank``
+
+NAME
+ Bank display name, used in webui and TAN messages. Default to ``Taler Bank`` if not specified.
DEFAULT_DEBT_LIMIT
- Default debt limit for newly created accounts. Defaults to CURRENCY:0 if not specified.
+ Default debt limit for newly created accounts. Defaults to ``CURRENCY:0`` if not specified.
REGISTRATION_BONUS
- Value of the registration bonus for new users. Defaults to CURRENCY:0 if not specified.
+ Value of the registration bonus for new users. Defaults to ``CURRENCY:0`` if not specified.
ALLOW_REGISTRATION
- Whether anyone can create a new account or whether this action is reserved for the admin. Defaults to no if not specified.
+ Whether anyone can create a new account or whether this action is reserved for the admin. Defaults to ``NO`` if not specified.
ALLOW_ACCOUNT_DELETION
- Whether anyone can delete its account or whether this action is reserved for the admin. Defaults to no if not specified.
+ Whether anyone can delete its account or whether this action is reserved for the admin. Defaults to ``NO`` if not specified.
+
+ALLOW_EDIT_NAME
+ Whether anyone can edit their legal name or whether this action is reserved for the admin. Defaults to ``NO`` if not specified.
+
+ALLOW_EDIT_CASHOUT_PAYTO_URI
+ Whether anyone can edit their cashout account or whether this action is reserved for the admin. Defaults to ``NO`` if not specified.
ALLOW_CONVERSION
- Whether regional currency conversion is enabled. Defaults to no if not specified.
+ Whether regional currency conversion is enabled. Defaults to ``NO`` if not specified.
FIAT_CURRENCY
External currency used during cashin and cashout.
@@ -98,6 +107,18 @@ UNIXPATH_MODE
What should be the file access permissions for ``UNIXPATH``?
Only used if ``SERVE`` is ``unix``.
+SUGGESTED_WITHDRAWAL_EXCHANGE
+ Exchange that is suggested to wallets when withdrawing
+
+GC_ABORT_AFTER
+ Time after which pending operations are aborted during garbage collection
+
+GC_CLEAN_AFTER
+ Time after which aborted operations and expired items are deleted during garbage collection
+
+GC_DELETE_AFTER
+ Time after which all bank transactions, operations and deleted accounts are deleted during garbage collection
+
DATABASE OPTIONS
----------------