home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / groupoffice-com-2.01 / lib / dav / drafts / UserDefaultLDAP < prev    next >
Encoding:
Text File  |  2004-03-08  |  737 b   |  34 lines

  1. ##
  2. ## DAV-Container for the Users of Group-Office
  3. ## 
  4. ## DON'T EDIT THIS FILE !!!
  5. ##
  6.  
  7. Alias /dav/USERNAME /var/dav/USERNAME
  8. <Directory /var/dav/USERNAME>
  9.     Dav On
  10.     DavMinTimeout 120
  11.  
  12.     LimitRequestBody 0
  13.     LimitXMLRequestBody 0
  14.  
  15.     Options All MultiViews
  16.  
  17.     AllowOverride AuthConfig Limit
  18.  
  19.     AuthName "Please authorize yourself..."
  20.     AuthType Basic
  21.  
  22.     AuthLDAPUrl ldap://mail.tgm.ac.at/dc=tgm,dc=ac,dc=at?uid
  23.  
  24.     <Limit GET POST PUT DELETE CONNECT OPTIONS PATCH PROPFIND PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
  25.         Order allow,deny
  26.         Allow from all
  27.         Require user USERNAME
  28.     </Limit>
  29.     <LimitExcept GET POST PUT DELETE CONNECT OPTIONS PATCH PROPFIND PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
  30.         Order deny,allow
  31.         Deny from all
  32.     </LimitExcept>
  33. </Directory>
  34.