13680Sroot /* 2*61840Sbostic * Copyright (c) 1983, 1993 3*61840Sbostic * The Regents of the University of California. All rights reserved. 422442Sdist * 542801Sbostic * %sccs.include.redist.c% 634203Sbostic * 7*61840Sbostic * @(#)lp.local.h 8.1 (Berkeley) 06/06/93 822442Sdist */ 922442Sdist 1022442Sdist /* 113680Sroot * Possibly, local parameters to the spooling system 123680Sroot */ 133680Sroot 143680Sroot /* 153680Sroot * Defaults for line printer capabilities data base 163680Sroot */ 173680Sroot #define DEFLP "lp" 183680Sroot #define DEFLOCK "lock" 1910190Sralph #define DEFSTAT "status" 203680Sroot #define DEFMX 1000 2113170Sralph #define DEFMAXCOPIES 0 223680Sroot #define DEFFF "\f" 2310863Sralph #define DEFWIDTH 132 2410863Sralph #define DEFLENGTH 66 2510190Sralph #define DEFUID 1 263680Sroot 273680Sroot /* 283680Sroot * When files are created in the spooling area, they are normally 293680Sroot * readable only by their owner and the spooling group. If you 303680Sroot * want otherwise, change this mode. 313680Sroot */ 323680Sroot #define FILMOD 0660 333680Sroot 343680Sroot /* 353680Sroot * Printer is assumed to support LINELEN (for block chars) 363680Sroot * and background character (blank) is a space 373680Sroot */ 383680Sroot #define LINELEN 132 393680Sroot #define BACKGND ' ' 403680Sroot 413680Sroot #define HEIGHT 9 /* height of characters */ 423680Sroot #define WIDTH 8 /* width of characters */ 433680Sroot #define DROP 3 /* offset to drop characters with descenders */ 4412126Sralph 4512126Sralph /* 4612126Sralph * Define TERMCAP if the terminal capabilites are to be used for lpq. 4712126Sralph */ 4812126Sralph #define TERMCAP 4912126Sralph 5012126Sralph /* 5112126Sralph * Maximum number of user and job requests for lpq and lprm. 5212126Sralph */ 5312126Sralph #define MAXUSERS 50 5412126Sralph #define MAXREQUESTS 50 55