]> git.ipfire.org Git - thirdparty/cups.git/blame_incremental - doc/help/ref-cupsd-conf.html.in
Merge changes from CUPS 1.4svn-r8628.
[thirdparty/cups.git] / doc / help / ref-cupsd-conf.html.in
... / ...
CommitLineData
1<HTML>
2<!-- SECTION: References -->
3<HEAD>
4 <TITLE>cupsd.conf</TITLE>
5 <LINK REL="STYLESHEET" TYPE="text/css" HREF="../cups-printable.css">
6</HEAD>
7<BODY>
8
9<H1 CLASS="title">cupsd.conf</H1>
10
11<P>The <VAR>/etc/cups/cupsd.conf</VAR> file contains
12configuration <I>directives</I> that control how the server
13functions. Each directive is listed on a line by itself followed
14by its value. Comments are introduced using the number sign ("#")
15character at the beginning of a line.</P>
16
17<P>Since the server configuration file consists of plain text,
18you can use your favorite text editor to make changes to it.
19After making any changes, restart the <CODE>cupsd(8)</CODE>
20process using the startup script for your operating system:</P>
21
22<UL>
23
24 <LI>AIX, IRIX, Linux, Solaris:
25 <PRE CLASS="command">
26/etc/init.d/cups restart
27 </PRE></LI>
28
29 <LI>HP-UX:
30 <PRE CLASS="command">
31/sbin/init.d/cups restart
32 </PRE></LI>
33
34 <LI>MacOS X:
35 <PRE CLASS="command">
36sudo launchctl unload /System/Library/LaunchDaemons/org.cups.cupsd.plist
37sudo launchctl load /System/Library/LaunchDaemons/org.cups.cupsd.plist
38 </PRE></LI>
39
40</UL>
41
42<P>You can also edit this file from the CUPS web interface, which
43automatically handles restarting the scheduler.</P>
44
45
46<H2 CLASS="title"><A NAME="AccessLog">AccessLog</A></H2>
47
48<H3>Examples</H3>
49
50<PRE CLASS="command">
51AccessLog /var/log/cups/access_log
52AccessLog /var/log/cups/access_log-%s
53AccessLog syslog
54</PRE>
55
56<H3>Description</H3>
57
58<P>The <CODE>AccessLog</CODE> directive sets the name of the
59access log file. If the filename is not absolute then it is
60assumed to be relative to the <A
61HREF="#ServerRoot"><CODE>ServerRoot</CODE></A> directory. The
62access log file is stored in "common log format" and can be used
63by any web access reporting tool to generate a report on CUPS
64server activity.</P>
65
66<P>The server name can be included in the filename by using
67<CODE>%s</CODE> in the name.</P>
68
69<P>The special name "syslog" can be used to send the access
70information to the system log instead of a plain file.</P>
71
72<P>The default access log file is
73<VAR>@CUPS_LOGDIR@/access_log</VAR>.</P>
74
75
76<H2 CLASS="title"><A NAME="AccessLogLevel">AccessLogLevel</A></H2>
77
78<H3>Examples</H3>
79
80<PRE CLASS="command">
81AccessLogLevel config
82AccessLogLevel actions
83AccessLogLevel all
84</PRE>
85
86<H3>Description</H3>
87
88<P>The <CODE>AccessLogLevel</CODE> directive controls which requests are logged
89to the access log file. The following levels are defined:</P>
90
91<UL>
92
93 <LI><CODE>config</CODE>; Log when printers and classes are added,
94 deleted, or modified and when configuration files are accessed or
95 updated.</LI>
96
97 <LI><CODE>actions</CODE>; Log when print jobs are submitted,
98 held, released, modified, or canceled, and any of the conditions
99 for <CODE>config</CODE>.</LI>
100
101 <LI><CODE>all</CODE>; Log all requests.</LI>
102
103</UL>
104
105<P>The default access log level is <CODE>@CUPS_ACCESS_LOG_LEVEL@</CODE>.</P>
106
107
108<H2 CLASS="title"><A NAME="Allow">Allow</A></H2>
109
110<H3>Examples</H3>
111
112<PRE CLASS="command">
113&lt;Location /path&gt;
114 ...
115 Allow from All
116 Allow from None
117 Allow from *.domain.com
118 Allow from .domain.com
119 Allow from host.domain.com
120 Allow from nnn.*
121 Allow from nnn.nnn.*
122 Allow from nnn.nnn.nnn.*
123 Allow from nnn.nnn.nnn.nnn
124 Allow from nnn.nnn.nnn.nnn/mm
125 Allow from nnn.nnn.nnn.nnn/mmm.mmm.mmm.mmm
126 Allow from xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx
127 Allow from @LOCAL
128 Allow from @IF(name)
129&lt;/Location&gt;
130</PRE>
131
132<H3>Description</H3>
133
134<P>The <CODE>Allow</CODE> directive specifies a hostname, IP
135address, or network that is allowed access to the server.
136<CODE>Allow</CODE> directives are cummulative, so multiple
137<CODE>Allow</CODE> directives can be used to allow access for
138multiple hosts or networks. The <CODE>/mm</CODE> notation
139specifies a CIDR netmask, as shown in Table 1.</P>
140
141<DIV CLASS="table"><TABLE SUMMARY="CIDR Netmasks">
142<CAPTION>Table 1: <A NAME="TABLE1">CIDR Netmasks</A></CAPTION>
143<TR>
144 <TH WIDTH="10%">mm</TH>
145 <TH WIDTH="20%">netmask</TH>
146 <TH WIDTH="10%">mm</TH>
147 <TH WIDTH="20%">netmask</TH>
148</TR>
149<TR>
150 <TD ALIGN="CENTER">0</TD>
151 <TD ALIGN="CENTER">0.0.0.0</TD>
152 <TD ALIGN="CENTER">8</TD>
153 <TD ALIGN="CENTER">255.0.0.0</TD>
154</TR>
155<TR>
156 <TD ALIGN="CENTER">1</TD>
157 <TD ALIGN="CENTER">128.0.0.0</TD>
158 <TD ALIGN="CENTER">16</TD>
159 <TD ALIGN="CENTER">255.255.0.0</TD>
160</TR>
161<TR>
162 <TD ALIGN="CENTER">2</TD>
163 <TD ALIGN="CENTER">192.0.0.0</TD>
164 <TD ALIGN="CENTER">24</TD>
165 <TD ALIGN="CENTER">255.255.255.0</TD>
166</TR>
167<TR>
168 <TD ALIGN="CENTER">...</TD>
169 <TD ALIGN="CENTER">...</TD>
170 <TD ALIGN="CENTER">32</TD>
171 <TD ALIGN="CENTER">255.255.255.255</TD>
172</TR>
173</TABLE></DIV>
174
175<P>The <CODE>@LOCAL</CODE> name will allow access from all local
176interfaces. The <CODE>@IF(name)</CODE> name will allow access
177from the named interface. In both cases, CUPS only allows access
178from the network that the interface(s) are configured for -
179requests arriving on the interface from a foreign network will
180<em>not</em> be accepted.</P>
181
182<P>The <CODE>Allow</CODE> directive must appear inside a <A
183HREF="#Location"><CODE>Location</CODE></A> or <A
184HREF="#Limit"><CODE>Limit</CODE></A> section.</P>
185
186
187<H2 CLASS="title"><SPAN CLASS="info">Deprecated</SPAN><A NAME="AuthClass">AuthClass</A></H2>
188
189<H3>Examples</H3>
190
191<PRE CLASS="command">
192&lt;Location /path&gt;
193 ...
194 AuthClass Anonymous
195 AuthClass User
196 AuthClass System
197 AuthClass Group
198&lt;/Location&gt;
199</PRE>
200
201<H3>Description</H3>
202
203<P>The <CODE>AuthClass</CODE> directive defines what level of
204authentication is required:</P>
205
206<UL>
207
208 <LI><CODE>Anonymous</CODE> - No authentication should be
209 performed (default)</LI>
210
211 <LI><CODE>User</CODE> - A valid username and password is
212 required</LI>
213
214 <LI><CODE>System</CODE> - A valid username and password
215 is required, and the username must belong to the "sys"
216 group; this can be changed using the <A
217 HREF="#SystemGroup"><CODE>SystemGroup</CODE></A>
218 directive</LI>
219
220 <LI><CODE>Group</CODE> - A valid username and password is
221 required, and the username must belong to the group named
222 by the <A
223 HREF="#AuthGroupName"><CODE>AuthGroupName</CODE></A>
224 directive</LI>
225
226</UL>
227
228<P>The <CODE>AuthClass</CODE> directive must appear inside a <A
229HREF="#Location"><CODE>Location</CODE></A> or <A
230HREF="#Limit"><CODE>Limit</CODE></A> section.</P>
231
232<P><B>This directive is deprecated and will be removed from a
233future release of CUPS.</B> Consider using the more flexible <A
234HREF="#Require"><CODE>Require</CODE></A> directive instead.</P>
235
236
237<H2 CLASS="title"><SPAN CLASS="info">Deprecated</SPAN><A NAME="AuthGroupName">AuthGroupName</A></H2>
238
239<H3>Examples</H3>
240
241<PRE CLASS="command">
242&lt;Location /path&gt;
243 ...
244 AuthGroupName mygroup
245 AuthGroupName lp
246&lt;/Location&gt;
247</PRE>
248
249<H3>Description</H3>
250
251<P>The <CODE>AuthGroupName</CODE> directive sets the group to use
252for <CODE>Group</CODE> authentication.</P>
253
254<P>The <CODE>AuthGroupName</CODE> directive must appear inside a
255<A HREF="#Location"><CODE>Location</CODE></A> or <A
256HREF="#Limit"><CODE>Limit</CODE></A> section.</P>
257
258<P><B>This directive is deprecated and will be removed from a
259future release of CUPS.</B> Consider using the more flexible <A
260HREF="#Require"><CODE>Require</CODE></A> directive instead.</P>
261
262
263<H2 CLASS="title"><A NAME="AuthType">AuthType</A></H2>
264
265<H3>Examples</H3>
266
267<PRE CLASS="command">
268&lt;Location /path&gt;
269 ...
270 AuthType None
271 AuthType Basic
272 AuthType Digest
273 AuthType BasicDigest
274 AuthType Negotiate
275&lt;/Location&gt;
276</PRE>
277
278<H3>Description</H3>
279
280<P>The <CODE>AuthType</CODE> directive defines the type of
281authentication to perform:</P>
282
283<UL>
284
285 <LI><CODE>None</CODE> - No authentication should be
286 performed (default)</LI>
287
288 <LI><CODE>Basic</CODE> - Basic authentication should be
289 performed using the UNIX password and group files</LI>
290
291 <LI><CODE>Digest</CODE> - Digest authentication should be
292 performed using the <VAR>/etc/cups/passwd.md5</VAR>
293 file</LI>
294
295 <LI><CODE>BasicDigest</CODE> - Basic authentication
296 should be performed using the
297 <VAR>/etc/cups/passwd.md5</VAR> file</LI>
298
299 <LI><CODE>Negotiate</CODE> - Kerberos authentication
300 should be performed</LI>
301
302</UL>
303
304<P>When using <CODE>Basic</CODE>, <CODE>Digest</CODE>,
305<CODE>BasicDigest</CODE>, or <CODE>Negotiate</CODE> authentication,
306clients connecting through the <CODE>localhost</CODE> interface can
307also authenticate using certificates.</P>
308
309<P>The <CODE>AuthType</CODE> directive must appear inside a <A
310HREF="#Location"><CODE>Location</CODE></A> or <A
311HREF="#Limit"><CODE>Limit</CODE></A> section.</P>
312
313
314<H2 CLASS="title"><A NAME="AutoPurgeJobs">AutoPurgeJobs</A></H2>
315
316<H3>Examples</H3>
317
318<PRE CLASS="command">
319AutoPurgeJobs Yes
320AutoPurgeJobs No
321</PRE>
322
323<H3>Description</H3>
324
325<P>The <CODE>AutoPurgeJobs</CODE> directive specifies whether or
326not to purge completed jobs once they are no longer required for
327quotas. This option has no effect if quotas are not enabled. The
328default setting is <CODE>No</CODE>.</P>
329
330
331<H2 CLASS="title"><A NAME="BrowseAddress">BrowseAddress</A></H2>
332
333<H3>Examples</H3>
334
335<PRE CLASS="command">
336BrowseAddress 255.255.255.255:631
337BrowseAddress 192.0.2.255:631
338BrowseAddress host.domain.com:631
339BrowseAddress @LOCAL
340BrowseAddress @IF(name)
341</PRE>
342
343<H3>Description</H3>
344
345<P>The <CODE>BrowseAddress</CODE> directive specifies an address
346to send browsing information to. Multiple
347<CODE>BrowseAddress</CODE> directives can be specified to send
348browsing information to different networks or systems.</P>
349
350<P>The <CODE>@LOCAL</CODE> name will broadcast printer
351information to all local interfaces. The <CODE>@IF(name)</CODE>
352name will broadcast to the named interface.</P>
353
354<P>There is no default browse address.</P>
355
356<BLOCKQUOTE><B>Note:</B>
357
358<P>If you are using HP-UX 10.20 and a subnet that is not 24,
35916, or 8 bits, printer browsing (and in fact all broadcast
360reception) will not work. This problem appears to be fixed in
361HP-UX 11.0.</P>
362
363</BLOCKQUOTE>
364
365
366<H2 CLASS="title"><A NAME="BrowseAllow">BrowseAllow</A></H2>
367
368<H3>Examples</H3>
369
370<PRE CLASS="command">
371BrowseAllow from all
372BrowseAllow from none
373BrowseAllow from 192.0.2
374BrowseAllow from 192.0.2.0/24
375BrowseAllow from 192.0.2.0/255.255.255.0
376BrowseAllow from *.domain.com
377BrowseAllow from @LOCAL
378BrowseAllow from @IF(name)
379</PRE>
380
381<H3>Description</H3>
382
383<P>The <CODE>BrowseAllow</CODE> directive specifies a system or
384network to accept browse packets from. The default is to accept
385browse packets from all hosts.</P>
386
387<P>Host and domain name matching require that you enable the <A
388HREF="#HostNameLookups"><CODE>HostNameLookups</CODE></A>
389directive.</P>
390
391<P>IP address matching supports exact matches, partial addresses
392that match networks using netmasks of 255.0.0.0, 255.255.0.0, and
393255.255.255.0, or network addresses using the specified netmask
394or bit count.</P>
395
396<P>The <CODE>@LOCAL</CODE> name will allow browse data from all
397local interfaces. The <CODE>@IF(name)</CODE> name will allow
398browse data from the named interface. In both cases, CUPS only
399allows data from the network that the interface(s) are configured
400for - data arriving on the interface from a foreign network will
401<em>not</em> be allowed.</P>
402
403
404<H2 CLASS="title"><A NAME="BrowseDeny">BrowseDeny</A></H2>
405
406<H3>Examples</H3>
407
408<PRE CLASS="command">
409BrowseDeny from all
410BrowseDeny from none
411BrowseDeny from 192.0.2
412BrowseDeny from 192.0.2.0/24
413BrowseDeny from 192.0.2.0/255.255.255.0
414BrowseDeny from *.domain.com
415BrowseDeny from @LOCAL
416BrowseDeny from @IF(name)
417</PRE>
418
419<H3>Description</H3>
420
421<P>The <CODE>BrowseDeny</CODE> directive specifies a system or
422network to reject browse packets from. The default is to not deny
423browse packets from any hosts.</P>
424
425<P>Host and domain name matching require that you enable the <A
426HREF="#HostNameLookups"><CODE>HostNameLookups</CODE></A>
427directive.</P>
428
429<P>IP address matching supports exact matches, partial addresses
430that match networks using netmasks of 255.0.0.0, 255.255.0.0, and
431255.255.255.0, or network addresses using the specified netmask
432or bit count.</P>
433
434<P>The <CODE>@LOCAL</CODE> name will block browse data from all
435local interfaces. The <CODE>@IF(name)</CODE> name will block
436browse data from the named interface. In both cases, CUPS only
437blocks data from the network that the interface(s) are configured
438for - data arriving on the interface from a foreign network will
439<em>not</em> be blocked.</P>
440
441
442<H2 CLASS="title"><A NAME="BrowseInterval">BrowseInterval</A></H2>
443
444<H3>Examples</H3>
445
446<PRE CLASS="command">
447BrowseInterval 0
448BrowseInterval 30
449</PRE>
450
451<H3>Description</H3>
452
453<P>The <CODE>BrowseInterval</CODE> directive specifies the
454maximum amount of time between browsing updates. Specifying a
455value of 0 seconds disables outgoing browse updates but allows a
456server to receive printer information from other hosts.</P>
457
458<P>The <CODE>BrowseInterval</CODE> value should always be less
459than the <A HREF="#BrowseTimeout"><CODE>BrowseTimeout</CODE></A>
460value. Otherwise printers and classes will disappear from client
461systems between updates.</P>
462
463
464<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="BrowseLDAPBindDN">BrowseLDAPBindDN</A></H2>
465
466<H3>Examples</H3>
467
468<PRE CLASS="command">
469BrowseLDAPBindDN foo
470</PRE>
471
472<H3>Description</H3>
473
474<P>The <CODE>BrowseLDAPBindDN</CODE> directive specifies the LDAP
475domain name to use when listening for printer registrations. The
476default is undefined.</P>
477
478
479<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.4</SPAN><A NAME="BrowseLDAPCACertFile">BrowseLDAPCACertFile</A></H2>
480
481<H3>Examples</H3>
482
483<PRE CLASS="command">
484BrowseLDAPCACertFile /etc/cups/ssl/certs
485</PRE>
486
487<H3>Description</H3>
488
489<P>The <CODE>BrowseLDAPCACertFile</CODE> directive specifies the SSL certificate
490authority file to use for LDAP + SSL. The default is undefined.</P>
491
492
493<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="BrowseLDAPDN">BrowseLDAPDN</A></H2>
494
495<H3>Examples</H3>
496
497<PRE CLASS="command">
498BrowseLDAPDN bar
499</PRE>
500
501<H3>Description</H3>
502
503<P>The <CODE>BrowseLDAPDN</CODE> directive specifies the LDAP
504domain name to use when registering local shared printers. The
505default is undefined.</P>
506
507
508<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="BrowseLDAPPassword">BrowseLDAPPassword</A></H2>
509
510<H3>Examples</H3>
511
512<PRE CLASS="command">
513BrowseLDAPPassword foo123
514</PRE>
515
516<H3>Description</H3>
517
518<P>The <CODE>BrowseLDAPPassword</CODE> directive specifies the
519access password to use when connecting to the LDAP server. The
520default is undefined.</P>
521
522
523<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="BrowseLDAPServer">BrowseLDAPServer</A></H2>
524
525<H3>Examples</H3>
526
527<PRE CLASS="command">
528BrowseLDAPServer localhost
529</PRE>
530
531<H3>Description</H3>
532
533<P>The <CODE>BrowseLDAPServer</CODE> directive specifies the name
534of the LDAP server to connect to. The default is undefined.</P>
535
536
537<H2 CLASS="title"><A NAME="BrowseLocalOptions">BrowseLocalOptions</A></H2>
538
539<H3>Examples</H3>
540
541<PRE CLASS="command">
542BrowseLocalOptions compression=yes
543BrowseLocalOptions encryption=required
544BrowseLocalOptions compression=yes&amp;encryption=required
545</PRE>
546
547<H3>Description</H3>
548
549<P>The <CODE>BrowseLocalOptions</CODE> directive specifies
550additional IPP backend options to advertise with local shared
551printers. The default is to not include any options.</P>
552
553
554<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="BrowseLocalProtocols">BrowseLocalProtocols</A></H2>
555
556<H3>Examples</H3>
557
558<PRE CLASS="command">
559BrowseLocalProtocols all
560BrowseLocalProtocols none
561BrowseLocalProtocols cups
562BrowseLocalProtocols dnssd
563BrowseLocalProtocols ldap
564BrowseLocalProtocols lpd
565BrowseLocalProtocols slp
566BrowseLocalProtocols smb
567BrowseLocalProtocols cups dnssd
568</PRE>
569
570<H3>Description</H3>
571
572<P>The <CODE>BrowseLocalProtocols</CODE> directive specifies the
573protocols to use when advertising local shared printers on the
574network. Multiple protocols can be specified by separating them
575with spaces. The default is "<CODE>@CUPS_BROWSE_LOCAL_PROTOCOLS@</CODE>".</P>
576
577
578<H2 CLASS="title"><A NAME="BrowseOrder">BrowseOrder</A></H2>
579
580<H3>Examples</H3>
581
582<PRE CLASS="command">
583BrowseOrder allow,deny
584BrowseOrder deny,allow
585</PRE>
586
587<H3>Description</H3>
588
589<P>The <CODE>BrowseOrder</CODE> directive specifies the order of
590allow/deny processing. The default order is
591<CODE>deny,allow</CODE>:</P>
592
593<UL>
594
595 <LI><CODE>allow,deny</CODE> - Deny browse packets by
596 default, then check <CODE>BrowseAllow</CODE> lines
597 followed by <CODE>BrowseDeny</CODE> lines.</LI>
598
599 <LI><CODE>deny,allow</CODE> - Allow browse packets by
600 default, then check <CODE>BrowseDeny</CODE> lines
601 followed by <CODE>BrowseAllow</CODE> lines.</LI>
602
603</UL>
604
605
606<H2 CLASS="title"><A NAME="BrowsePoll">BrowsePoll</A></H2>
607
608<H3>Examples</H3>
609
610<PRE CLASS="command">
611BrowsePoll 192.0.2.2:631
612BrowsePoll host.domain.com:631
613</PRE>
614
615<H3>Description</H3>
616
617<P>The <CODE>BrowsePoll</CODE> directive polls a server for
618available printers once every <A
619HREF="#BrowseInterval"><CODE>BrowseInterval</CODE></A> seconds.
620Multiple <CODE>BrowsePoll</CODE> directives can be specified to
621poll multiple servers.</P>
622
623<P>If <CODE>BrowseInterval</CODE> is set to 0 then the server is
624polled once every 30 seconds.</P>
625
626
627<H2 CLASS="title"><A NAME="BrowsePort">BrowsePort</A></H2>
628
629<H3>Examples</H3>
630
631<PRE CLASS="command">
632BrowsePort 631
633BrowsePort 9999
634</PRE>
635
636<H3>Description</H3>
637
638<P>The <CODE>BrowsePort</CODE> directive specifies the UDP port number
639used for browse packets. The default port number is 631.</P>
640
641<BLOCKQUOTE><B>Note:</B>
642
643<P>You must set the <CODE>BrowsePort</CODE> to the same value
644on all of the systems that you want to see.
645
646</BLOCKQUOTE>
647
648
649<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.10</SPAN><A NAME="BrowseProtocols">BrowseProtocols</A></H2>
650
651<H3>Examples</H3>
652
653<PRE CLASS="command">
654BrowseProtocols all
655BrowseProtocols none
656BrowseProtocols cups
657BrowseProtocols dnssd
658BrowseProtocols ldap
659BrowseProtocols lpd
660BrowseProtocols slp
661BrowseProtocols smb
662BrowseProtocols cups dnssd
663</PRE>
664
665<H3>Description</H3>
666
667<P>The <CODE>BrowseProtocols</CODE> directive specifies the
668protocols to use when showing and advertising shared printers on
669the local network. Multiple protocols can be specified by
670separating them with spaces. The default protocol is
671"<CODE>@CUPS_BROWSE_LOCAL_PROTOCOLS@</CODE>" for
672<A HREF="#BrowseLocalProtocols"><CODE>BrowseLocalProtocols</CODE></A> and
673"<CODE>@CUPS_BROWSE_REMOTE_PROTOCOLS@</CODE>" for
674<A HREF="#BrowseRemoteProtocols"><CODE>BrowseRemoteProtocols</CODE></A>.</P>
675
676<BLOCKQUOTE><B>Note:</B>
677
678<P>When using the <CODE>SLP</CODE> protocol, you must have at least
679one Directory Agent (DA) server on your network. Otherwise the
680CUPS scheduler (<CODE>cupsd</CODE>) will not respond to client
681requests for several seconds while polling the network.</P>
682
683</BLOCKQUOTE>
684
685
686<H2 CLASS="title"><A NAME="BrowseRelay">BrowseRelay</A></H2>
687
688<H3>Examples</H3>
689
690<PRE CLASS="command">
691BrowseRelay 193.0.2.1 192.0.2.255
692BrowseRelay 193.0.2.0/255.255.255.0 192.0.2.255
693BrowseRelay 193.0.2.0/24 192.0.2.255
694BrowseRelay *.domain.com 192.0.2.255
695BrowseRelay host.domain.com 192.0.2.255
696</PRE>
697
698<H3>Description</H3>
699
700<P>The <CODE>BrowseRelay</CODE> directive specifies source and
701destination addresses for relaying browsing information from one
702host or network to another. Multiple <CODE>BrowseRelay</CODE>
703directives can be specified as needed.</P>
704
705<P><CODE>BrowseRelay</CODE> is typically used on systems that
706bridge multiple subnets using one or more network interfaces. It
707can also be used to relay printer information from polled servers
708with the line:</P>
709
710<PRE CLASS="command">
711BrowseRelay 127.0.0.1 @LOCAL
712</PRE>
713
714<P>This effectively provides access to printers on a WAN for all
715clients on the LAN(s).</P>
716
717
718<H2 CLASS="title"><A NAME="BrowseRemoteOptions">BrowseRemoteOptions</A></H2>
719
720<H3>Examples</H3>
721
722<PRE CLASS="command">
723BrowseRemoteOptions compression=yes
724BrowseRemoteOptions encryption=required
725BrowseRemoteOptions ?compression=yes&amp;encryption=required
726</PRE>
727
728<H3>Description</H3>
729
730<P>The <CODE>BrowseRemoteOptions</CODE> directive specifies
731additional IPP backend options to include with remote shared
732printers. If the options string begins with a question mark (?),
733the options replace any options specified by the remote server.
734The default is to not include any options.</P>
735
736
737<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="BrowseRemoteProtocols">BrowseRemoteProtocols</A></H2>
738
739<H3>Examples</H3>
740
741<PRE CLASS="command">
742BrowseRemoteProtocols all
743BrowseRemoteProtocols none
744BrowseRemoteProtocols cups
745BrowseRemoteProtocols ldap
746BrowseRemoteProtocols slp
747</PRE>
748
749<H3>Description</H3>
750
751<P>The <CODE>BrowseRemoteProtocols</CODE> directive specifies the
752protocols to use when finding remote shared printers on the
753network. Multiple protocols can be specified by separating them
754with spaces. The default is "<CODE>@CUPS_BROWSE_REMOTE_PROTOCOLS@</CODE>".</P>
755
756
757<H2 CLASS="title"><A NAME="BrowseShortNames">BrowseShortNames</A></H2>
758
759<H3>Examples</H3>
760
761<PRE CLASS="command">
762BrowseShortNames Yes
763BrowseShortNames No
764</PRE>
765
766<H3>Description</H3>
767
768<P>The <CODE>BrowseShortNames</CODE> directive specifies whether
769or not short names are used for remote printers when possible.
770Short names are just the remote printer name, without the server
771("printer"). If more than one remote printer is detected with the
772same name, the printers will have long names ("printer@server1",
773"printer@server2".)</P>
774
775<P>The default value for this option is <CODE>@CUPS_BROWSE_SHORT_NAMES@</CODE>.</P>
776
777
778<H2 CLASS="title"><A NAME="BrowseTimeout">BrowseTimeout</A></H2>
779
780<H3>Examples</H3>
781
782<PRE CLASS="command">
783BrowseTimeout 300
784BrowseTimeout 60
785</PRE>
786
787<H3>Description</H3>
788
789<P>The <CODE>BrowseTimeout</CODE> directive sets the timeout for
790printer or class information that is received in browse packets.
791Once a printer or class times out it is removed from the list of
792available destinations.</P>
793
794<P>The <CODE>BrowseTimeout</CODE> value should always be greater
795than the <A
796HREF="#BrowseInterval"><CODE>BrowseInterval</CODE></A> value.
797Otherwise printers and classes will disappear from client systems
798between updates.</P>
799
800
801<H2 CLASS="title"><A NAME="BrowseWebIF">BrowseWebIF</A></H2>
802
803<H3>Examples</H3>
804
805<PRE CLASS="command">
806BrowseWebIF On
807BrowseWebIF Off
808</PRE>
809
810<H3>Description</H3>
811
812<P>The <CODE>BrowseWebIF</CODE> directive controls whether the CUPS web
813interface is advertised via DNS-SD. The default setting is
814<CODE>Off</CODE>.</P>
815
816
817<H2 CLASS="title"><A NAME="Browsing">Browsing</A></H2>
818
819<H3>Examples</H3>
820
821<PRE CLASS="command">
822Browsing On
823Browsing Off
824</PRE>
825
826<H3>Description</H3>
827
828<P>The <CODE>Browsing</CODE> directive controls whether or not
829network printer browsing is enabled. The default setting is
830<CODE>@CUPS_BROWSING@</CODE>.</P>
831
832<P>This directive does not enable sharing of local printers by
833itself; you must also use the <A
834HREF="#BrowseAddress"><CODE>BrowseAddress</CODE></A> or <A
835HREF="#BrowseProtocols"><CODE>BrowseProtocols</CODE></A>
836directives to advertise local printers to other systems.</P>
837
838<BLOCKQUOTE><B>Note:</B>
839
840<P>If you are using HP-UX 10.20 and a subnet that is not 24,
84116, or 8 bits, printer browsing (and in fact all broadcast
842reception) will not work. This problem appears to be fixed in
843HP-UX 11.0.</P>
844
845</BLOCKQUOTE>
846
847
848<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.7</SPAN><A NAME="Classification">Classification</A></H2>
849
850<H3>Examples</H3>
851
852<PRE CLASS="command">
853Classification
854Classification classified
855Classification confidential
856Classification secret
857Classification topsecret
858Classification unclassified
859</PRE>
860
861<H3>Description</H3>
862
863<P>The <CODE>Classification</CODE> directive sets the
864classification level on the server. When this option is set, at
865least one of the banner pages is forced to the classification
866level, and the classification is placed on each page of output.
867The default is no classification level.</P>
868
869
870<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.10</SPAN><A NAME="ClassifyOverride">ClassifyOverride</A></H2>
871
872<H3>Examples</H3>
873
874<PRE CLASS="command">
875ClassifyOverride Yes
876ClassifyOverride No
877</PRE>
878
879<H3>Description</H3>
880
881<P>The <CODE>ClassifyOverride</CODE> directive specifies whether
882users can override the default classification level on the
883server. When the server classification is set, users can change
884the classification using the <CODE>job-sheets</CODE> option and
885can choose to only print one security banner before or after the
886job. If the <CODE>job-sheets</CODE> option is set to
887<CODE>none</CODE> then the server default classification is
888used.</P>
889
890<P>The default is to not allow classification overrides.</P>
891
892
893<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.15</SPAN><A NAME="ConfigFilePerm">ConfigFilePerm</A></H2>
894
895<H3>Examples</H3>
896
897<PRE CLASS="command">
898ConfigFilePerm 0644
899ConfigFilePerm 0640
900</PRE>
901
902<H3>Description</H3>
903
904<P>The <CODE>ConfigFilePerm</CODE> directive specifies the
905permissions to use when writing configuration files. The default
906is @CUPS_CONFIG_FILE_PERM@.</P>
907
908
909<H2 CLASS="title"><A NAME="DataDir">DataDir</A></H2>
910
911<H3>Examples</H3>
912
913<PRE CLASS="command">
914DataDir /usr/share/cups
915</PRE>
916
917<H3>Description</H3>
918
919<P>The <CODE>DataDir</CODE> directive sets the directory to use
920for data files.</P>
921
922
923<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="DefaultAuthType">DefaultAuthType</A></H2>
924
925<H3>Examples</H3>
926
927<PRE CLASS="command">
928DefaultAuthType Basic
929DefaultAuthType BasicDigest
930DefaultAuthType Digest
931DefaultAuthType Negotiate
932</PRE>
933
934<H3>Description</H3>
935
936<P>The <CODE>DefaultAuthType</CODE> directive specifies the type
937of authentication to use for IPP operations that require a
938username. The default is <CODE>Basic</CODE>.</P>
939
940
941<H2 CLASS="title"><A NAME="DefaultCharset">DefaultCharset</A></H2>
942
943<H3>Examples</H3>
944
945<PRE CLASS="command">
946DefaultCharset utf-8
947DefaultCharset iso-8859-1
948DefaultCharset windows-1251
949</PRE>
950
951<H3>Description</H3>
952
953<P>The <CODE>DefaultCharset</CODE> directive sets the default
954character set to use for client connections. The default
955character set is <CODE>utf-8</CODE> but is overridden by the
956character set for the language specified by the client or the
957<CODE>DefaultLanguage</CODE> directive.</P>
958
959
960<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="DefaultEncryption">DefaultEncryption</A></H2>
961
962<H3>Examples</H3>
963
964<PRE CLASS="command">
965DefaultEncryption Never
966DefaultEncryption IfRequested
967DefaultEncryption Required
968</PRE>
969
970<H3>Description</H3>
971
972<P>The <CODE>DefaultEncryption</CODE> directive specifies the
973type of encryption to use when performing authentication. The
974default is <CODE>Required</CODE>.</P>
975
976
977<H2 CLASS="title"><A NAME="DefaultLanguage">DefaultLanguage</A></H2>
978
979<H3>Examples</H3>
980
981<PRE CLASS="command">
982DefaultLanguage de
983DefaultLanguage en
984DefaultLanguage es
985DefaultLanguage fr
986DefaultLanguage it
987</PRE>
988
989<H3>Description</H3>
990
991<P>The <CODE>DefaultLanguage</CODE> directive specifies the
992default language to use for client connections. Setting the
993default language also sets the default character set if a
994language localization file exists for it. The default language
995is "en" for English.</P>
996
997
998<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.4</SPAN><A NAME="DefaultPaperSize">DefaultPaperSize</A></H2>
999
1000<H3>Examples</H3>
1001
1002<PRE CLASS="command">
1003DefaultPaperSize Letter
1004DefaultPaperSize A4
1005DefaultPaperSize Auto
1006DefaultPaperSize None
1007</PRE>
1008
1009<H3>Description</H3>
1010
1011<P>The <CODE>DefaultPaperSize</CODE> directive specifies the default paper
1012size to use when creating new printers. The default is <CODE>Auto</CODE>
1013which uses a paper size appropriate for the system default locale. A value
1014of <CODE>None</CODE> tells the scheduler to not set the default paper
1015size.</P>
1016
1017
1018<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="DefaultPolicy">DefaultPolicy</A></H2>
1019
1020<H3>Examples</H3>
1021
1022<PRE CLASS="command">
1023DefaultPolicy default
1024DefaultPolicy foo
1025</PRE>
1026
1027<H3>Description</H3>
1028
1029<P>The <CODE>DefaultPolicy</CODE> directive specifies the default
1030policy to use for IPP operation. The default is
1031<CODE>default</CODE>.</P>
1032
1033
1034<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="DefaultShared">DefaultShared</A></H2>
1035
1036<H3>Examples</H3>
1037
1038<PRE CLASS="command">
1039DefaultShared yes
1040DefaultShared no
1041</PRE>
1042
1043<H3>Description</H3>
1044
1045<P>The <CODE>DefaultShared</CODE> directive specifies whether
1046printers are shared (published) by default. The default is
1047<CODE>@CUPS_DEFAULT_SHARED@</CODE>.</P>
1048
1049
1050<H2 CLASS="title"><A NAME="Deny">Deny</A></H2>
1051
1052<H3>Examples</H3>
1053
1054<PRE CLASS="command">
1055&lt;Location /path&gt;
1056 ..
1057 Deny from All
1058 Deny from None
1059 Deny from *.domain.com
1060 Deny from .domain.com
1061 Deny from host.domain.com
1062 Deny from nnn.*
1063 Deny from nnn.nnn.*
1064 Deny from nnn.nnn.nnn.*
1065 Deny from nnn.nnn.nnn.nnn
1066 Deny from nnn.nnn.nnn.nnn/mm
1067 Deny from nnn.nnn.nnn.nnn/mmm.mmm.mmm.mmm
1068 Deny from xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx
1069 Deny from @LOCAL
1070 Deny from @IF(name)
1071&lt;/Location&gt;
1072</PRE>
1073
1074<H3>Description</H3>
1075
1076<P>The <CODE>Deny</CODE> directive specifies a hostname, IP
1077address, or network that is denied access to the server.
1078<CODE>Deny</CODE> directives are cummulative, so multiple
1079<CODE>Deny</CODE> directives can be used to allow access for
1080multiple hosts or networks. The <CODE>/mm</CODE> notation
1081specifies a CIDR netmask, a shown in <A HREF="TABLE1">Table
10821</A>.</P>
1083
1084<P>The <CODE>@LOCAL</CODE> name will deny access from all local
1085interfaces. The <CODE>@IF(name)</CODE> name will deny access from
1086the named interface. In both cases, CUPS only denies access from
1087the network that the interface(s) are configured for - requests
1088arriving on the interface from a foreign network will
1089<em>not</em> be denied.</P>
1090
1091<P>The <CODE>Deny</CODE> directive must appear inside a <A
1092HREF="#Location"><CODE>Location</CODE></A> or <A
1093HREF="#Limit"><CODE>Limit</CODE></A> section.</P>
1094
1095
1096<H2 CLASS="title"><A NAME="DirtyCleanInterval">DirtyCleanInterval</A></H2>
1097
1098<H3>Examples</H3>
1099
1100<PRE CLASS="command">
1101DirtyCleanInterval 30
1102DirtyCleanInterval 0
1103</PRE>
1104
1105<H3>Description</H3>
1106
1107<P>The <CODE>DirtyCleanInterval</CODE> directive specifies the number of
1108seconds to wait before updating configuration and state files for printers,
1109classes, subscriptions, and jobs. The default is 30 seconds.</P>
1110
1111
1112<H2 CLASS="title"><A NAME="DocumentRoot">DocumentRoot</A></H2>
1113
1114<H3>Examples</H3>
1115
1116<PRE CLASS="command">
1117DocumentRoot /usr/share/doc/cups
1118DocumentRoot /foo/bar/doc/cups
1119</PRE>
1120
1121<H3>Description</H3>
1122
1123<P>The <CODE>DocumentRoot</CODE> directive specifies the location
1124of web content for the HTTP server in CUPS. If an absolute path
1125is not specified then it is assumed to be relative to the <A
1126HREF="#ServerRoot"><CODE>ServerRoot</CODE></A> directory. The
1127default directory is <VAR>@CUPS_DOCROOT@</VAR>.</P>
1128
1129<P>Documents are first looked up in a sub-directory for the
1130primary language requested by the client (e.g.
1131<VAR>@CUPS_DOCROOT@/fr/...</VAR>) and then directly under
1132the <CODE>DocumentRoot</CODE> directory (e.g.
1133<VAR>@CUPS_DOCROOT@/...</VAR>), so it is possible to
1134localize the web content by providing subdirectories for each
1135language needed.</P>
1136
1137
1138<H2 CLASS="title"><A NAME="Encryption">Encryption</A></H2>
1139
1140<H3>Examples</H3>
1141
1142<PRE CLASS="command">
1143&lt;Location /path&gt;
1144 ...
1145 Encryption Never
1146 Encryption IfRequested
1147 Encryption Required
1148&lt;/Location&gt;
1149</PRE>
1150
1151<H3>Description</H3>
1152
1153<P>The <CODE>Encryption</CODE> directive must appear instead a <A
1154HREF="#Location"><CODE>Location</CODE></A> or <A
1155HREF="#Limit"><CODE>Limit</CODE></A> section and specifies the
1156encryption settings for that location. The default setting is
1157<CODE>IfRequested</CODE> for all locations.</P>
1158
1159
1160<H2 CLASS="title"><A NAME="ErrorLog">ErrorLog</A></H2>
1161
1162<H3>Examples</H3>
1163
1164<PRE CLASS="command">
1165ErrorLog /var/log/cups/error_log
1166ErrorLog /var/log/cups/error_log-%s
1167ErrorLog syslog
1168</PRE>
1169
1170<H3>Description</H3>
1171
1172<P>The <CODE>ErrorLog</CODE> directive sets the name of the error
1173log file. If the filename is not absolute then it is assumed to
1174be relative to the <A
1175HREF="#ServerRoot"><CODE>ServerRoot</CODE></A> directory. The
1176default error log file is <VAR>@CUPS_LOGDIR@/error_log</VAR>.</P>
1177
1178<P>The server name can be included in the filename by using
1179<CODE>%s</CODE> in the name.</P>
1180
1181<P>The special name "syslog" can be used to send the error
1182information to the system log instead of a plain file.</P>
1183
1184
1185<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.3</SPAN><A NAME="ErrorPolicy">ErrorPolicy</A></H2>
1186
1187<H3>Examples</H3>
1188
1189<PRE CLASS="command">
1190ErrorPolicy abort-job
1191ErrorPolicy retry-job
1192ErrorPolicy stop-printer
1193</PRE>
1194
1195<H3>Description</H3>
1196
1197<P>The <CODE>ErrorPolicy</CODE> directive defines the default policy that
1198is used when a backend is unable to send a print job to the
1199printer.</P>
1200
1201<P>The following values are supported:</P>
1202
1203<UL>
1204
1205 <LI><CODE>abort-job</CODE> - Abort the job and proceed
1206 with the next job in the queue</LI>
1207
1208 <LI><CODE>retry-job</CODE> - Retry the job after waiting
1209 for N seconds; the <VAR>cupsd.conf</VAR> <A
1210 HREF="#JobRetryInterval"><CODE>JobRetryInterval</CODE></A>
1211 directive controls the value of N</LI>
1212
1213 <LI><CODE>retry-this-job</CODE> - Retry the current job immediately
1214 and indefinitely.</LI>
1215
1216 <LI><CODE>stop-printer</CODE> - Stop the printer and keep
1217 the job for future printing; this is the default
1218 value</LI>
1219
1220</UL>
1221
1222
1223
1224<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.4</SPAN><A NAME="FatalErrors">FatalErrors</A></H2>
1225
1226<H3>Examples</H3>
1227
1228<PRE CLASS="command">
1229FatalErrors none
1230FatalErrors all
1231FatalErrors browse
1232FatalErrors config
1233FatalErrors listen
1234FatalErrors log
1235FatalErrors permissions
1236FatalErrors all -permissions
1237FatalErrors config permissions log
1238</PRE>
1239
1240<H3>Description</H3>
1241
1242<P>The <CODE>FatalErrors</CODE> directive determines whether certain kinds of
1243errors are fatal. The following kinds of errors are currently recognized:</P>
1244
1245<UL>
1246
1247 <LI><CODE>none</CODE> - No errors are fatal</LI>
1248
1249 <LI><CODE>all</CODE> - All of the errors below are fatal</LI>
1250
1251 <LI><CODE>browse</CODE> - Browsing initialization errors are fatal,
1252 for example failed binding to the CUPS browse port or failed connections
1253 to LDAP servers</LI>
1254
1255 <LI><CODE>config</CODE> - Configuration file syntax errors are
1256 fatal</LI>
1257
1258 <LI><CODE>listen</CODE> - Listen or Port errors are fatal, except for
1259 IPv6 failures on the loopback or "any" addresses</LI>
1260
1261 <LI><CODE>log</CODE> - Log file creation or write errors are fatal</LI>
1262
1263 <LI><CODE>permissions</CODE> - Bad startup file permissions are
1264 fatal, for example shared SSL certificate and key files with world-
1265 read permissions</LI>
1266
1267</UL>
1268
1269<P>Multiple errors can be listed, and the form "-kind" can be used with
1270<CODE>all</CODE> to remove specific kinds of errors. The default setting is
1271<CODE>@CUPS_FATAL_ERRORS@</CODE>.</P>
1272
1273
1274<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.18</SPAN><A NAME="FileDevice">FileDevice</A></H2>
1275
1276<H3>Examples</H3>
1277
1278<PRE CLASS="command">
1279FileDevice Yes
1280FileDevice No
1281</PRE>
1282
1283<H3>Description</H3>
1284
1285<P>The <CODE>FileDevice</CODE> directive determines whether the
1286scheduler allows new printers to be added using device URIs of
1287the form <CODE>file:/filename</CODE>. File devices are most often
1288used to test new printer drivers and do not support raw file
1289printing.</P>
1290
1291<P>The default setting is <CODE>No</CODE>.</P>
1292
1293<BLOCKQUOTE><B>Note:</B>
1294
1295<P>File devices are managed by the scheduler. Since the
1296scheduler normally runs as the root user, file devices
1297can be used to overwrite system files and potentially
1298gain unauthorized access to the system. If you must
1299create printers using file devices, we recommend that
1300you set the <CODE>FileDevice</CODE> directive to
1301<CODE>Yes</CODE> for only as long as you need to add the
1302printers to the system, and then reset the directive to
1303<CODE>No</CODE>.</P>
1304
1305</BLOCKQUOTE>
1306
1307
1308<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.3</SPAN><A NAME="FilterLimit">FilterLimit</A></H2>
1309
1310<H3>Examples</H3>
1311
1312<PRE CLASS="command">
1313FilterLimit 0
1314FilterLimit 200
1315FilterLimit 1000
1316</PRE>
1317
1318<H3>Description</H3>
1319
1320<P>The <CODE>FilterLimit</CODE> directive sets the maximum cost
1321of all running job filters. It can be used to limit the number of
1322filter programs that are run on a server to minimize disk,
1323memory, and CPU resource problems. A limit of 0 disables filter
1324limiting.</P>
1325
1326<P>An average print to a non-PostScript printer needs a filter
1327limit of about 200. A PostScript printer needs about half that
1328(100). Setting the limit below these thresholds will effectively
1329limit the scheduler to printing a single job at any time.</P>
1330
1331<P>The default limit is 0.</P>
1332
1333
1334<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.16</SPAN><A NAME="FilterNice">FilterNice</A></H2>
1335
1336<H3>Examples</H3>
1337
1338<PRE CLASS="command">
1339FilterNice 0
1340FilterNice 10
1341FilterNice 19
1342</PRE>
1343
1344<H3>Description</H3>
1345
1346<P>The <CODE>FilterNice</CODE> directive sets the <B>nice(1)</B>
1347value to assign to filter processes. The nice value ranges from
13480, the highest priority, to 19, the lowest priority. The default
1349is 0.</P>
1350
1351
1352<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.3</SPAN><A NAME="FontPath">FontPath</A></H2>
1353
1354<H3>Examples</H3>
1355
1356<PRE CLASS="command">
1357FontPath /foo/bar/fonts
1358FontPath /usr/share/cups/fonts:/foo/bar/fonts
1359</PRE>
1360
1361<H3>Description</H3>
1362
1363<P>The <CODE>FontPath</CODE> directive specifies the font path to
1364use when searching for fonts. The default font path is
1365<CODE>/usr/share/cups/fonts</CODE>.</P>
1366
1367
1368<H2 CLASS="title"><A NAME="Group">Group</A></H2>
1369
1370<H3>Examples</H3>
1371
1372<PRE CLASS="command">
1373Group lp
1374Group nobody
1375</PRE>
1376
1377<H3>Description</H3>
1378
1379<P>The <CODE>Group</CODE> directive specifies the UNIX group that
1380filter and CGI programs run as. The default group is
1381system-specific but is usually <CODE>lp</CODE> or
1382<CODE>nobody</CODE>.</P>
1383
1384
1385<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.10</SPAN><A NAME="HideImplicitMembers">HideImplicitMembers</A></H2>
1386
1387<H3>Examples</H3>
1388
1389<PRE CLASS="command">
1390HideImplicitMembers Yes
1391HideImplicitMembers No
1392</PRE>
1393
1394<H3>Description</H3>
1395
1396<P>The <CODE>HideImplicitMembers</CODE> directive controls
1397whether the individual printers in an implicit class are hidden
1398from the user. The default is <CODE>Yes</CODE>.</P>
1399
1400<P><A HREF="#ImplicitClasses"><CODE>ImplicitClasses</CODE></A>
1401must be enabled for this directive to have any effect.</P>
1402
1403
1404<H2 CLASS="title"><A NAME="HostNameLookups">HostNameLookups</A></H2>
1405
1406<H3>Examples</H3>
1407
1408<PRE CLASS="command">
1409HostNameLookups On
1410HostNameLookups Off
1411HostNameLookups Double
1412</PRE>
1413
1414<H3>Description</H3>
1415
1416<P>The <CODE>HostNameLookups</CODE> directive controls whether or
1417not CUPS looks up the hostname for connecting clients. The
1418<CODE>Double</CODE> setting causes CUPS to verify that the
1419hostname resolved from the address matches one of the addresses
1420returned for that hostname. <CODE>Double</CODE> lookups also
1421prevent clients with unregistered addresses from connecting to
1422your server.</P>
1423
1424<P>The default is <CODE>Off</CODE> to avoid the potential server
1425performance problems with hostname lookups. Set this option to
1426<CODE>On</CODE> or <CODE>Double</CODE> only if absolutely
1427required.</P>
1428
1429
1430<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.10</SPAN><A NAME="ImplicitAnyClasses">ImplicitAnyClasses</A></H2>
1431
1432<H3>Examples</H3>
1433
1434<PRE CLASS="command">
1435ImplicitAnyClasses On
1436ImplicitAnyClasses Off
1437</PRE>
1438
1439<H3>Description</H3>
1440
1441<P>The <CODE>ImplicitAnyClasses</CODE> directive controls
1442whether implicit classes for local and remote printers are
1443created with the name <CODE>AnyPrinter</CODE>. The default
1444setting is <CODE>Off</CODE>.</P>
1445
1446<P><A HREF="#ImplicitClasses"><CODE>ImplicitClasses</CODE></A>
1447must be enabled for this directive to have any effect.</P>
1448
1449
1450<H2 CLASS="title"><A NAME="ImplicitClasses">ImplicitClasses</A></H2>
1451
1452<H3>Examples</H3>
1453
1454<PRE CLASS="command">
1455ImplicitClasses On
1456ImplicitClasses Off
1457</PRE>
1458
1459<H3>Description</H3>
1460
1461<P>The <CODE>ImplicitClasses</CODE> directive controls whether
1462implicit classes are created based upon the available network
1463printers and classes. The default setting is
1464<CODE>@CUPS_IMPLICIT_CLASSES@</CODE> but is automatically turned
1465<CODE>Off</CODE> if <A HREF="#Browsing"><CODE>Browsing</CODE></A> is turned
1466<CODE>Off</CODE>.</P>
1467
1468
1469<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.9</SPAN><A NAME="Include">Include</A></H2>
1470
1471<H3>Examples</H3>
1472
1473<PRE CLASS="command">
1474Include filename
1475Include /foo/bar/filename
1476</PRE>
1477
1478<H3>Description</H3>
1479
1480<P>The <CODE>Include</CODE> directive includes the named file in
1481the <CODE>cupsd.conf</CODE> file. If no leading path is provided,
1482the file is assumed to be relative to the <A
1483HREF="#ServerRoot"><CODE>ServerRoot</CODE></A> directory.</P>
1484
1485
1486<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="JobRetryInterval">JobRetryInterval</A></H2>
1487
1488<H3>Examples</H3>
1489
1490<PRE CLASS="command">
1491JobRetryInterval 30
1492JobRetryInterval 120
1493</PRE>
1494
1495<H3>Description</H3>
1496
1497<P>The <CODE>JobRetryInterval</CODE> directive specifies the
1498number of seconds to wait before retrying a job. This is
1499typically used for fax queues but can also be used with normal
1500print queues whose error policy is <CODE>retry-job</CODE>. The
1501default is 30 seconds.</P>
1502
1503
1504<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.4</SPAN><A NAME="JobKillDelay">JobKillDelay</A></H2>
1505
1506<H3>Examples</H3>
1507
1508<PRE CLASS="command">
1509JobKillDelay 30
1510JobKillDelay 120
1511</PRE>
1512
1513<H3>Description</H3>
1514
1515<P>The <CODE>JobKillDelay</CODE> directive specifies the number of seconds to
1516wait before killing the filters and backend associated with a canceled or held
1517job. The default is 30 seconds.</P>
1518
1519
1520<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="JobRetryLimit">JobRetryLimit</A></H2>
1521
1522<H3>Examples</H3>
1523
1524<PRE CLASS="command">
1525JobRetryLimit 5
1526JobRetryLimit 50
1527</PRE>
1528
1529<H3>Description</H3>
1530
1531<P>The <CODE>JobRetryLimit</CODE> directive specifies the maximum
1532number of times the scheduler will try to print a job. This is
1533typically used for fax queues but can also be used with normal
1534print queues whose error policy is <CODE>retry-job</CODE>. The
1535default is 5 times.</P>
1536
1537
1538<H2 CLASS="title"><A NAME="KeepAlive">KeepAlive</A></H2>
1539
1540<H3>Examples</H3>
1541
1542<PRE CLASS="command">
1543KeepAlive On
1544KeepAlive Off
1545</PRE>
1546
1547<H3>Description</H3>
1548
1549<P>The <CODE>KeepAlive</CODE> directive controls whether or not
1550to support persistent HTTP connections. The default is
1551<CODE>On</CODE>.</P>
1552
1553<P>HTTP/1.1 clients automatically support persistent connections,
1554while HTTP/1.0 clients must specifically request them using the
1555<CODE>Keep-Alive</CODE> attribute in the <CODE>Connection:</CODE>
1556field of each request.</P>
1557
1558
1559<H2 CLASS="title"><A NAME="KeepAliveTimeout">KeepAliveTimeout</A></H2>
1560
1561<H3>Examples</H3>
1562
1563<PRE CLASS="command">
1564KeepAliveTimeout 60
1565KeepAliveTimeout 30
1566</PRE>
1567
1568<H3>Description</H3>
1569
1570<P>The <CODE>KeepAliveTimeout</CODE> directive controls how long
1571a persistent HTTP connection will remain open after the last
1572request. The default is 30 seconds.</P>
1573
1574
1575<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.7</SPAN><A NAME="Limit">Limit (Location)</A></H2>
1576
1577<H3>Examples</H3>
1578
1579<PRE CLASS="command">
1580&lt;Location /path&gt;
1581 &lt;Limit GET POST&gt;
1582 ...
1583 &lt;/Limit&gt;
1584
1585 &lt;Limit ALL&gt;
1586 ...
1587 &lt;/Limit&gt;
1588&lt;/Location&gt;
1589</PRE>
1590
1591<H3>Description</H3>
1592
1593<P>The <CODE>Limit</CODE> directive groups access control
1594directives for specific types of HTTP requests and must appear
1595inside a <A HREF="#Location"><CODE>Location</CODE></A> section.
1596Access can be limited for individual request types
1597(<CODE>DELETE</CODE>, <CODE>GET</CODE>, <CODE>HEAD</CODE>,
1598<CODE>OPTIONS</CODE>, <CODE>POST</CODE>, <CODE>PUT</CODE>, and
1599<CODE>TRACE</CODE>) or for all request types (<CODE>ALL</CODE>).
1600The request type names are case-sensitive for compatibility with
1601Apache.</P>
1602
1603
1604<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="LimitIPP">Limit (Policy)</A></H2>
1605
1606<H3>Examples</H3>
1607
1608<PRE CLASS="command">
1609&lt;Policy name&gt;
1610 &lt;Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer&gt;
1611 ...
1612 &lt;/Limit&gt;
1613
1614 &lt;Limit All&gt;
1615 ...
1616 &lt;/Limit&gt;
1617&lt;/Policy&gt;
1618</PRE>
1619
1620<H3>Description</H3>
1621
1622<P>When included in <A HREF="#Policy"><CODE>Policy</CODE></A>
1623sections, the <CODE>Limit</CODE> directive groups access control
1624directives for specific IPP operations. Multiple operations can
1625be listed, separated by spaces. Table 2 lists the supported
1626operations.</P>
1627
1628<DIV CLASS="table"><TABLE SUMMARY="Supported IPP Operations">
1629<CAPTION>Table 2: <A NAME="TABLE2">Supported IPP Operations</A></CAPTION>
1630<THEAD>
1631<TR>
1632 <TH>Operation Name</TH>
1633 <TH>Description</TH>
1634</TR>
1635</THEAD>
1636<TBODY>
1637<TR>
1638 <TD>All</TD>
1639 <TD>All operations - used as the default limit for
1640 operations that are not listed</TD>
1641</TR>
1642<TR>
1643 <TD>Cancel-Job</TD>
1644 <TD>Cancel a job</TD>
1645</TR>
1646<TR>
1647 <TD>Cancel-Subscription</TD>
1648 <TD>Cancel a subscription</TD>
1649</TR>
1650<TR>
1651 <TD>Create-Job</TD>
1652 <TD>Create a new, empty job</TD>
1653</TR>
1654<TR>
1655 <TD>Create-Job-Subscription</TD>
1656 <TD>Creates a notification subscription on a job</TD>
1657</TR>
1658<TR>
1659 <TD>Create-Printer-Subscription</TD>
1660 <TD>Creates a notification subscription on a printer</TD>
1661</TR>
1662<TR>
1663 <TD>CUPS-Accept-Jobs</TD>
1664 <TD>Sets the printer-is-accepting-jobs value for a printer to true</TD>
1665</TR>
1666<TR>
1667 <TD>CUPS-Add-Modify-Class</TD>
1668 <TD>Adds or modifies a class</TD>
1669</TR>
1670<TR>
1671 <TD>CUPS-Add-Modify-Printer</TD>
1672 <TD>Adds or modifies a printer</TD>
1673</TR>
1674<TR>
1675 <TD>CUPS-Authenticate-Job</TD>
1676 <TD>Authenticates a job for printing</TD>
1677</TR>
1678<TR>
1679 <TD>CUPS-Delete-Class</TD>
1680 <TD>Deletes a class</TD>
1681</TR>
1682<TR>
1683 <TD>CUPS-Delete-Printer</TD>
1684 <TD>Deletes a printer</TD>
1685</TR>
1686<TR>
1687 <TD>CUPS-Get-Classes</TD>
1688 <TD>Gets a list of classes</TD>
1689</TR>
1690<TR>
1691 <TD>CUPS-Get-Default</TD>
1692 <TD>Gets the (network/server) default printer or class</TD>
1693</TR>
1694<TR>
1695 <TD>CUPS-Get-Devices</TD>
1696 <TD>Gets a list of available devices</TD>
1697</TR>
1698<TR>
1699 <TD>CUPS-Get-PPDs</TD>
1700 <TD>Gets a list of available manufacturers or drivers</TD>
1701</TR>
1702<TR>
1703 <TD>CUPS-Get-Printers</TD>
1704 <TD>Gets a list of printers and/or classes</TD>
1705</TR>
1706<TR>
1707 <TD>CUPS-Move-Job</TD>
1708 <TD>Moves a job to a new destination</TD>
1709</TR>
1710<TR>
1711 <TD>CUPS-Reject-Jobs</TD>
1712 <TD>Sets the printer-is-accepting-jobs value for a printer to false</TD>
1713</TR>
1714<TR>
1715 <TD>CUPS-Set-Default</TD>
1716 <TD>Sets the network/server default printer or class</TD>
1717</TR>
1718<TR>
1719 <TD>Disable-Printer</TD>
1720 <TD>Sets the printer-state value for a printer to stopped</TD>
1721</TR>
1722<TR>
1723 <TD>Enable-Printer</TD>
1724 <TD>Sets the printer-state value for a printer to idle/processing</TD>
1725</TR>
1726<TR>
1727 <TD>Get-Job-Attributes</TD>
1728 <TD>Gets information about a job</TD>
1729</TR>
1730<TR>
1731 <TD>Get-Jobs</TD>
1732 <TD>Gets a list of jobs</TD>
1733</TR>
1734<TR>
1735 <TD>Get-Notifications</TD>
1736 <TD>Gets a list of events</TD>
1737</TR>
1738<TR>
1739 <TD>Get-Printer-Attributes</TD>
1740 <TD>Gets informaion about a printer or class</TD>
1741</TR>
1742<TR>
1743 <TD>Get-Subscription-Attributes</TD>
1744 <TD>Gets informaion about a notification subscription</TD>
1745</TR>
1746<TR>
1747 <TD>Get-Subscriptions</TD>
1748 <TD>Gets a list of notification subscriptions</TD>
1749</TR>
1750<TR>
1751 <TD>Hold-Job</TD>
1752 <TD>Holds a job for printing</TD>
1753</TR>
1754<TR>
1755 <TD>Pause-Printer</TD>
1756 <TD>Sets the printer-state value for a printer to stopped</TD>
1757</TR>
1758<TR>
1759 <TD>Print-Job</TD>
1760 <TD>Creates a job with a single file for printing</TD>
1761</TR>
1762<TR>
1763 <TD>Purge-Jobs</TD>
1764 <TD>Removes all jobs from a printer</TD>
1765</TR>
1766<TR>
1767 <TD>Release-Job</TD>
1768 <TD>Releases a previously held job for printing</TD>
1769</TR>
1770<TR>
1771 <TD>Renew-Subscription</TD>
1772 <TD>Renews a notification subscription</TD>
1773</TR>
1774<TR>
1775 <TD>Restart-Job</TD>
1776 <TD>Reprints a job</TD>
1777</TR>
1778<TR>
1779 <TD>Resume-Printer</TD>
1780 <TD>Sets the printer-stae value for a printer to idle/processing</TD>
1781</TR>
1782<TR>
1783 <TD>Send-Document</TD>
1784 <TD>Adds a file to an job created with Create-Job</TD>
1785</TR>
1786<TR>
1787 <TD>Set-Job-Attributes</TD>
1788 <TD>Changes job options</TD>
1789</TR>
1790<TR>
1791 <TD>Validate-Job</TD>
1792 <TD>Validates job options prior to printing</TD>
1793</TR>
1794</TBODY>
1795</TABLE></DIV>
1796
1797
1798<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.7</SPAN><A NAME="LimitExcept">LimitExcept</A></H2>
1799
1800<H3>Examples</H3>
1801
1802<PRE CLASS="command">
1803&lt;Location /path&gt;
1804 &lt;LimitExcept GET POST&gt;
1805 ...
1806 &lt;/LimitExcept&gt;
1807&lt;/Location&gt;
1808</PRE>
1809
1810<H3>Description</H3>
1811
1812<P>The <CODE>LimitExcept</CODE> directive groups access control
1813directives for specific types of HTTP requests and must appear
1814inside a <A HREF="#Location"><CODE>Location</CODE></A> section.
1815Unlike the <A HREF="#Limit"><CODE>Limit</CODE></A> directive,
1816<CODE>LimitExcept</CODE> restricts access for all requests
1817<I>except</I> those listed on the <CODE>LimitExcept</CODE>
1818line.</P>
1819
1820
1821<H2 CLASS="title"><A NAME="LimitRequestBody">LimitRequestBody</A></H2>
1822
1823<H3>Examples</H3>
1824
1825<PRE CLASS="command">
1826LimitRequestBody 10485760
1827LimitRequestBody 10m
1828LimitRequestBody 0
1829</PRE>
1830
1831<H3>Description</H3>
1832
1833<P>The <CODE>LimitRequestBody</CODE> directive controls the
1834maximum size of print files, IPP requests, and HTML form data in
1835HTTP POST requests. The default limit is 0 which disables the
1836limit check.</P>
1837
1838
1839<H2 CLASS="title"><A NAME="Listen">Listen</A></H2>
1840
1841<H3>Examples</H3>
1842
1843<PRE CLASS="command">
1844Listen 127.0.0.1:631
1845Listen 192.0.2.1:631
1846Listen [::1]:631
1847Listen *:631
1848</PRE>
1849
1850<H3>Description</H3>
1851
1852<P>The <CODE>Listen</CODE> directive specifies a network address
1853and port to listen for connections. Multiple <CODE>Listen</CODE>
1854directives can be provided to listen on multiple addresses.</P>
1855
1856<P>The <CODE>Listen</CODE> directive is similar to the <A
1857HREF="#Port"><CODE>Port</CODE></A> directive but allows you to
1858restrict access to specific interfaces or networks.</P>
1859
1860
1861<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.7</SPAN><A NAME="ListenBackLog">ListenBackLog</A></H2>
1862
1863<H3>Examples</H3>
1864
1865<PRE CLASS="command">
1866ListenBackLog 5
1867ListenBackLog 10
1868</PRE>
1869
1870<H3>Description</H3>
1871
1872<P>The <CODE>ListenBackLog</CODE> directive sets the maximum
1873number of pending connections the scheduler will allow. This
1874normally only affects very busy servers that have reached the <A
1875HREF="#MaxClients"><CODE>MaxClients</CODE></A> limit, but can
1876also be triggered by large numbers of simultaneous connections.
1877When the limit is reached, the operating system will refuse
1878additional connections until the scheduler can accept the pending
1879ones. The default is the OS-defined default limit, typically
1880either 5 for older operating systems or 128 for newer operating
1881systems.</P>
1882
1883
1884<H2 CLASS="title"><A NAME="Location">Location</A></H2>
1885
1886<H3>Examples</H3>
1887
1888<PRE CLASS="command">
1889&lt;Location /&gt;
1890...
1891&lt;/Location&gt;
1892
1893&lt;Location /admin&gt;
1894...
1895&lt;/Location&gt;
1896
1897&lt;Location /admin/conf&gt;
1898...
1899&lt;/Location&gt;
1900
1901&lt;Location /admin/log&gt;
1902...
1903&lt;/Location&gt;
1904
1905&lt;Location /classes&gt;
1906...
1907&lt;/Location&gt;
1908
1909&lt;Location /classes/name&gt;
1910...
1911&lt;/Location&gt;
1912
1913&lt;Location /jobs&gt;
1914...
1915&lt;/Location&gt;
1916
1917&lt;Location /printers&gt;
1918...
1919&lt;/Location&gt;
1920
1921&lt;Location /printers/name&gt;
1922...
1923&lt;/Location&gt;
1924
1925</PRE>
1926
1927<H3>Description</H3>
1928
1929<P>The <CODE>Location</CODE> directive specifies access control
1930and authentication options for the specified HTTP resource or
1931path. The <A HREF="#Allow"><CODE>Allow</CODE></A>, <A
1932HREF="#AuthType"><CODE>AuthType</CODE></A>, <A
1933HREF="#Deny"><CODE>Deny</CODE></A>, <A
1934HREF="#Encryption"><CODE>Encryption</CODE></A>, <A
1935HREF="#Limit"><CODE>Limit</CODE></A>, <A
1936HREF="#LimitExcept"><CODE>LimitExcept</CODE></A>, <A
1937HREF="#Order"><CODE>Order</CODE></A>, <A
1938HREF="#Require"><CODE>Require</CODE></A>, and <A
1939HREF="#Satisfy"><CODE>Satisfy</CODE></A> directives may all
1940appear inside a location.</P>
1941
1942<P>Note that more specific resources override the less specific
1943ones. So the directives inside the <CODE>/printers/name</CODE>
1944location will override ones from <CODE>/printers</CODE>.
1945Directives inside <CODE>/printers</CODE> will override ones from
1946<CODE>/</CODE>. None of the directives are inherited.</P>
1947
1948<DIV CLASS="table"><TABLE SUMMARY="Common Locations on the Server">
1949<CAPTION>Table 3: <A NAME="TABLE3">Common Locations on the Server</A></CAPTION>
1950<THEAD>
1951<TR><TH>Location</TH><TH>Description</TH></TR>
1952</THEAD>
1953<TBODY>
1954<TR><TD><CODE>/</CODE></TD><TD>The path for all get operations (get-printers, get-jobs, etc.)</TD></TR>
1955<TR><TD><CODE>/admin</CODE></TD><TD>The path for all administration operations (add-printer, delete-printer, start-printer, etc.)</TD></TR>
1956<TR><TD><CODE>/admin/conf</CODE></TD><TD>The path for access to the CUPS configuration files (cupsd.conf, client.conf, etc.)</TD></TR>
1957<TR><TD><CODE>/admin/log</CODE></TD><TD>The path for access to the CUPS log files (access_log, error_log, page_log)</TD></TR>
1958<TR><TD><CODE>/classes</CODE></TD><TD>The path for all classes</TD></TR>
1959<TR><TD><CODE>/classes/name</CODE></TD><TD>The resource for class <CODE>name</CODE></TD></TR>
1960<TR><TD><CODE>/jobs</CODE></TD><TD>The path for all jobs (hold-job, release-job, etc.)</TD></TR>
1961<TR><TD><CODE>/jobs/id</CODE></TD><TD>The resource for job <CODE>id</CODE></TD></TR>
1962<TR><TD><CODE>/printers</CODE></TD><TD>The path for all printers</TD></TR>
1963<TR><TD><CODE>/printers/name</CODE></TD><TD>The path for printer <CODE>name</CODE></TD></TR>
1964<TR><TD><CODE>/printers/name.ppd</CODE></TD><TD>The PPD file path for printer <CODE>name</CODE></TD></TR>
1965</TBODY>
1966</TABLE></DIV>
1967
1968
1969<H2 CLASS="title"><A NAME="LogDebugHistory">LogDebugHistory</A></H2>
1970
1971<H3>Examples</H3>
1972
1973<PRE CLASS="command">
1974LogDebugHistory 0
1975LogDebugHistory 200
1976</PRE>
1977
1978<H3>Description</H3>
1979
1980<P>When <A HREF="#LogLevel"><CODE>LogLevel</CODE></A> is not set to
1981<CODE>debug</CODE> or <CODE>debug2</CODE>, the <CODE>LogDebugHistory</CODE>
1982directive specifies the number of debugging messages that are logged when an
1983error occurs during printing. The default is 200 messages. A value of 0
1984disables debugging history entirely and is not recommended.</P>
1985
1986
1987<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.15</SPAN><A NAME="LogFilePerm">LogFilePerm</A></H2>
1988
1989<H3>Examples</H3>
1990
1991<PRE CLASS="command">
1992LogFilePerm 0644
1993LogFilePerm 0600
1994</PRE>
1995
1996<H3>Description</H3>
1997
1998<P>The <CODE>LogFilePerm</CODE> directive specifies the
1999permissions to use when writing configuration files. The default
2000is @CUPS_LOG_FILE_PERM@.</P>
2001
2002
2003<H2 CLASS="title"><A NAME="LogLevel">LogLevel</A></H2>
2004
2005<H3>Examples</H3>
2006
2007<PRE CLASS="command">
2008LogLevel none
2009LogLevel emerg
2010LogLevel alert
2011LogLevel crit
2012LogLevel error
2013LogLevel warn
2014LogLevel notice
2015LogLevel info
2016LogLevel debug
2017LogLevel debug2
2018</PRE>
2019
2020<H3>Description</H3>
2021
2022<P>The <CODE>LogLevel</CODE> directive specifies the level of
2023logging for the <A HREF="#ErrorLog"><CODE>ErrorLog</CODE></A>
2024file. The following values are recognized (each level logs
2025everything under the preceding levels):</P>
2026
2027<UL>
2028
2029 <LI><CODE>none</CODE> - Log nothing</LI>
2030
2031 <LI><CODE>emerg</CODE> - Log emergency conditions that
2032 prevent the server from running</LI>
2033
2034 <LI><CODE>alert</CODE> - Log alerts that must be handled
2035 immediately</LI>
2036
2037 <LI><CODE>crit</CODE> - Log critical errors that don't
2038 prevent the server from running</LI>
2039
2040 <LI><CODE>error</CODE> - Log general errors</LI>
2041
2042 <LI><CODE>warn</CODE> - Log errors and warnings</LI>
2043
2044 <LI><CODE>notice</CODE> - Log temporary error conditions</LI>
2045
2046 <LI><CODE>info</CODE> - Log all requests and state
2047 changes</LI>
2048
2049 <LI><CODE>debug</CODE> - Log basic debugging
2050 information</LI>
2051
2052 <LI><CODE>debug2</CODE> - Log all debugging
2053 information</LI>
2054
2055</UL>
2056
2057<p>The default <code>LogLevel</code> is <code>@CUPS_LOG_LEVEL@</code>.</p>
2058
2059
2060<H2 CLASS="title"><A NAME="LogTimeFormat">LogTimeFormat</A></H2>
2061
2062<H3>Examples</H3>
2063
2064<PRE CLASS="command">
2065LogTimeFormat standard
2066LogTimeFormat usecs
2067</PRE>
2068
2069<H3>Description</H3>
2070
2071<P>The <CODE>LogTimeFormat</CODE> directive specifies the format used for the
2072date and time in the log files. <CODE>Standard</CODE> uses the standard Apache
2073Common Log Format date and time while <CODE>usecs</CODE> adds microseconds.
2074The default is <CODE>standard</CODE>.</P>
2075
2076
2077<H2 CLASS="title"><A NAME="MaxClients">MaxClients</A></H2>
2078
2079<H3>Examples</H3>
2080
2081<PRE CLASS="command">
2082MaxClients 100
2083MaxClients 1024
2084</PRE>
2085
2086<H3>Description</H3>
2087
2088<P>The <CODE>MaxClients</CODE> directive controls the maximum
2089number of simultaneous clients that will be allowed by the
2090server. The default is 100 clients.</P>
2091
2092<BLOCKQUOTE><B>Note:</B>
2093
2094<P>Since each print job requires a file descriptor for the status
2095pipe, the scheduler internally limits the <CODE>MaxClients</CODE>
2096value to 1/3 of the available file descriptors to avoid possible
2097problems when printing large numbers of jobs.</P>
2098
2099</BLOCKQUOTE>
2100
2101
2102<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.18</SPAN><A NAME="MaxClientsPerHost">MaxClientsPerHost</A></H2>
2103
2104<H3>Examples</H3>
2105
2106<PRE CLASS="command">
2107MaxClientsPerHost 10
2108</PRE>
2109
2110<H3>Description</H3>
2111
2112<P>The <CODE>MaxClientsPerHost</CODE> directive controls the
2113maximum number of simultaneous clients that will be allowed from
2114a single host by the server. The default is the
2115<CODE>MaxClients</CODE> value.</P>
2116
2117<P>This directive provides a small measure of protection against
2118Denial of Service attacks from a single host.</P>
2119
2120
2121<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.16</SPAN><A NAME="MaxCopies">MaxCopies</A></H2>
2122
2123<H3>Examples</H3>
2124
2125<PRE CLASS="command">
2126MaxCopies 100
2127MaxCopies 65535
2128</PRE>
2129
2130<H3>Description</H3>
2131
2132<P>The <CODE>MaxCopies</CODE> directive controls the maximum
2133number of copies that a user can print of a job. The default is
2134@CUPS_MAX_COPIES@ copies.</P>
2135
2136<BLOCKQUOTE><B>Note:</B>
2137
2138<P>Most HP PCL laser printers internally limit the number of
2139copies to 100.</P>
2140
2141</BLOCKQUOTE>
2142
2143
2144
2145<H2 CLASS="title"><A NAME="MaxJobs">MaxJobs</A></H2>
2146
2147<H3>Examples</H3>
2148
2149<PRE CLASS="command">
2150MaxJobs 100
2151MaxJobs 9999
2152MaxJobs 0
2153</PRE>
2154
2155<H3>Description</H3>
2156
2157<P>The <CODE>MaxJobs</CODE> directive controls the maximum number
2158of jobs that are kept in memory. Once the number of jobs reaches
2159the limit, the oldest completed job is automatically purged from
2160the system to make room for the new one. If all of the known jobs
2161are still pending or active then the new job will be
2162rejected.</P>
2163
2164<P>Setting the maximum size to 0 disables this functionality. The
2165default setting is 500.</P>
2166
2167
2168<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.7</SPAN><A NAME="MaxJobsPerPrinter">MaxJobsPerPrinter</A></H2>
2169
2170<H3>Examples</H3>
2171
2172<PRE CLASS="command">
2173MaxJobsPerPrinter 100
2174MaxJobsPerPrinter 9999
2175MaxJobsPerPrinter 0
2176</PRE>
2177
2178<H3>Description</H3>
2179
2180<P>The <CODE>MaxJobsPerPrinter</CODE> directive controls the
2181maximum number of active jobs that are allowed for each printer
2182or class. Once a printer or class reaches the limit, new jobs
2183will be rejected until one of the active jobs is completed,
2184stopped, aborted, or canceled.</P>
2185
2186<P>Setting the maximum to 0 disables this functionality. The
2187default setting is 0.</P>
2188
2189
2190<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.7</SPAN><A NAME="MaxJobsPerUser">MaxJobsPerUser</A></H2>
2191
2192<H3>Examples</H3>
2193
2194<PRE CLASS="command">
2195MaxJobsPerUser 100
2196MaxJobsPerUser 9999
2197MaxJobsPerUser 0
2198</PRE>
2199
2200<H3>Description</H3>
2201
2202<P>The <CODE>MaxJobsPerUser</CODE> directive controls the maximum
2203number of active jobs that are allowed for each user. Once a user
2204reaches the limit, new jobs will be rejected until one of the
2205active jobs is completed, stopped, aborted, or canceled.</P>
2206
2207<P>Setting the maximum to 0 disables this functionality. The
2208default setting is 0.</P>
2209
2210
2211<H2 CLASS="title"><A NAME="MaxLogSize">MaxLogSize</A></H2>
2212
2213<H3>Examples</H3>
2214
2215<PRE CLASS="command">
2216MaxLogSize 1048576
2217MaxLogSize 1m
2218MaxLogSize 0
2219</PRE>
2220
2221<H3>Description</H3>
2222
2223<P>The <CODE>MaxLogSize</CODE> directive controls the maximum
2224size of each log file. Once a log file reaches or exceeds the
2225maximum size it is closed and renamed to <VAR>filename.O</VAR>.
2226This allows you to rotate the logs automatically. The default
2227size is 1048576 bytes (1MB).</P>
2228
2229<P>Setting the maximum size to 0 disables log rotation.</P>
2230
2231
2232<H2 CLASS="title"><SPAN CLASS="info">Deprecated</SPAN><A NAME="MaxRequestSize">MaxRequestSize</A></H2>
2233
2234<H3>Examples</H3>
2235
2236<PRE CLASS="command">
2237MaxRequestSize 10485760
2238MaxRequestSize 10m
2239MaxRequestSize 0
2240</PRE>
2241
2242<H3>Description</H3>
2243
2244<P>The <CODE>MaxRequestSize</CODE> directive controls the maximum
2245size of print files, IPP requests, and HTML form data in HTTP
2246POST requests. The default limit is 0 which disables the limit
2247check.</P>
2248
2249<P><B>This directive is deprecated and will be removed in a
2250future CUPS release.</B> Use the <A
2251HREF="#LimitRequestBody"><CODE>LimitRequestBody</CODE></A>
2252directive instead.</P>
2253
2254
2255<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.4</SPAN><A NAME="MultipleOperationTimeout">MultipleOperationTimeout</A></H2>
2256
2257<H3>Examples</H3>
2258
2259<PRE CLASS="command">
2260MultipleOperationTimeout 60
2261MultipleOperationTimeout 300
2262MultipleOperationTimeout 86400
2263</PRE>
2264
2265<H3>Description</H3>
2266
2267<P>The <CODE>MultipleOperationTimeout</CODE> directive sets the maximum amount
2268of time between files in a multi-file print job. The default is 300 seconds.</P>
2269
2270
2271<H2 CLASS="title"><A NAME="Order">Order</A></H2>
2272
2273<H3>Examples</H3>
2274
2275<PRE CLASS="command">
2276&lt;Location /path&gt;
2277 ...
2278 Order Allow,Deny
2279 Order Deny,Allow
2280&lt;/Location&gt;
2281</PRE>
2282
2283<H3>Description</H3>
2284
2285<P>The <CODE>Order</CODE> directive defines the default access
2286control. The following values are supported:</P>
2287
2288<UL>
2289
2290 <LI><CODE>allow,deny</CODE> - Deny requests by default,
2291 then check the <A HREF="#Allow"><CODE>Allow</CODE></A>
2292 lines followed by the <A
2293 HREF="#Deny"><CODE>Deny</CODE></A> lines</LI>
2294
2295 <LI><CODE>deny,allow</CODE> - Allow requests by default,
2296 then check the <A HREF="#Deny"><CODE>Deny</CODE></A>
2297 lines followed by the <A
2298 HREF="#Allow"><CODE>Allow</CODE></A> lines</LI>
2299
2300</UL>
2301
2302<P>The <CODE>Order</CODE> directive must appear inside a <A
2303HREF="#Location"><CODE>Location</CODE></A> or <A
2304HREF="#Limit"><CODE>Limit</CODE></A> section.</P>
2305
2306
2307<H2 CLASS="title"><A NAME="PageLog">PageLog</A></H2>
2308
2309<H3>Examples</H3>
2310
2311<PRE CLASS="command">
2312PageLog /var/log/cups/page_log
2313PageLog /var/log/cups/page_log-%s
2314PageLog syslog
2315</PRE>
2316
2317<H3>Description</H3>
2318
2319<P>The <CODE>PageLog</CODE> directive sets the name of the page
2320log file. If the filename is not absolute then it is assumed to
2321be relative to the <A
2322HREF="#ServerRoot"><CODE>ServerRoot</CODE></A> directory. The
2323default page log file is <VAR>@CUPS_LOGDIR@/page_log</VAR>.</P>
2324
2325<P>The server name can be included in the filename by using
2326<CODE>%s</CODE> in the name.</P>
2327
2328<P>The special name "syslog" can be used to send the page
2329information to the system log instead of a plain file.</P>
2330
2331
2332<H2 CLASS="title"><A NAME="PageLogFormat">PageLogFormat</A></H2>
2333
2334<H3>Examples</H3>
2335
2336<PRE CLASS="command">
2337PageLogFormat %p %j %u %T %P %C %{job-billing} %{job-originating-host-name} %{job-name} %{media} %{sides}
2338PageLogFormat PAGE %p %j %u %P %C %{job-billing} %{job-originating-host-name}
2339</PRE>
2340
2341<H3>Description</H3>
2342
2343<P>The <CODE>PageLogFormat</CODE> directive sets the format of lines
2344that are logged to the page log file. Sequences beginning with percent (%)
2345characters are replaced with the corresponding information, while all other
2346characters are copied literally. The following percent sequences are
2347recognized:</P>
2348
2349<UL>
2350
2351 <LI><CODE>%%</CODE>: Inserts a single percent character.</LI>
2352
2353 <LI><CODE>%{name}</CODE>: Inserts the value of the specified IPP
2354 attribute.</LI>
2355
2356 <LI><CODE>%C</CODE>: Inserts the number of copies for the current page.</LI>
2357
2358 <LI><CODE>%P</CODE>: Inserts the current page number.</LI>
2359
2360 <LI><CODE>%T</CODE>: Inserts the current date and time in common log
2361 format.</LI>
2362
2363 <LI><CODE>%j</CODE>: Inserts the job ID.</LI>
2364
2365 <LI><CODE>%p</CODE>: Inserts the printer name.</LI>
2366
2367 <LI><CODE>%u</CODE>: Inserts the username.</LI>
2368
2369</UL>
2370
2371<P>The default is "%p %j %u %T %P %C %{job-billing} %{job-originating-host-name} %{job-name} %{media} %{sides}".</P>
2372
2373
2374<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="PassEnv">PassEnv</A></H2>
2375
2376<H3>Examples</H3>
2377
2378<PRE CLASS="command">
2379PassEnv MY_ENV_VARIABLE
2380</PRE>
2381
2382<H3>Description</H3>
2383
2384<P>The <CODE>PassEnv</CODE> directive specifies an environment
2385variable that should be passed to child processes. Normally, the
2386scheduler only passes the <CODE>DYLD_LIBRARY_PATH</CODE>,
2387<CODE>LD_ASSUME_KERNEL</CODE>, <CODE>LD_LIBRARY_PATH</CODE>,
2388<CODE>LD_PRELOAD</CODE>, <CODE>NLSPATH</CODE>,
2389<CODE>SHLIB_PATH</CODE>, <CODE>TZ</CODE>, and <CODE>VGARGS</CODE>
2390environment variables to child processes.</P>
2391
2392
2393<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="Policy">Policy</A></H2>
2394
2395<H3>Examples</H3>
2396
2397<PRE CLASS="command">
2398&lt;Policy name&gt;
2399 &lt;Limit operation ... operation&gt;
2400 ...
2401 &lt;/Limit&gt;
2402 &lt;Limit operation ... operation&gt;
2403 ...
2404 &lt;/Limit&gt;
2405 &lt;Limit All&gt;
2406 ...
2407 &lt;/Limit&gt;
2408&lt;/Policy&gt;
2409</PRE>
2410
2411<H3>Description</H3>
2412
2413<P>The <CODE>Policy</CODE> directive specifies IPP operation
2414access control limits. Each policy contains 1 or more <A
2415HREF="#LimitIPP"><CODE>Limit</CODE></A> sections to set the
2416access control limits for specific operations - user limits,
2417authentication, encryption, and allowed/denied addresses,
2418domains, or hosts. The <CODE>&lt;Limit All&gt;</CODE> section
2419specifies the default access control limits for operations that
2420are not listed.</P>
2421
2422<P>Policies are named and associated with printers via the
2423printer's operation policy setting
2424(<CODE>printer-op-policy</CODE>). The default policy for the
2425scheduler is specified using the <A
2426HREF="#DefaultPolicy"><CODE>DefaultPolicy</CODE></A>
2427directive.</P>
2428
2429
2430<H2 CLASS="title"><A NAME="Port">Port</A></H2>
2431
2432<H3>Examples</H3>
2433
2434<PRE CLASS="command">
2435Port 631
2436Port 80
2437</PRE>
2438
2439<H3>Description</H3>
2440
2441<P>The <CODE>Port</CODE> directive specifies a port to listen on.
2442Multiple <CODE>Port</CODE> lines can be specified to listen on
2443multiple ports. The <CODE>Port</CODE> directive is equivalent to
2444"<CODE>Listen *:nnn</CODE>". The default port is 631.</P>
2445
2446<BLOCKQUOTE><B>Note:</B>
2447
2448<P>On systems that support IPv6, this directive will bind to both
2449the IPv4 and IPv6 wildcard address.</P>
2450
2451</BLOCKQUOTE>
2452
2453
2454<H2 CLASS="title"><A NAME="PreserveJobHistory">PreserveJobHistory</A></H2>
2455
2456<H3>Examples</H3>
2457
2458<PRE CLASS="command">
2459PreserveJobHistory On
2460PreserveJobHistory Off
2461</PRE>
2462
2463<H3>Description</H3>
2464
2465<P>The <CODE>PreserveJobHistory</CODE> directive controls whether
2466the history of completed, canceled, or aborted print jobs is
2467stored on disk.</P>
2468
2469<P>A value of <CODE>On</CODE> (the default) preserves job
2470information until the administrator purges it with the
2471<CODE>cancel</CODE> command.</P>
2472
2473<P>A value of <CODE>Off</CODE> removes the job information as
2474soon as each job is completed, canceled, or aborted.</P>
2475
2476
2477<H2 CLASS="title"><A NAME="PreserveJobFiles">PreserveJobFiles</A></H2>
2478
2479<H3>Examples</H3>
2480
2481<PRE CLASS="command">
2482PreserveJobFiles On
2483PreserveJobFiles Off
2484</PRE>
2485
2486<H3>Description</H3>
2487
2488<P>The <CODE>PreserveJobFiles</CODE> directive controls whether
2489the document files of completed, canceled, or aborted print jobs
2490are stored on disk.</P>
2491
2492<P>A value of <CODE>On</CODE> preserves job files until the
2493administrator purges them with the <CODE>cancel</CODE> command.
2494Jobs can be restarted (and reprinted) as desired until they are
2495purged.</P>
2496
2497<P>A value of <CODE>Off</CODE> (the default) removes the job
2498files as soon as each job is completed, canceled, or aborted.</P>
2499
2500
2501<H2 CLASS="title"><A NAME="Printcap">Printcap</A></H2>
2502
2503<H3>Examples</H3>
2504
2505<PRE CLASS="command">
2506Printcap
2507Printcap /etc/printcap
2508Printcap /etc/printers.conf
2509Printcap /Library/Preferences/org.cups.printers.plist
2510</PRE>
2511
2512<H3>Description</H3>
2513
2514<P>The <CODE>Printcap</CODE> directive controls whether or not a
2515printcap file is automatically generated and updated with a list
2516of available printers. If specified with no value, then no
2517printcap file will be generated. The default is to generate a
2518file named <VAR>@CUPS_DEFAUL_PRINTCAP@</VAR>.</P>
2519
2520<P>When a filename is specified (e.g. <VAR>@CUPS_DEFAULT_PRINTCAP@</VAR>),
2521the printcap file is written whenever a printer is added or
2522removed. The printcap file can then be used by applications that
2523are hardcoded to look at the printcap file for the available
2524printers.</P>
2525
2526
2527<H2 CLASS="title"><A NAME="PrintcapFormat">PrintcapFormat</A></H2>
2528
2529<H3>Examples</H3>
2530
2531<PRE CLASS="command">
2532PrintcapFormat BSD
2533PrintcapFormat Solaris
2534PrintcapFormat plist
2535</PRE>
2536
2537<H3>Description</H3>
2538
2539<P>The <CODE>PrintcapFormat</CODE> directive controls the output format of the
2540printcap file. The default is to generate the plist format on Mac OS X, the
2541Solaris format on Solaris, and the BSD format on other operating systems.</P>
2542
2543
2544<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.13</SPAN><A NAME="PrintcapGUI">PrintcapGUI</A></H2>
2545
2546<H3>Examples</H3>
2547
2548<PRE CLASS="command">
2549PrintGUI /usr/bin/glpoptions
2550</PRE>
2551
2552<H3>Description</H3>
2553
2554<P>The <CODE>PrintcapGUI</CODE> directive sets the program to
2555associate with the IRIX printer GUI interface script which is
2556used by IRIX applications to display printer-specific options.
2557There is no default program.</P>
2558
2559
2560<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.21</SPAN><A NAME="ReloadTimeout">ReloadTimeout</A></H2>
2561
2562<H3>Examples</H3>
2563
2564<PRE CLASS="command">
2565ReloadTimeout 0
2566ReloadTimeout 30
2567</PRE>
2568
2569<H3>Description</H3>
2570
2571<P>The <CODE>ReloadTimeout</CODE> directive specifies the number
2572of seconds the scheduler will wait for active jobs to complete
2573before doing a restart. The default is 30 seconds.</P>
2574
2575
2576<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.3</SPAN><A NAME="RemoteRoot">RemoteRoot</A></H2>
2577
2578<H3>Examples</H3>
2579
2580<PRE CLASS="command">
2581RemoteRoot remroot
2582RemoteRoot root
2583</PRE>
2584
2585<H3>Description</H3>
2586
2587<P>The <CODE>RemoteRoot</CODE> directive sets the username for
2588unauthenticated root requests from remote hosts. The default
2589username is <VAR>remroot</VAR>. Setting <CODE>RemoteRoot</CODE>
2590to <VAR>root</VAR> effectively disables this security
2591mechanism.</P>
2592
2593
2594<H2 CLASS="title"><A NAME="RequestRoot">RequestRoot</A></H2>
2595
2596<H3>Examples</H3>
2597
2598<PRE CLASS="command">
2599RequestRoot /var/spool/cups
2600RequestRoot /foo/bar/spool/cups
2601</PRE>
2602
2603<H3>Description</H3>
2604
2605<P>The <CODE>RequestRoot</CODE> directive sets the directory for
2606incoming IPP requests and HTML forms. If an absolute path is not
2607provided then it is assumed to be relative to the <A
2608HREF="#ServerRoot"><CODE>ServerRoot</CODE></A> directory. The
2609default request directory is <VAR>@CUPS_REQUESTS@</VAR>.</P>
2610
2611
2612<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.7</SPAN><A NAME="Require">Require</A></H2>
2613
2614<H3>Examples</H3>
2615
2616<PRE CLASS="command">
2617&lt;Location /path&gt;
2618 ...
2619 Require group foo bar
2620 Require user john mary
2621 Require valid-user
2622 Require user @groupname
2623 Require user @SYSTEM
2624 Require user @OWNER
2625&lt;/Location&gt;
2626</PRE>
2627
2628<H3>Description</H3>
2629
2630<P>The <CODE>Require</CODE> directive specifies that
2631authentication is required for the resource. The
2632<CODE>group</CODE> keyword specifies that the authenticated user
2633must be a member of one or more of the named groups that
2634follow.</P>
2635
2636<P>The <CODE>user</CODE> keyword specifies that the
2637authenticated user must be one of the named users or groups that
2638follow. Group names are specified using the "@" prefix.</P>
2639
2640<P>The <CODE>valid-user</CODE> keyword specifies that any
2641authenticated user may access the resource.</P>
2642
2643<P>The default is to do no authentication. This directive must
2644appear inside a <A HREF="#Location"><CODE>Location</CODE></A> or
2645<A HREF="#Limit"><CODE>Limit</CODE></A> section.</P>
2646
2647
2648<H2 CLASS="title"><A NAME="RIPCache">RIPCache</A></H2>
2649
2650<H3>Examples</H3>
2651
2652<PRE CLASS="command">
2653RIPCache 8m
2654RIPCache 1g
2655RIPCache 2048k
2656</PRE>
2657
2658<H3>Description</H3>
2659
2660<P>The <CODE>RIPCache</CODE> directive sets the size of the
2661memory cache used by Raster Image Processor ("RIP") filters such
2662as <CODE>imagetoraster</CODE> and <CODE>pstoraster</CODE>. The
2663size can be suffixed with a "k" for kilobytes, "m" for megabytes,
2664or "g" for gigabytes. The default cache size is "8m", or 8
2665megabytes.</P>
2666
2667
2668<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.16</SPAN><A NAME="RootCertDuration">RootCertDuration</A></H2>
2669
2670<H3>Examples</H3>
2671
2672<PRE CLASS="command">
2673RootCertDuration 0
2674RootCertDuration 300
2675</PRE>
2676
2677<H3>Description</H3>
2678
2679<P>The <CODE>RootCertDuration</CODE> directive specifies the
2680number of seconds the <EM>root certificate</EM> remains valid.
2681The scheduler will generate a new certificate as needed when the
2682number of seconds has expired. If set to 0, the root certificate
2683is generated only once on startup or on a restart. The default is
2684300 seconds.</P>
2685
2686
2687<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.7</SPAN><A NAME="Satisfy">Satisfy</A></H2>
2688
2689<H3>Examples</H3>
2690
2691<PRE CLASS="command">
2692&lt;Location /path&gt;
2693 ...
2694 Satisfy all
2695 Satisfy any
2696&lt;/Location&gt;
2697</PRE>
2698
2699<H3>Description</H3>
2700
2701<P>The <CODE>Satisfy</CODE> directive specifies whether all
2702conditions must be satisfied to allow access to the resource. If
2703set to <CODE>all</CODE>, then all authentication and access
2704control conditions must be satified to allow access.</P>
2705
2706<P>Setting <CODE>Satisfy</CODE> to <CODE>any</CODE> allows a user
2707to gain access if the authentication or access control
2708requirements are satisfied. For example, you might require
2709authentication for remote access, but allow local access without
2710authentication.</P>
2711
2712<P>The default is <CODE>all</CODE>. This directive must appear
2713inside a <A HREF="#Location"><CODE>Location</CODE></A> or <A
2714HREF="#Limit"><CODE>Limit</CODE></A> section.</P>
2715
2716
2717<H2 CLASS="title"><A NAME="ServerAdmin">ServerAdmin</A></H2>
2718
2719<H3>Examples</H3>
2720
2721<PRE CLASS="command">
2722ServerAdmin user@host
2723ServerAdmin root@foo.bar.com
2724</PRE>
2725
2726<H3>Description</H3>
2727
2728<P>The <CODE>ServerAdmin</CODE> directive identifies the email
2729address for the administrator on the system. By default the
2730administrator email address is <CODE>root@server</CODE>, where
2731<CODE>server</CODE> is the <A
2732HREF="#ServerName"><CODE>ServerName</CODE></A>.</P>
2733
2734
2735<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.3.10</SPAN><A NAME="ServerAlias">ServerAlias</A></H2>
2736
2737<H3>Examples</H3>
2738
2739<PRE CLASS="command">
2740ServerAlias althost
2741ServerAlias althost.foo.com
2742ServerAlias althost.bar.com
2743ServerAlias *
2744</PRE>
2745
2746<H3>Description</H3>
2747
2748<P>The <CODE>ServerAlias</CODE> directive specifies alternate names that the
2749server is known by. By default it contains a list of all aliases associated
2750with the <A HREF="#ServerName"><CODE>ServerName</CODE></A>. The special name
2751"*" can be used to allow any hostname when accessing CUPS via an external
2752network interfaces.</P>
2753
2754<BLOCKQUOTE><B>Note</B>
2755
2756<P>The <CODE>ServerAlias</CODE> directive is used for HTTP Host header
2757validation when clients connect to the scheduler from external interfaces.
2758Using the special name "*" can expose your system to known browser-based
2759DNS rebinding attacks, even when accessing sites through a firewall. If the
2760auto-discovery of alternate names does not work, we recommend listing each
2761alternate name with a ServerAlias directive instead of using "*".</P>
2762
2763</BLOCKQUOTE>
2764
2765
2766<H2 CLASS="title"><A NAME="ServerBin">ServerBin</A></H2>
2767
2768<H3>Examples</H3>
2769
2770<PRE CLASS="command">
2771ServerBin /usr/lib/cups
2772ServerBin /foo/bar/lib/cups
2773</PRE>
2774
2775<H3>Description</H3>
2776
2777<P>The <CODE>ServerBin</CODE> directive sets the directory for
2778server-run executables. If an absolute path is not provided then
2779it is assumed to be relative to the <A
2780HREF="#ServerRoot"><CODE>ServerRoot</CODE></A> directory. The
2781default executable directory is <VAR>/usr/lib/cups</VAR>,
2782<VAR>/usr/lib32/cups</VAR>, or <VAR>/usr/libexec/cups</VAR>
2783depending on the operating system.</P>
2784
2785
2786<H2 CLASS="title"><A NAME="ServerCertificate">ServerCertificate</A></H2>
2787
2788<H3>Examples</H3>
2789
2790<PRE CLASS="command">
2791ServerCertificate /etc/cups/ssl/server.crt
2792</PRE>
2793
2794<H3>Description</H3>
2795
2796<P>The <CODE>ServerCertificate</CODE> directive specifies the
2797location of the SSL certificate file used by the server when
2798negotiating encrypted connections. The certificate must not be
2799encrypted (password protected) since the scheduler normally runs
2800in the background and will be unable to ask for a password.</P>
2801
2802<P>The default certificate file is
2803<VAR>/etc/cups/ssl/server.crt</VAR>.</P>
2804
2805
2806<H2 CLASS="title"><A NAME="ServerKey">ServerKey</A></H2>
2807
2808<H3>Examples</H3>
2809
2810<PRE CLASS="command">
2811ServerKey /etc/cups/ssl/server.key
2812</PRE>
2813
2814<H3>Description</H3>
2815
2816<P>The <CODE>ServerKey</CODE> directive specifies the location of
2817the SSL private key file used by the server when negotiating
2818encrypted connections.</P>
2819
2820<P>The default key file is
2821<VAR>/etc/cups/ssl/server.crt</VAR>.</P>
2822
2823
2824<H2 CLASS="title"><A NAME="ServerName">ServerName</A></H2>
2825
2826<H3>Examples</H3>
2827
2828<PRE CLASS="command">
2829ServerName foo.domain.com
2830ServerName myserver.domain.com
2831</PRE>
2832
2833<H3>Description</H3>
2834
2835<P>The <CODE>ServerName</CODE> directive specifies the hostname
2836that is reported to clients. By default the server name is the
2837hostname.</P>
2838
2839
2840<H2 CLASS="title"><A NAME="ServerRoot">ServerRoot</A></H2>
2841
2842<H3>Examples</H3>
2843
2844<PRE CLASS="command">
2845ServerRoot /etc/cups
2846ServerRoot /foo/bar/cups
2847</PRE>
2848
2849<H3>Description</H3>
2850
2851<P>The <CODE>ServerRoot</CODE> directive specifies the absolute
2852path to the server configuration and state files. It is also used
2853to resolve relative paths in the <VAR>cupsd.conf</VAR> file. The
2854default server directory is <VAR>/etc/cups</VAR>.</P>
2855
2856
2857<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.1.21</SPAN><A NAME="ServerTokens">ServerTokens</A></H2>
2858
2859<H3>Examples</H3>
2860
2861<PRE CLASS="command">
2862ServerTokens None
2863ServerTokens ProductOnly
2864ServerTokens Major
2865ServerTokens Minor
2866ServerTokens Minimal
2867ServerTokens OS
2868ServerTokens Full
2869</PRE>
2870
2871<H3>Description</H3>
2872
2873<P>The <CODE>ServerTokens</CODE> directive specifies the
2874information that is included in the <CODE>Server:</CODE> header
2875of all HTTP responses. Table 4 lists the token name along with
2876the text that is returned. The default is
2877<CODE>Minimal</CODE>.</P>
2878
2879<DIV CLASS="table"><TABLE SUMMARY="ServerToken Names and Values">
2880<CAPTION>Table 4: <A NAME="TABLE4">ServerToken Names and Values</A></CAPTION>
2881<THEAD>
2882<TR>
2883 <TH>Name</TH>
2884 <TH>Value</TH>
2885</TR>
2886</THEAD>
2887<TBODY>
2888<TR>
2889 <TD>None</TD>
2890 <TD>No <CODE>Server:</CODE> header is returned</TD>
2891</TR>
2892<TR>
2893 <TD>ProductOnly</TD>
2894 <TD>"CUPS"</TD>
2895</TR>
2896<TR>
2897 <TD>Major</TD>
2898 <TD>"CUPS 1"</TD>
2899</TR>
2900<TR>
2901 <TD>Minor</TD>
2902 <TD>"CUPS 1.2"</TD>
2903</TR>
2904<TR>
2905 <TD>Minimal</TD>
2906 <TD>"CUPS 1.2.N" where N is the patch release</TD>
2907</TR>
2908<TR>
2909 <TD>OS</TD>
2910 <TD>"CUPS 1.2.N (UNAME)" where N is the patch release and
2911 UNAME is the output of the <B>uname(1)</B> command</TD>
2912</TR>
2913<TR>
2914 <TD>Full</TD>
2915 <TD>"CUPS 1.2.N (UNAME) IPP/1.1" where N is the patch
2916 release and UNAME is the output of the <B>uname(1)</B>
2917 command</TD>
2918</TR>
2919</TBODY>
2920</TABLE></DIV>
2921
2922
2923<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="SetEnv">SetEnv</A></H2>
2924
2925<H3>Examples</H3>
2926
2927<PRE CLASS="command">
2928SetEnv PATH /usr/lib/cups/filter:/bin:/usr/bin:/usr/local/bin
2929SetEnv MY_ENV_VAR foo
2930</PRE>
2931
2932<H3>Description</H3>
2933
2934<P>The <CODE>SetEnv</CODE> directive specifies an environment
2935variable that should be passed to child processes.</P>
2936
2937
2938<H2 CLASS="title"><A NAME="SSLOptions">SSLOptions</A></H2>
2939
2940<H3>Examples</H3>
2941
2942<PRE CLASS="command">
2943SSLOptions 127.0.0.1:443
2944SSLOptions 192.0.2.1:443
2945</PRE>
2946
2947<H3>Description</H3>
2948
2949<P>The <CODE>SSLOptions</CODE> directive specifies a network
2950address and port to listen for secure connections. Multiple
2951<CODE>SSLOptions</CODE> directives can be provided to listen on
2952multiple addresses.</P>
2953
2954<P>The <CODE>SSLOptions</CODE> directive is similar to the <A
2955HREF="#SSLPort"><CODE>SSLPort</CODE></A> directive but allows you
2956to restrict access to specific interfaces or networks.</P>
2957
2958
2959<H2 CLASS="title"><A NAME="SSLOptions">SSLOptions</A></H2>
2960
2961<H3>Examples</H3>
2962
2963<PRE CLASS="command">
2964SSLOptions None
2965SSLOptions NoEmptyFragments
2966</PRE>
2967
2968<H3>Description</H3>
2969
2970<P>The <CODE>SSLOptions</CODE> directive specifies additional SSL/TLS
2971protocol options to use for encrypted connected. Currently only two
2972options are supported - <code>None</code> (the default) for the most
2973secure mode and <code>NoEmptyFragments</code> to allow CUPS to work with
2974Microsoft Windows with the FIPS conformance mode enabled.</p>
2975
2976
2977<H2 CLASS="title"><A NAME="SSLPort">SSLPort</A></H2>
2978
2979<H3>Examples</H3>
2980
2981<PRE CLASS="command">
2982SSLPort 443
2983</PRE>
2984
2985<H3>Description</H3>
2986
2987<P>The <CODE>SSLPort</CODE> directive specifies a port to listen
2988on for secure connections. Multiple <CODE>SSLPort</CODE> lines
2989can be specified to listen on multiple ports.</P>
2990
2991
2992<H2 CLASS="title"><A NAME="SystemGroup">SystemGroup</A></H2>
2993
2994<H3>Examples</H3>
2995
2996<PRE CLASS="command">
2997SystemGroup lpadmin
2998SystemGroup sys
2999SystemGroup system
3000SystemGroup root
3001SystemGroup root lpadmin
3002</PRE>
3003
3004<H3>Description</H3>
3005
3006<P>The <CODE>SystemGroup</CODE> directive specifies the system
3007administration group for <CODE>System</CODE> authentication.
3008Multiple groups can be listed, separated with spaces. The default
3009group list is <CODE>@CUPS_SYSTEM_GROUPS@</CODE>.</P>
3010
3011
3012<H2 CLASS="title"><A NAME="TempDir">TempDir</A></H2>
3013
3014<H3>Examples</H3>
3015
3016<PRE CLASS="command">
3017TempDir /var/tmp
3018TempDir /foo/bar/tmp
3019</PRE>
3020
3021<H3>Description</H3>
3022
3023<P>The <CODE>TempDir</CODE> directive specifies an absolute path
3024for the directory to use for temporary files. The default
3025directory is <VAR>@CUPS_REQUESTS@/tmp</VAR>.</P>
3026
3027<P>Temporary directories must be world-writable and should have
3028the "sticky" permission bit enabled so that other users cannot
3029delete filter temporary files. The following commands will create
3030an appropriate temporary directory called
3031<VAR>/foo/bar/tmp</VAR>:</P>
3032
3033<PRE CLASS="command">
3034<KBD>mkdir /foo/bar/tmp</KBD>
3035<KBD>chmod a+rwxt /foo/bar/tmp</KBD>
3036</PRE>
3037
3038
3039<H2 CLASS="title"><A NAME="Timeout">Timeout</A></H2>
3040
3041<H3>Examples</H3>
3042
3043<PRE CLASS="command">
3044Timeout 300
3045Timeout 90
3046</PRE>
3047
3048<H3>Description</H3>
3049
3050<P>The <CODE>Timeout</CODE> directive controls the amount of time
3051to wait before an active HTTP or IPP request times out. The
3052default timeout is 300 seconds.</P>
3053
3054
3055<H2 CLASS="title"><SPAN CLASS="info">CUPS 1.2</SPAN><A NAME="UseNetworkDefault">UseNetworkDefault</A></H2>
3056
3057<H3>Examples</H3>
3058
3059<PRE CLASS="command">
3060UseNetworkDefault yes
3061UseNetworkDefault no
3062</PRE>
3063
3064<H3>Description</H3>
3065
3066<P>The <CODE>UseNetworkDefault</CODE> directive controls whether
3067the client will use a network/remote printer as a default
3068printer. If enabled, the default printer of a server is used as
3069the default printer on a client. When multiple servers are
3070advertising a default printer, the client's default printer is
3071set to the first discovered printer, or to the implicit class for
3072the same printer available from multiple servers.</P>
3073
3074<P>The default is <CODE>@CUPS_USE_NETWORK_DEFAULT@</CODE>.</P>
3075
3076
3077<H2 CLASS="title"><A NAME="User">User</A></H2>
3078
3079<H3>Examples</H3>
3080
3081<PRE CLASS="command">
3082User lp
3083User guest
3084</PRE>
3085
3086<H3>Description</H3>
3087
3088<P>The <CODE>User</CODE> directive specifies the UNIX user that
3089filter and CGI programs run as. The default user is
3090<CODE>@CUPS_USER@</CODE>.</P>
3091
3092<BLOCKQUOTE><B>Note:</B>
3093
3094<P>You may not use user <CODE>root</CODE>, as that would expose
3095the system to unacceptable security risks. The scheduler will
3096automatically choose user <CODE>nobody</CODE> if you specify a
3097user whose ID is 0.</P>
3098
3099</BLOCKQUOTE>
3100
3101
3102</BODY>
3103</HTML>