# $Id: authmysqlrc,v 1.3 2000/09/09 17:30:17 mrsam Exp $
#
# DO NOT INSTALL THIS FILE with group/world read permissions.  This file
# might contain the MySQL admin password!
#
# Each line in this file must follow the following format:
#
# field[spaces|tabs]value
#
# That is, the name of the field, followed by spaces or tabs, followed by
# field value.  Trailing spaces are prohibited.




# The server name, userid, and password used to log in.

MYSQL_SERVER		mysql.example.com
MYSQL_USERNAME		admin
MYSQL_PASSWORD		admin

# MYSQL_SOCKET can be used with MySQL version 3.22 or later, it specifies the
# filesystem pipe used for the connection

# MYSQL_SOCKET		/var/mysql/mysql.sock

# MYSQL_PORT can be used with MySQL version 3.22 or later to specify a port to
# connect to.

MYSQL_PORT		0

# Leave MYSQL_OPT as 0, unless you know what you're doing.

MYSQL_OPT		0

# The name of the MySQL database we will open:

MYSQL_DATABASE		mysql

# The name of the table containing your user data.  See README.authmysqlrc
# for the required fields in this table.

MYSQL_USER_TABLE	passwd

# Either MYSQL_CRYPT_PWFIELD or MYSQL_CLEAR_PWFIELD must be defined.  Both
# are OK too. crypted passwords go into MYSQL_CRYPT_PWFIELD, cleartext
# passwords go into MYSQL_CLEAR_PWFIELD.  Cleartext passwords allow
# CRAM-MD5 authentication to be implemented.

MYSQL_CRYPT_PWFIELD	crypt
# MYSQL_CLEAR_PWFIELD	clear

# Define MYSQL_MAILDIR_FIELD to be the name of the field that can optionally
# specify a non-default location for an account's system mailbox (the default
# location is $HOME/Maildir, with $HOME coming from the home field).

# MYSQL_MAILDIR_FIELD	maildir

#
# If DEFAULT_DOMAIN is defined, and someone tries to log in as 'user',
# we will look up 'user@DEFAULT_DOMAIN' instead.
#
#
# DEFAULT_DOMAIN		example.com
