1 /* 2 * 'new' config.h: 3 * A configuration file designed to make best use of the abilities 4 * of ircII, and trying to make things more intuitively understandable. 5 * 6 * Original: Michael Sandrof 7 * V2 by Carl V. Loesch (lynx@dm.unirm1.it) 8 */ 9 10 #ifndef _CONFIG_H_ 11 #define _CONFIG_H_ 12 13 /* 14 * Notes to the unwary: 15 * 16 * -- You cant just add a ``#define DEFAULT_X'' and expect it to work. 17 * Those things that do not have defaults are that way on purpose. 18 * Either they have their own defaults, or a default is inappropriate. 19 * 20 * -- Unless the description expliclity says that the #define is optional, 21 * you may NOT remove it or #undef it, else the client will not compile 22 * properly. 23 */ 24 25 #define use_automargins 1 26 27 /* 28 * This is where you define a list of ``fallback'' servers in case the client 29 * cannot under other circumstances figure out where to connect. Normally, 30 * the server to use is determined by the ``SERVERS_FILE'' (see below), or 31 * by a server specified on the command line. But if for some reason your 32 * ``SERVERS_FILE'' isnt there or isnt readable, or the user doesnt specify 33 * a server, then this list will be used. 34 * 35 * The list should be a space seperated list of the form 36 * hostname:portnum:password. The portnum and password are optional. 37 * An example is: 38 * 39 * #define DEFAULT_SERVER "irc.iastate.edu irc-2.mit.edu:6666:lag-2sux" 40 * 41 * THIS DEFINE IS -!-NOT-!- OPTIONAL. You must provide a fallback list or 42 * the client will NOT compile and work properly! Use the default here if 43 * you dont have other servers to use. 44 */ 45 #define DEFAULT_SERVER "irc.efnet.net irc.undernet.org irc.dal.net" 46 47 /* 48 * This is the location of your SSL certificate file. 49 * XXX - This needs to be auto-detected by configure, somehow... 50 * XXX - This is the FreeBSD location. how bogus. 51 */ 52 /* 53 #define DEFAULT_SSL_ROOT_CERTS_LOCATION "/usr/local/share/certs/ca-root-nss.crt" 54 */ 55 #define DEFAULT_SSL_ROOT_CERTS_LOCATION NULL 56 57 /* 58 * By default we let OpenSSL choose the ciphers we wnat to use. 59 * But if you were really bent on overruling that, you could do it here. 60 * If you change this, you are expected to know what you are doing. 61 */ 62 #define DEFAULT_SSL_CIPHERS NULL 63 64 /* 65 * This is an experimental feature to thwart infinite recursion. It is not 66 * very sophisticated so it's not turned on by default. In the future I 67 * will probably do something less lame. 68 * 69 * When this many stack frames are created, epic will refuse to make any 70 * more. This will stop epic from crashing with a segfault when you do 71 * infinite recursion, but it's possible that epic may infinitely recurse 72 * if your alias is tricky enough. Pick your poison 73 */ 74 #define MAX_STACK_FRAMES 20000 75 76 /* 77 * This sets how you want to see the 368 numeric to be hooked. The default 78 * (#undef) is the traditional EPIC behavior. 79 * EPIC ircII 80 * $0 server server 81 * $1 number of bans channel name 82 * $2 channel name <nothing -- now number of bans> 83 */ 84 #undef IRCII_LIKE_BAN_SUMMARY 85 86 /* 87 * When this is define'd, the -z flag, the IRCUSER and USER environment 88 * variables, as well as the /IRCUSER command will be honored. This is 89 * not nearly as big a deal as it used to be, because every server uses 90 * identd and ignores the client-specified username. There is no compelling 91 * reason for any site using identd to forbid this behavior by default. 92 * Any site that wont run identd i dont have a lot of sympathy for. 93 */ 94 #define ALLOW_USER_SPECIFIED_LOGIN 95 96 /* 97 * I moved this here because it seemed to be the most appropriate 98 * place for it. Define this if you want support for ``/window create'' 99 * and its related features. If you dont want it, youll save some code, 100 * and you wont need 'wserv'. 101 */ 102 #define WINDOW_CREATE 103 104 /* 105 * Define this if you want an mIRC compatable /dcc resume capability. 106 * Note that this BREAKS THE IRC PROTOCOL, and if you use this feature, 107 * the behavior is NON COMPLIANT. If this warning doesnt bother you, 108 * and you really want this feature, then go ahead and #define this. 109 * 110 * Unfortunately, due to popular pressure, im having to #define this by 111 * default. The capability wont be turned on, however, unless you also 112 * do a /set mirc_broken_dcc_resume on, which is OFF by default. No, 113 * there will not be a way to default it to ON short of modifying vars.c. 114 * This is a comprimise, and i wont give any further. Those who dont want 115 * this feature can #undef this, or can hook /on set "mirc_broken_dcc_resume". 116 */ 117 #define MIRC_BROKEN_DCC_RESUME 118 119 /* 120 * Youll want to define this if your system is missing the glob() 121 * call, or if its broken (solaris). 122 * 123 * Actually, you should #define this if you can compile the supplied 124 * glob.c. If it works, dont mess with it. 125 */ 126 #define NEED_GLOB 127 128 /* 129 * ircII has a security feature for paranoid sysadmins or for those 130 * users whose sysadmins are paranoid. The security feature allows 131 * you to restrict who may use the ircII client. You have four options: 132 * 133 * 1) compile into the binary a list of uids who can use the program 134 * *Pros: cant be hacked -- very secure 135 * *Cons: cant be changed w/o recompiling 136 * 2) compile into the binary a file which will contain the uids of 137 * the people who can use the program 138 * *Pros: can be changed as you need by just editing the file 139 * *Cons: since the uids are in a file, prone to hacking 140 * 3) compile into the binary a file which will contain the uids of 141 * the people who cannot use the program 142 * *Pros: allows for public use and allow you to exclude 143 * troublemakers without enumerating everyone else 144 * *Cons: since the uids are in a file, prone to hacking 145 * 4) compile into the binary a password 146 * *Pros: cant be hacked -- secure 147 * *Cons: cant be changed w/o recompiling 148 * 149 * The first two options are mutually exclusive. The third and fourth 150 * options can be specified at your option. If you specify both the 151 * first and second options, the first option has precedence. 152 */ 153 154 /* 155 * To use the first security feature, #define HARD_SECURE. You will also 156 * have to #define VALID_UIDS which will be a list of those uids (integers, 157 * not usernames) which will be allowed to execute the resulting program. 158 * If you #define HARD_SECURE but do not define #VALID_UIDS, then noone 159 * will be able to execute the program! 160 */ 161 #undef HARD_SECURE 162 #define VALID_UIDS "100 101" 163 164 /* 165 * To use the second security measure, simply #define SOFT_SECURE to a 166 * filename that will be world-readable that will contain the uids of 167 * all the users who will be allowed to execute the program. It is important 168 * that this file be readable by at least every person who can execute the 169 * program or this security measure will be comprimised. 170 * 171 * The uid file should have one uid per line (integer, not username). 172 * 173 * You can define VALID_UID_FILE, but if SOFT_SECURE is not defined, it will 174 * not be used. 175 */ 176 #undef SOFT_SECURE 177 #define VALID_UID_FILE "/home/user/..." 178 179 /* 180 * This allows you to use the third security option. If you define this, 181 * it should be assigned to a file that will contain a listing of all of 182 * the uids (integers, not usernames) that will not be allowed to execute 183 * the resulting program. 184 */ 185 /*#define INVALID_UID_FILE "/home/user/...."*/ 186 187 /* 188 * This part lets you deny certain hosts from running your irc client. 189 * For instance, my university does not allow irc'ing from dialup machines, 190 * So by putting the dialup's hostnames in the specified file, they can't 191 * Run irc. 192 * -- Chris Mattingly <Chris_Mattingly@ncsu.edu> 193 * 194 * If you define this, it *absolutely* must be in double quotes ("s)! 195 */ 196 #undef HOST_SECURE 197 198 #ifdef HOST_SECURE 199 #define INVALID_HOST_FILE "/home/user/...host.deny" 200 #endif 201 202 203 /* 204 * This allows you to use the fourth security option. If you define this, 205 * the program will prompt the user to enter this prompt before it will 206 * continue executing the program. This password does not affect in any 207 * way the other protection schemes. A user who is not allowed to run 208 * the program will not be allowed to use the program even if they know 209 * the password. 210 */ 211 /*#define PASSWORD "booya"*/ 212 213 /* 214 * This is the fun part. If someone runs your program who shouldnt run 215 * it, either because the dont know the password or because they arent 216 * on the valid list or whatever, ircII will execute this program to 217 * "spoof" them into thinking your program is actually some other program. 218 * 219 * This can be defined to any valid C expression that will resolve to a 220 * character string. (ie, a character literal or function call) 221 */ 222 #define SPOOF_PROGRAM getenv("SHELL") 223 224 /* 225 * If you define UNAME_HACK, the uname information displayed in the 226 * CTCP VERSION info will appear as "*IX" regardless of any other 227 * settings. Useful for paranoid users who dont want others to know 228 * that theyre running a buggy SunOS machine. >;-) 229 */ 230 #undef UNAME_HACK 231 232 233 /* And here is the port number for default client connections. */ 234 #define IRC_PORT 6667 235 236 /* 237 * If you want to have a file containing the list of irc servers to 238 * use, define SERVERS_FILE to be that filename. Put the file in the 239 * ircII library directory. This file should be whitespace seperated 240 * hostname:portnum:password (with the portnum and password being 241 * optional). This server list will supercede the DEFAULT_SERVER 242 */ 243 #define SERVERS_FILE "ircII.servers" 244 245 /* 246 * The compile sequence records the user/host/time of the compile, 247 * which can be useful for tampering and newbie reasons. If you want 248 * the compile to remain anonymous, define this option. In this case, 249 * the host and the time will remain, but the 'user' field will not 250 * be displayed to the user. 251 * 252 * Please dont define this on a whim -- be sure you really want it. 253 */ 254 #undef ANONYMOUS_COMPILE 255 256 /* 257 * The /LOAD path is now generated at runtime, rather than at compile time. 258 * This is to allow you to change IRCLIB and have its script library be 259 * resepected without having to change IRCPATH as well. This is a printf 260 * format of what the default load path is to be. The %s format indicates 261 * the runtime IRCLIB value. This value is only used at startup time. 262 */ 263 #define DEFAULT_IRCPATH "~/.epic:~/.irc:%s/script:." 264 265 #define IMPLIED_ON_HOOKS 266 267 /* 268 * Below are the IRCII variable defaults. For boolean variables, use 1 for 269 * ON and 0 for OFF. You may set string variable to NULL if you wish them to 270 * have no value. None of these are optional. You may *not* comment out or 271 * remove them. They are default values for variables and are required for 272 * proper compilation. 273 */ 274 #define DEFAULT_ACCEPT_INVALID_SSL_CERT 1 275 #define DEFAULT_ALLOW_C1_CHARS 0 276 #define DEFAULT_ALT_CHARSET 1 277 #define DEFAULT_ALWAYS_SPLIT_BIGGEST 1 278 #define DEFAULT_BANNER "***" 279 #define DEFAULT_BANNER_EXPAND 0 280 #define DEFAULT_BEEP 1 281 #define DEFAULT_BEEP_MAX 3 282 #define DEFAULT_BLINK_VIDEO 1 283 #define DEFAULT_BOLD_VIDEO 1 284 #define DEFAULT_CHANNEL_NAME_WIDTH 0 285 #define DEFAULT_CLOCK 1 286 #define DEFAULT_CLOCK_24HOUR 0 287 #define DEFAULT_CLOCK_FORMAT NULL 288 #define DEFAULT_CLOCK_INTERVAL 60 289 #define DEFAULT_CMDCHARS "/" 290 #define DEFAULT_COLOR 1 291 #define DEFAULT_COMMENT_HACK 1 292 #define DEFAULT_CONTINUED_LINE "+" 293 #define DEFAULT_CPU_SAVER_AFTER 0 294 #define DEFAULT_CPU_SAVER_EVERY 60 295 #define DEFAULT_CURRENT_WINDOW_LEVEL NULL 296 #define DEFAULT_DCC_AUTO_SEND_REJECTS 1 297 #define DEFAULT_DCC_CONNECT_TIMEOUT 30 298 #define DEFAULT_DCC_DEQUOTE_FILENAMES 1 299 #define DEFAULT_DCC_LONG_PATHNAMES 1 300 #define DEFAULT_DCC_SLIDING_WINDOW 1 301 #define DEFAULT_DCC_STORE_PATH NULL 302 #define DEFAULT_DCC_USE_GATEWAY_ADDR 0 303 #define DEFAULT_DEFAULT_SCRIPT_ENCODING "ISO-8859-1" 304 #define DEFAULT_DISPATCH_UNKNOWN_COMMANDS 0 305 #define DEFAULT_DISPLAY 1 306 #define DEFAULT_DISPLAY_ANSI 1 307 #define DEFAULT_DISPLAY_PC_CHARACTERS 4 308 #define DEFAULT_DO_NOTIFY_IMMEDIATELY 1 309 #define DEFAULT_EIGHT_BIT_CHARACTERS 1 310 #define DEFAULT_FIRST_LINE NULL 311 #define DEFAULT_FLOATING_POINT_MATH 0 312 #define DEFAULT_FLOATING_POINT_PRECISION 16 313 #define DEFAULT_FLOOD_AFTER 3 314 #define DEFAULT_FLOOD_IGNORE 0 315 #define DEFAULT_FLOOD_MASKUSER 0 316 #define DEFAULT_FLOOD_RATE 1 317 #define DEFAULT_FLOOD_RATE_PER 10 318 #define DEFAULT_FLOOD_USERS 3 319 #define DEFAULT_FLOOD_WARNING 0 320 #define DEFAULT_HIDE_PRIVATE_CHANNELS 0 321 #define DEFAULT_HIGHLIGHT_CHAR "BOLD" 322 #define DEFAULT_HIGH_BIT_ESCAPE 2 323 #define DEFAULT_HOLD_SLIDER 100 324 #define DEFAULT_INDENT 0 325 #define DEFAULT_INPUT_INDICATOR_LEFT "+ " 326 #define DEFAULT_INPUT_INDICATOR_RIGHT " +" 327 #define DEFAULT_INPUT_PROMPT "> " 328 #define DEFAULT_INSERT_MODE 1 329 #define DEFAULT_INVERSE_VIDEO 1 330 #define DEFAULT_KEY_INTERVAL 1000 331 #define DEFAULT_LASTLOG 256 332 #define DEFAULT_LASTLOG_LEVEL "ALL" 333 #define DEFAULT_LASTLOG_REWRITE NULL 334 #define DEFAULT_LOG 0 335 #define DEFAULT_LOGFILE "irc.log" 336 #define DEFAULT_MAIL 2 337 #define DEFAULT_MAIL_INTERVAL 60 338 #define DEFAULT_MAIL_TYPE "mbox" 339 #define DEFAULT_METRIC_TIME 0 340 #define DEFAULT_MIRC_BROKEN_DCC_RESUME 0 341 #define DEFAULT_MODE_STRIPPER 0 342 #define DEFAULT_ND_SPACE_MAX 160 343 #define DEFAULT_NEW_SERVER_LASTLOG_LEVEL "ALL,-DCC" 344 #define DEFAULT_NOTIFY 1 345 #define DEFAULT_NOTIFY_INTERVAL 60 346 #define DEFAULT_NOTIFY_LEVEL "ALL" 347 #define DEFAULT_NOTIFY_ON_TERMINATION 1 348 #define DEFAULT_NOTIFY_USERHOST_AUTOMATIC 1 349 #define DEFAULT_NO_CONTROL_LOG 0 350 #define DEFAULT_NO_CTCP_FLOOD 1 351 #define DEFAULT_NO_FAIL_DISCONNECT 0 352 #define DEFAULT_OLD_MATH_PARSER 0 353 #define DEFAULT_OLD_SERVER_LASTLOG_LEVEL "NONE" 354 #define DEFAULT_PAD_CHAR ' ' 355 #define DEFAULT_QUIT_MESSAGE "ircII %s -- Are we there yet?" 356 #define DEFAULT_RANDOM_SOURCE 0 357 #define DEFAULT_SCREEN_OPTIONS NULL 358 #define DEFAULT_SCROLLBACK 256 359 #define DEFAULT_SCROLLBACK_RATIO 50 360 #define DEFAULT_SCROLL_LINES 1 361 #define DEFAULT_SHELL "/bin/sh" 362 #define DEFAULT_SHELL_FLAGS "-c" 363 #define DEFAULT_SHELL_LIMIT 0 364 #define DEFAULT_SHOW_CHANNEL_NAMES 1 365 #define DEFAULT_SHOW_NUMERICS 0 366 #define DEFAULT_SHOW_STATUS_ALL 0 367 #define DEFAULT_STATUS_AWAY " (Away)" 368 #define DEFAULT_STATUS_CHANNEL " %C" 369 #define DEFAULT_STATUS_CHANOP "@" 370 #define DEFAULT_STATUS_CLOCK " %T" 371 #define DEFAULT_STATUS_CPU_SAVER " (%L)" 372 #define DEFAULT_STATUS_FORMAT REV_TOG_STR "%T [%R] %*%=%@%N%#%S%{1}H%H%B%Q%A%C%+%I%O%M%F%L %D %U %W" 373 #define DEFAULT_STATUS_FORMAT1 REV_TOG_STR "%T [%R] %*%=%@%N%#%S%{1}H%H%B%Q%A%C%+%I%O%M%F%L %U " 374 #define DEFAULT_STATUS_FORMAT2 REV_TOG_STR "%W %X %Y %Z " 375 #define DEFAULT_STATUS_HALFOP "%" 376 #define DEFAULT_STATUS_HOLD " Held: " 377 #define DEFAULT_STATUS_HOLD_LINES "%B" 378 #define DEFAULT_STATUS_HOLDMODE " (Hold)" 379 #define DEFAULT_STATUS_INSERT "" 380 #define DEFAULT_STATUS_MAIL " (Mail: %M)" 381 #define DEFAULT_STATUS_MODE " (+%+)" 382 #define DEFAULT_STATUS_NICKNAME "%N" 383 #define DEFAULT_STATUS_NOSWAP "(NOSWAP)" 384 #define DEFAULT_STATUS_NOTIFY " (W: %F)" 385 #define DEFAULT_STATUS_NO_REPEAT 0 386 #define DEFAULT_STATUS_OPER "*" 387 #define DEFAULT_STATUS_OVERWRITE " (Overwrite)" 388 #define DEFAULT_STATUS_PREFIX_WHEN_CURRENT "" 389 #define DEFAULT_STATUS_PREFIX_WHEN_NOT_CURRENT "" 390 #define DEFAULT_STATUS_QUERY " (Query: %Q)" 391 #define DEFAULT_STATUS_SCROLLBACK " (Scroll)" 392 #define DEFAULT_STATUS_SERVER " (%S)" 393 #define DEFAULT_STATUS_SSL_OFF "*RAW*" 394 #define DEFAULT_STATUS_SSL_ON "*SSL*" 395 #define DEFAULT_STATUS_TRUNCATE_RHS 1 396 #define DEFAULT_STATUS_UMODE " (+%#)" 397 #define DEFAULT_STATUS_USER "EPIC5 -- Visit http://help.epicsol.org/ for help" 398 #define DEFAULT_STATUS_USER1 "" 399 #define DEFAULT_STATUS_USER2 "" 400 #define DEFAULT_STATUS_USER3 "" 401 #define DEFAULT_STATUS_USER4 "" 402 #define DEFAULT_STATUS_USER5 "" 403 #define DEFAULT_STATUS_USER6 "" 404 #define DEFAULT_STATUS_USER7 "" 405 #define DEFAULT_STATUS_USER8 "" 406 #define DEFAULT_STATUS_USER9 "" 407 #define DEFAULT_STATUS_USER10 "" 408 #define DEFAULT_STATUS_USER11 "" 409 #define DEFAULT_STATUS_USER12 "" 410 #define DEFAULT_STATUS_USER13 "" 411 #define DEFAULT_STATUS_USER14 "" 412 #define DEFAULT_STATUS_USER15 "" 413 #define DEFAULT_STATUS_USER16 "" 414 #define DEFAULT_STATUS_USER17 "" 415 #define DEFAULT_STATUS_USER18 "" 416 #define DEFAULT_STATUS_USER19 "" 417 #define DEFAULT_STATUS_USER20 "" 418 #define DEFAULT_STATUS_USER21 "" 419 #define DEFAULT_STATUS_USER22 "" 420 #define DEFAULT_STATUS_USER23 "" 421 #define DEFAULT_STATUS_USER24 "" 422 #define DEFAULT_STATUS_USER25 "" 423 #define DEFAULT_STATUS_USER26 "" 424 #define DEFAULT_STATUS_USER27 "" 425 #define DEFAULT_STATUS_USER28 "" 426 #define DEFAULT_STATUS_USER29 "" 427 #define DEFAULT_STATUS_USER30 "" 428 #define DEFAULT_STATUS_USER31 "" 429 #define DEFAULT_STATUS_USER32 "" 430 #define DEFAULT_STATUS_USER33 "" 431 #define DEFAULT_STATUS_USER34 "" 432 #define DEFAULT_STATUS_USER35 "" 433 #define DEFAULT_STATUS_USER36 "" 434 #define DEFAULT_STATUS_USER37 "" 435 #define DEFAULT_STATUS_USER38 "" 436 #define DEFAULT_STATUS_USER39 "" 437 #define DEFAULT_STATUS_VOICE "+" 438 #define DEFAULT_STATUS_WINDOW "^^^^^^^^" 439 #define DEFAULT_SUPPRESS_FROM_REMOTE_SERVER 0 440 #define DEFAULT_SWITCH_CHANNELS_BETWEEN_WINDOWS 1 441 #define DEFAULT_TAB 1 442 #define DEFAULT_TAB_MAX 0 443 #define DEFAULT_TERM_DOES_BRIGHT_BLINK 0 444 #define DEFAULT_TMUX_OPTIONS NULL 445 #define DEFAULT_UNDERLINE_VIDEO 1 446 #define DEFAULT_USER_INFORMATION "EPIC5 -- Into the abyss" 447 #define DEFAULT_WORD_BREAK " \t" 448 #define DEFAULT_WSERV_TYPE "screen" 449 #define DEFAULT_XTERM "xterm" 450 #define DEFAULT_XTERM_OPTIONS NULL 451 452 /* 453 * People have wanted me to explain some of these #defines. Well, 454 * Ill tell you what i will do. I will tell you that some of these 455 * defines turn on obscure features, and others turn on features that 456 * are specificly placed there at the request of one of the debuggers, 457 * but i am making the option of using it available to the general 458 * public. You should always be aware of what changing one of these 459 * #defines might do to affect the operation of the client. You can get 460 * a good feel for the impact by grepping the source code for them. 461 * General "themes" of what the defines do are listed on the right. 462 * These "themes" describe the *spirit* of the define, but do NOT 463 * annotate every reprocussion of defining it! 464 * 465 * Also, i dont guarantee that changing any of these defines will 466 * or wont compile correctly, so you may have to be prepared to do 467 * some minor debugging in that case (send patches along to me if 468 * you do =) Dont change any of these unless you know what it will do. 469 */ 470 #undef EMACS_KEYBINDINGS /* meta-key keybindings. */ 471 #undef HACKED_DCC_WARNING /* warn if handshake != sender */ 472 #undef HARD_UNFLASH /* do a hard reset instead of soft on refresh */ 473 #undef NO_BOTS /* no bots allowed */ 474 #undef NO_CHEATING /* always do it the "right" way, no shortcuts */ 475 476 #undef I_DONT_TRUST_MY_USERS /* There are certain things that the stock 477 ircII client doesnt allow users to do 478 that are neither illegal by the letter of 479 the protocol nor the spirit of the protocol. 480 These are the things that only a really 481 anal retentive person would want to totaly 482 prohibit his users from doing without any 483 exceptions. When i find these things, i 484 #ifdef them out under this define. The 485 specific list of what may or may not be 486 contained under this define can change 487 from release to release. This replaces 488 the I_AM_A_FASCIST_BASTARD define which 489 several people found offensive because 490 they wanted to define it =) */ 491 492 /* Dont change these -- theyre important. */ 493 #if defined(VALID_UIDS) && !defined(HARD_SECURE) 494 #undef VALID_UIDS 495 #endif 496 497 #if defined(PASSWORD) && !defined(HARD_SECURE) && !defined(SOFT_SECURE) 498 #undef PASSWORD 499 #endif 500 501 #if defined(HARD_SECURE) && !defined(VALID_UIDS) 502 #error You must #define VALID_UIDS if you #define HARD_SECURE 503 #endif 504 505 #if defined(VALID_UID_FILE) && !defined(SOFT_SECURE) 506 #undef VALID_UID_FILE 507 #endif 508 509 #if defined(SOFT_SECURE) && !defined(VALID_UID_FILE) 510 #error You must #define VALID_UID_FILE if you #define SOFT_SECURE 511 #endif 512 513 #ifndef SPOOF_PROGRAM 514 #define SPOOF_PROGRAM "/bin/sh" 515 #endif 516 /* end of section not to change */ 517 518 #undef ALLOC_DEBUG 519 520 #endif /* _CONFIG_H_ */ 521 522