summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-03-08 13:48:52 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-03-08 13:48:52 +0100
commitf32c8f9be161ffbfed8d2a85f309ff208863d9e2 (patch)
treec8953520278d55e1470883c7d4c96ec65e937b97
parent4a51e331051e3fa5be10f4962c3834b524f58ab0 (diff)
downloadexchange-f32c8f9be161ffbfed8d2a85f309ff208863d9e2.tar.gz
exchange-f32c8f9be161ffbfed8d2a85f309ff208863d9e2.tar.bz2
exchange-f32c8f9be161ffbfed8d2a85f309ff208863d9e2.zip
Manual.
-rw-r--r--doc/taler-exchange.texi17
1 files changed, 13 insertions, 4 deletions
diff --git a/doc/taler-exchange.texi b/doc/taler-exchange.texi
index 50a0535ec..917e70898 100644
--- a/doc/taler-exchange.texi
+++ b/doc/taler-exchange.texi
@@ -472,14 +472,17 @@ ENABLE for each account whether it should be used, and for what
[account-1]
URL = "payto://sepa/CH9300762011623852957"
WIRE_RESPONSE = $@{TALER_CONFIG_HOME@}/account-1.json
-PLUGIN = ebics
+
+# Currently, only the 'taler_bank' plugin is implemented.
+PLUGIN = <plugin_name_here>
# Use for exchange-aggregator (outgoing transfers)
ENABLE_DEBIT = YES
# Use for exchange-wirewatch (and listed in /wire)
ENABLE_CREDIT = YES
-# ... add authentication options here
+# Authentication options for the chosen plugin go here.
+# (Next sections have examples of authentication mechanisms)
@end example
The command line tool @cite{taler-exchange-wire} is used to create
@@ -520,8 +523,14 @@ account at the bank.
@setsyntax ini
@example
-[account-2]
-URL = "payto://test/localhost:8080"
+[account-1]
+
+# Bank account details here..
+# ..
+
+# Authentication options for the taler_bank plugin below:
+
+TALER_BANK_AUTH_METHOD = basic
USERNAME = exchange
PASSWORD = super-secure
@end example