From b4f8fbd006f348a4e4cc3e271df1f268cb27ba06 Mon Sep 17 00:00:00 2001 From: Adirelle Date: Mon, 14 Nov 2011 11:23:46 +0100 Subject: [PATCH] Perldoc updated. --- Redmine.pm | 42 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 39 insertions(+), 3 deletions(-) diff --git a/Redmine.pm b/Redmine.pm index b681d2e..5661902 100644 --- a/Redmine.pm +++ b/Redmine.pm @@ -57,11 +57,47 @@ Authen::Simple::LDAP (and IO::Socket::SSL if LDAPS is used): RedmineDbUser "redmine" RedmineDbPass "password" - ## Optional where clause (fulltext search would be slow and - ## database dependant). + + ## Authorization where clause (fulltext search would be slow and database dependant). + ## Default: none # RedmineDbWhereClause "and members.role_id IN (1,2)" - ## Optional credentials cache size + + ## Credentials cache size + ## Default: 0 (disabled) # RedmineCacheCredsMax 50 + + ## Credentials cache expiration delay in seconds + ## Set to 0 to disable expiration. + ## Default: 5 minutes (300) + # RedmineCacheCredsMaxAge 60 + + ## Check authorizations against a specific project. + ## Default: none (extract project from location) + # RedmineProject myproject + + ## Permissions to check for "read" access. + ## You can add several permissions, user is granted access if *at least* one them exists. + ## Default: :browse_repository + # RedmineReadPermissions :browse_repository + + ## Permissions to check for "write" access. + ## You can add several permissions, user is granted access if *at least* one them exists. + ## Default: :commit_access + # RedmineWritePermissions :commit_access + + ## Deny anonymous access. + ## Affects both authentication and authorization + ## Default: Off + # RedmineDenyAnonymous On + + ## Deny non-member access to projects. + ## Default: Off + # RedmineDenyNonMember On + + ## Administrators have super-powers + ## Default: On + # RedmineSuperAdmin Off + To be able to browse repository inside redmine, you must add something