aboutsummaryrefslogtreecommitdiff
path: root/radicale_web/web/infcloud/auth/index.php
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/index.php
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/index.php')
-rw-r--r--radicale_web/web/infcloud/auth/index.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/radicale_web/web/infcloud/auth/index.php b/radicale_web/web/infcloud/auth/index.php
deleted file mode 100644
index e92f005..0000000
--- a/radicale_web/web/infcloud/auth/index.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
- require_once('config.inc');
- require_once('common.inc');
- require_once('cross_domain.inc');
- require_once('plugins/'.$config['auth_method'].'.inc'); // configured module - it defines the 'MODULE_authenticate()' function
-
- if(call_user_func($config['auth_method'].'_authenticate')!==1)
- {
- // HTTP authentication (exit if unsuccessfull)
- if($config['auth_send_authenticate_header'])
- header('WWW-Authenticate: Basic realm="Inf-IT Auth Module"');
- header('HTTP/1.0 401 Unauthorized');
-echo <<<HTML
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
-<html>
- <head>
- <title>401 Authorization Required</title>
- </head>
- <body>
- <h1>Authorization Required</h1>
- <p>This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.</p>
- </body>
-</html>
-HTML;
- exit(0);
- }
- else
- {
- header('Content-type: text/xml; charset="utf-8"');
- header('Cache-Control: max-age=0, must-revalidate, no-cache, no-store, no-transform, private');
- echo array_to_xml($config['accounts']);
- }
-?> \ No newline at end of file
bgstack15