#!/bin/bash
# Fetches list of all ftp accounts
# 
# Arguments:
ACCOUNT=$1

# Successful Output can be valid json (in the first line of the output) or no output at all if no data.
# exit with code 0
# e.g.
# {
#	"name@mydomain.com": { "password": "$6$U658fnHD$NXDDZRdU96Jh862scN26fzdRZsMxh5PaRnjyJvx.y4oOONYYXcvaBwG52l39ZHkW5pyc5eskfblZ3mTL4UFwj0", "path": "/home/user/public_html", "quota": 524288000 },
#	"name2@mydomain.com": { "password": "$6$srpJdn7Q$8GttWmIDghR2cP2bJ7oDdDwZfNY0DnLn.uSZNh/y9OzjMgEu2cIP1QrMhdyiYtRBgaLhNvS383qa52LMnvlxp1", "path": "/home/user/public_html/ftp_dir", "quota": 1048576000 }
# }
#
# On error write your error to stderr. 
# exit with code 1
# e.g. >&2 echo "Failed fetching ftp accounts list" && exit 1

echo '{}'
exit 0