--- cups-1.3.7/conf/cupsd.conf.in.orig 2008-07-08 12:11:01.000000000 +0200 +++ cups-1.3.7/conf/cupsd.conf.in 2008-07-08 13:11:57.000000000 +0200 @@ -78,6 +78,55 @@ +DefaultPolicy default + +# easy is a very relaxed policy + + # Job-related operations must be done by the owner or an administrator... + + Satisfy any + Order allow,deny + + + +# paranoid is a very restricted policy + + # Job-related operations must be done by the owner + + Require user @OWNER + Allow from 127.0.0.0/8 + Order deny,allow + + # All administration operations require an administrator to authenticate... + + AuthType Default + Require user @SYSTEM + Allow from 127.0.0.0/8 + Order deny,allow + + + # All printer operations require a printer operator to authenticate... + + AuthType Default + Require user @CUPS_DEFAULT_PRINTADMIN_AUTH@ + Allow from 127.0.0.0/8 + Order deny,allow + + + # Only the owner or an administrator can cancel or authenticate a job... + + Require user @OWNER + Allow from 127.0.0.0/8 + Order deny,allow + + + + Require user @OWNER @CUPS_DEFAULT_PRINTADMIN_AUTH@ + Allow from 127.0.0.0/8 + Order deny,allow + + + # # End of "$Id: cupsd.conf.in 7199 2008-01-08 00:16:30Z mike $". #