This file is indexed.

/usr/share/aqbanking/imexporters/csv/profiles/aqmoney1.conf is in libaqbanking-data 5.6.4beta-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
char name="AqMoney1"
char shortDescr="Profile for AqMoney1 CSV files"
char version="5.6.4"
char longDescr="This profile supports the CSV format used by AqMoney (1)"
int import="1"
int export="1"

char type="csv"
char groupNames="transaction", "transfer", "debitnote", "line"
char dateFormat="*D.*M.YYYY"
int utc="0"

params {
  # if 1 then values are quoted
  quote="1"
  
  # if 1 then a title line will be written containing the names of each
  # column
  title="1"
  
  # special values are "TAB" and "SPACE"
  delimiter=";" 
  
  # this is the group name looked for in the given data to GWEN_CSV_Write
  # if not given then all groups match
  #group="transaction"
  
  # this group contains the definition for each column
  # each variable in this group has its number as name
  # you can use index variables in the names (using square brackets)
  # the value of each of these variables is the name of a variable to be looked
  # up in the data given to GWEN_CSV_Write
  columns {
    1="remoteName[0]"
    2="purpose[0]"
    3="value/value"
    4="value/currency"
    5="valutadate"
  } # columns

} # params