libndr: EXT_NSL doesn't exist anymore, but it wasn't needed anyway
[jelmer/samba4-debian.git] / source / include / local.h
1 /* Copyright (C) 1995-1998 Samba-Team */
2 /* Copyright (C) 1998 John H Terpstra <jht@aquasoft.com.au> */
3
4 /* local definitions for file server */
5 #ifndef _LOCAL_H
6 #define _LOCAL_H
7
8 /* The default workgroup - usually overridden in smb.conf */
9 #ifndef DEFAULT_WORKGROUP
10 #define DEFAULT_WORKGROUP "WORKGROUP"
11 #endif
12
13 /* the maximum debug level to compile into the code. This assumes a good 
14    optimising compiler that can remove unused code 
15    for embedded or low-memory systems set this to a value like 2 to get
16    only important messages. This gives *much* smaller binaries
17 */
18 #ifndef MAX_DEBUG_LEVEL
19 #define MAX_DEBUG_LEVEL 1000
20 #endif
21
22 /* This defines the section name in the configuration file that will contain */
23 /* global parameters - that is, parameters relating to the whole server, not */
24 /* just services. This name is then reserved, and may not be used as a       */
25 /* a service name. It will default to "global" if not defined here.          */
26 #define GLOBAL_NAME "global"
27 #define GLOBAL_NAME2 "globals"
28
29 /* define what facility to use for syslog */
30 #ifndef SYSLOG_FACILITY
31 #define SYSLOG_FACILITY LOG_DAEMON
32 #endif
33
34 /* separators for lists */
35 #define LIST_SEP " \t,\n\r"
36
37 /* what default type of filesystem do we want this to show up as in a
38    NT file manager window? */
39 #define FSTYPE_STRING "NTFS"
40
41 /* user to test password server with as invalid in security=server mode. */
42 #ifndef INVALID_USER_PREFIX
43 #define INVALID_USER_PREFIX "sambatest"
44 #endif
45
46 /* the default pager to use for the client "more" command. Users can
47    override this with the PAGER environment variable */
48 #ifndef PAGER
49 #define PAGER "more"
50 #endif
51
52 /*
53  * Default passwd chat script.
54  */
55 #define DEFAULT_PASSWD_CHAT "*new*password* %n\\n *new*password* %n\\n *changed*"
56
57 /* Max number of jobs per print queue. */
58 #define PRINT_MAX_JOBID 10000
59
60 #endif