authmysqlrc
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. # $Id: authmysqlrc,v 1.2 2000/07/04 00:08:56 mrsam Exp $
  2. #
  3. # DO NOT INSTALL THIS FILE with group/world read permissions.  This file
  4. # might contain the MySQL admin password!
  5. #
  6. # Each line in this file must follow the following format:
  7. #
  8. # field[spaces|tabs]value
  9. #
  10. # That is, the name of the field, followed by spaces or tabs, followed by
  11. # field value.  Trailing spaces are prohibited.
  12. # The server name, userid, and password used to log in.
  13. MYSQL_SERVER mysql.example.com
  14. MYSQL_USERNAME admin
  15. MYSQL_PASSWORD admin
  16. # The name of the MySQL database we will open:
  17. MYSQL_DATABASE mysql
  18. # The name of the table containing your user data.  See README.authmysqlrc
  19. # for the required fields in this table.
  20. MYSQL_USER_TABLE passwd
  21. # Either MYSQL_CRYPT_PWFIELD or MYSQL_CLEAR_PWFIELD must be defined.  Both
  22. # are OK too. crypted passwords go into MYSQL_CRYPT_PWFIELD, cleartext
  23. # passwords go into MYSQL_CLEAR_PWFIELD.  Cleartext passwords allow
  24. # CRAM-MD5 authentication to be implemented.
  25. MYSQL_CRYPT_PWFIELD crypt
  26. # MYSQL_CLEAR_PWFIELD clear
  27. # Define MYSQL_MAILDIR_FIELD to be the name of the field that can optionally
  28. # specify a non-default location for an account's system mailbox (the default
  29. # location is $HOME/Maildir, with $HOME coming from the home field).
  30. # MYSQL_MAILDIR_FIELD maildir
  31. #
  32. # If DEFAULT_DOMAIN is defined, and someone tries to log in as 'user',
  33. # we will look up 'user@DEFAULT_DOMAIN' instead.
  34. #
  35. #
  36. # DEFAULT_DOMAIN example.com