Add configuration file, add script output file for script 'get_addresslist_for_domain.sh'.

This commit is contained in:
2017-11-03 14:58:30 +01:00
parent 354b2f3d7b
commit 235f1cf1f7
2 changed files with 210 additions and 60 deletions

View File

@ -0,0 +1,40 @@
# ----------------------------------------------------
# ---
# - Parameter Settings for script 'get_addresslist_for_domain..sh'.
# ---
# ----------------------------------------------------
# - db_type
# -
# - Type of Postfix Database
# -
# - Possible values are 'pgsql' (PostgeSQL) or 'mysql' (MySQL)
# -
# - Defaults to: db_type="pgsql"
# -
#db_type="pgsql"
# - db_name
# -
# - Database name for the postfix database
# -
# - Defaults to: db_name="postfix"
# -
#db_name="postfix"
# - mysql_credential_args (root access to MySQL Database)
# -
# - Only used if db_type=mysql
# -
# - Example
# - mysql_credential_args="--login-path=local"
# - mysql_credential_args="--defaults-file=/etc/mysql/debian.cnf" (Debian default)
# - mysql_credential_args="--defaults-file=/usr/local/mysql/sys-maint.cnf"
# -
# - Defaults to:
# - '/etc/mysql/debian.cnf' if MySQL is installed from debian package system
# - '/usr/local/mysql/sys-maint.cnf' otherwise
# -
#mysql_credential_args=""