aboutsummaryrefslogtreecommitdiff
path: root/radicale_web/web/infcloud/auth/config.inc
diff options
context:
space:
mode:
authorUnrud <unrud@openaliasbox.org>2017-06-04 17:16:11 +0200
committerUnrud <unrud@openaliasbox.org>2017-06-04 17:16:36 +0200
commit10eef51a0f086ad148928ba965c330599b4765cb (patch)
treed0283e55f1b4e66c49bf17461b5fee211b78768a /radicale_web/web/infcloud/auth/config.inc
parentUpdate license (diff)
downloadradicaleinfcloud-10eef51a0f086ad148928ba965c330599b4765cb.tar.gz
radicaleinfcloud-10eef51a0f086ad148928ba965c330599b4765cb.tar.bz2
radicaleinfcloud-10eef51a0f086ad148928ba965c330599b4765cb.zip
Update package for new web plugin interface
Diffstat (limited to 'radicale_web/web/infcloud/auth/config.inc')
-rw-r--r--radicale_web/web/infcloud/auth/config.inc58
1 files changed, 0 insertions, 58 deletions
diff --git a/radicale_web/web/infcloud/auth/config.inc b/radicale_web/web/infcloud/auth/config.inc
deleted file mode 100644
index 534e524..0000000
--- a/radicale_web/web/infcloud/auth/config.inc
+++ /dev/null
@@ -1,58 +0,0 @@
-<?php
- // auth method: generic (auth/plugins/generic_conf.inc) or ldap (auth/plugins/ldap_conf.inc)
- $config['auth_method']='generic';
-
- // set to true for debugging XML response, otherwise set to false to avoid browser
- // to show http authentication window after unsuccessful authentication
- $config['auth_send_authenticate_header']=false;
-
- // successfull authentication XML specification (change the "http://www.server.com:80" to your protocol/server/port)
- $config['accounts']=array('resources'=>array());
-
- // note: if you want to use regex values, then use one of the following formats (the second example is with regex modifier): 're:.*someregex.*[0-9]$' or 're|i:.*someregex.*[0-9]$'
- // note: 'crossdomain' and 'withcredentials' are still available but there is NO REASON to use them (crossDomain is detected automatically, and I've never seen anyone who understand when to use withCredentials /there is NO REASON to set it to true!/)
- // note: 'syncinterval' was removed - use globalSyncResourcesInterval in config.js instead
- $config['accounts']['resources'][]=array(
- 'resource'=>array(
- 'type'=>array('addressbook'=>'', 'calendar'=>''),
- 'href'=>(empty($_SERVER['HTTPS']) ? 'http' : 'https').'://www.server.com:80/caldav.php/'.$_SERVER['PHP_AUTH_USER'].'/',
- 'hreflabel'=>'null', // if undefined or empty href value is used (see above)
- 'forcereadonly'=>'null', // see auth/doc/example_config_response.xml for proper use, for example: 'forcereadonly'=>array(array('collection'=>'/caldav.php/user/collection/'), array('collection'=>'re:^/caldav.php/user/collection[0-9]/$')),
- 'settingsaccount'=>'true', // client properties are saved here (note: set it to true only for ONE account)
- 'checkcontenttype'=>'true', // check content-type in the server response (if you cannot see data in the interface /buggy server response/ you may try to disable it)
- 'delegation'=>'true', // see auth/doc/example_config_response.xml for proper use, for example: 'delegation'=>array(array('resource'=>'/caldav.php/user%40domain.com/'), array('resource'=>'re|i:^/caldav.php/a[b-x].+/$')),
- 'ignorealarms'=>'false', // see auth/doc/example_config_response.xml for proper use, for example: 'ignorealarms'=>array(array('collection'=>'/caldav.php/user/collection/'), array('collection'=>'re:^/caldav.php/user/collection[0-9]/$')),
- 'backgroundcalendars'=>'', // see auth/doc/example_config_response.xml for proper use, for example: 'backgroundcalendars'=>array(array('collection'=>'/caldav.php/user/collection/'), array('collection'=>'re|i:^/caldav.php/user/collection[0-9]/$')),
- 'userauth'=>array(
- 'username'=>$_SERVER['PHP_AUTH_USER'],
- 'password'=>$_SERVER['PHP_AUTH_PW']
- ),
- 'timeout'=>90000,
- 'locktimeout'=>10000
- )
- );
-
-/*
- // additional accounts
- $config['accounts']['resources'][]=array(
- 'resource'=>array(
- 'type'=>array('addressbook'=>'', 'calendar'=>''),
- 'href'=>'http://www.server.com:80/caldav.php/resource/',
- 'hreflabel'=>'null', // if undefined or empty href value is used (see above)
- 'forcereadonly'=>'null', // see auth/doc/example_config_response.xml for proper use, for example: 'forcereadonly'=>array(array('collection'=>'/caldav.php/user/collection/'), array('collection'=>'re:^/caldav.php/user/collection[0-9]/$')),
- 'settingsaccount'=>'false', // client properties are saved here (note: set it to true only for ONE account)
- 'checkcontenttype'=>'true', // check content-type in the server response (if you cannot see data in the interface /buggy server response/ you may try to disable it)
- 'delegation'=>'true', // see auth/doc/example_config_response.xml for proper use, for example: 'delegation'=>array(array('resource'=>'/caldav.php/user%40domain.com/'), array('resource'=>'re|i:^/caldav.php/a[b-x].+/$')),
- 'ignorealarms'=>'false', // see auth/doc/example_config_response.xml for proper use, for example: 'ignorealarms'=>array(array('collection'=>'/caldav.php/user/collection/'), array('collection'=>'re:^/caldav.php/user/collection[0-9]/$')),
- 'backgroundcalendars'=>'', // see auth/doc/example_config_response.xml for proper use, for example: 'backgroundcalendars'=>array(array('collection'=>'/caldav.php/user/collection/'), array('collection'=>'re|i:^/caldav.php/user/collection[0-9]/$')),
- 'userauth'=>array(
- 'username'=>$_SERVER['PHP_AUTH_USER'],
- 'password'=>$_SERVER['PHP_AUTH_PW']
- ),
- 'timeout'=>90000,
- 'locktimeout'=>10000
- )
- );
-*/
-
-?> \ No newline at end of file
bgstack15