fix dlen
[citadel.git] / ctdlphp / config_ctdlclient.php
diff --git a/ctdlphp/config_ctdlclient.php b/ctdlphp/config_ctdlclient.php
deleted file mode 100644 (file)
index bcbdf45..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<?PHP
-
-// Please override these defaults in config_ctdlclient_local.php, not here.
-
-include "config_ctdlclient_local.php";
-
-// Examples:
-// 
-// On the same host:
-// unix:///var/run/citadel/citadel.sock
-//
-// On a different host (or via loopback):
-// tcp://citserver.example.com
-// tcp://127.0.0.1
-
-if (!defined('CITADEL_HOSTNAME')) {
-       define('CITADEL_HOSTNAME',"tcp://127.0.0.1");
-}
-
-// make it 0 to use unix domain sockets
-if (!defined('CITADEL_TCP_PORTNO')) {
-       define('CITADEL_TCP_PORTNO','504');
-}
-
-// do you want to see the server conversation for exploring the protocol?
-if (!defined('CITADEL_DEBUG_CITPROTO')) {
-       define('CITADEL_DEBUG_CITPROTO',0);
-}
-if (!defined('CITADEL_DEBUG_PROXY')) {
-       define('CITADEL_DEBUG_PROXY', FALSE);
-}
-
-?>