No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

etc_dbconfig-common_roundcube.conf.j2 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # automatically generated by the maintainer scripts of roundcube
  2. # any changes you make will be preserved, though your comments
  3. # will be lost! to change your settings you should edit this
  4. # file and then run "dpkg-reconfigure roundcube"
  5. # dbc_install: configure database with dbconfig-common?
  6. # set to anything but "true" to opt out of assistance
  7. dbc_install='true'
  8. # dbc_upgrade: upgrade database with dbconfig-common?
  9. # set to anything but "true" to opt out of assistance
  10. dbc_upgrade='true'
  11. # dbc_remove: deconfigure database with dbconfig-common?
  12. # set to anything but "true" to opt out of assistance
  13. dbc_remove=''
  14. # dbc_dbtype: type of underlying database to use
  15. # this exists primarily to let dbconfig-common know what database
  16. # type to use when a package supports multiple database types.
  17. # don't change this value unless you know for certain that this
  18. # package supports multiple database types
  19. dbc_dbtype='pgsql'
  20. # dbc_dbuser: database user
  21. # the name of the user who we will use to connect to the database.
  22. dbc_dbuser='{{ webmail_db_username }}'
  23. # dbc_dbpass: database user password
  24. # the password to use with the above username when connecting
  25. # to a database, if one is required
  26. dbc_dbpass='{{ webmail_db_password }}'
  27. # dbc_dbserver: database host.
  28. # leave unset to use localhost (or a more efficient local method
  29. # if it exists).
  30. dbc_dbserver=''
  31. # dbc_dbport: remote database port
  32. # leave unset to use the default. only applicable if you are
  33. # using a remote database.
  34. dbc_dbport=''
  35. # dbc_dbname: name of database
  36. # this is the name of your application's database.
  37. dbc_dbname='{{ webmail_db_database }}'
  38. # dbc_dbadmin: name of the administrative user
  39. # this is the administrative user that is used to create all of the above
  40. dbc_dbadmin='{{ db_admin_username }}'
  41. # dbc_basepath: base directory to hold database files
  42. # leave unset to use the default. only applicable if you are
  43. # using a local (filesystem based) database.
  44. dbc_basepath=''
  45. ##
  46. ## postgresql specific settings. if you don't use postgresql,
  47. ## you can safely ignore all of these
  48. ##
  49. # dbc_ssl: should we require ssl?
  50. # set to "true" to require that connections use ssl
  51. dbc_ssl=''
  52. # dbc_authmethod_admin: authentication method for admin
  53. # dbc_authmethod_user: authentication method for dbuser
  54. # see the section titled "AUTHENTICATION METHODS" in
  55. # /usr/share/doc/dbconfig-common/README.pgsql for more info
  56. dbc_authmethod_admin=''
  57. dbc_authmethod_user=''
  58. ##
  59. ## end postgresql specific settings
  60. ##