Added a comma after each msgnum exported. The parser was globbing them all together...
[citadel.git] / ctdlphp / config_ctdlclient.php
1 <?PHP
2
3 // Please override these defaults in config_ctdlclient_local.php, not here.
4
5 #do you want to see the server conversation for exploring the protocol?
6 define('CITADEL_DEBUG_PROXY', FALSE);
7 #switch this if you're using php5
8 define('SOCKET_PREFIX', "unix://");
9 #define('SOCKET_PREFIX', "");
10 include "config_ctdlclient_local.php";
11
12 // Examples:
13 // 
14 // On the same host:
15 // unix:///var/run/citadel/citadel.sock
16 //
17 // On a different host (or via loopback):
18 // tcp://citserver.example.com
19 // tcp://127.0.0.1
20
21 if (!defined('CITADEL_HOSTNAME')) {
22         define('CITADEL_HOSTNAME',"tcp://127.0.0.1");
23 }
24
25 // make it 0 to use unix domain sockets
26 if (!defined('CITADEL_TCP_PORTNO')) {
27         define('CITADEL_TCP_PORTNO','504');
28 }
29
30 // do you want to see the server conversation for exploring the protocol?
31 if (!defined('CITADEL_DEBUG_CITPROTO')) {
32         define('CITADEL_DEBUG_CITPROTO',0);
33 }
34 if (!defined('CITADEL_DEBUG_PROXY')) {
35         define('CITADEL_DEBUG_PROXY', FALSE);
36 }
37
38 if (!defined('CITADEL_DEBUG_HTML')) {
39         define('CITADEL_DEBUG_HTML', FALSE);
40 }
41 ?>