41 lines
981 B
Plaintext
41 lines
981 B
Plaintext
# ----------------------------------------------------
|
|
# ---
|
|
# - Parameter Settings for script 'get_mail_domains.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=""
|
|
|