Changes to gnats/gnats/gnatsd.access
Yngve Svendsen <[email protected]> Mon, 14 Oct 2002 07:42:25 -0400
| Newsgroups | gmane.comp.bug-tracking.gnats.patches |
|---|---|
| Message-ID | <[email protected]> |
Index: gnats/gnats/gnatsd.access diff -c gnats/gnats/gnatsd.access:1.5 gnats/gnats/gnatsd.access:1.6 *** gnats/gnats/gnatsd.access:1.5 Tue Oct 16 11:06:56 2001 --- gnats/gnats/gnatsd.access Mon Oct 14 07:42:25 2002 *************** *** 12,31 **** # "*" matches anything; "?" matches any single character # # * userid: a user id to gain access to gnatsd ! # * password: a password for the user. Passwords prefixed by $0$ are ! # assumed to be plain-text. Passwords without a prefix are ! # assumed to be encrypted with standard crypt(), while passwords ! # prefixed with $1$ are assumed to be MD5 encrypted. ! # MD5 and crypt() encryption may not be available on all systems. ! # * access-level: (default = edit) ! # deny - gnatsd closes the connection ! # none - no further access until userid and password given ! # listdb - same as 'none', except that the user is allowed to ! # list the available databases on the server ! # view - query and view PRs with Confidential=no only ! # viewconf - query and view PRs with Confidential=yes ! # edit - full edit access ! # admin - full admin access (required for operations such as # deleting PRs) # This overrides (increases but never lowers) the access level given # as the default for the user's host in the global gnatsd.conf file. --- 12,35 ---- # "*" matches anything; "?" matches any single character # # * userid: a user id to gain access to gnatsd ! # * password: a password for the user. Passwords prefixed by ! # $0$ are assumed to be plain-text. Passwords without a $0$ ! # prefix are assumed to be encrypted with standard ! # crypt(). For example, on FreeBSD systems, no prefix implies DES ! # encryption, a prefix of $1$ implies MD5 encryption, while ! # $2$ prefix implies Blowfish encryption. GNATS will support all then ! # encryption methods supported by your system's crypt() routing. An ! # empty field value means that the user should not supply any ! # password. ! # * access-level: (default = listdb) ! # deny - gnatsd closes the connection ! # none - no further access until userid and password given ! # listdb - same as 'none', except that the user is allowed to ! # list the available databases on the server ! # view - query and view PRs with Confidential=no only ! # viewconf - query and view PRs with Confidential=yes ! # edit - full edit access ! # admin - full admin access (required for operations such as # deleting PRs) # This overrides (increases but never lowers) the access level given # as the default for the user's host in the global gnatsd.conf file. *************** *** 33,36 **** # It's ignored in gnatsd-adm/gnatsd.access since this file is already # database specific. # ! #*:*:view: --- 37,40 ---- # It's ignored in gnatsd-adm/gnatsd.access since this file is already # database specific. # ! #*::view: