Advertisement
Guest User

dirobi

a guest
Nov 3rd, 2009
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. LogLevel warning
  2. SystemGroup lpadmin
  3. # Allow remote access
  4. Port 631
  5. Listen /var/run/cups/cups.sock
  6. # Show shared printers on the local network.
  7. Browsing On
  8. BrowseOrder allow,deny
  9. BrowseAllow all
  10. DefaultAuthType Basic
  11. <Location />
  12. # Allow remote administration...
  13. Order allow,deny
  14. Allow @LOCAL
  15. </Location>
  16. <Location /admin>
  17. # Allow remote administration...
  18. Order allow,deny
  19. Allow @LOCAL
  20. </Location>
  21. <Location /admin/conf>
  22. AuthType Default
  23. Require user @SYSTEM
  24. # Allow remote access to the configuration files...
  25. Order allow,deny
  26. Allow @LOCAL
  27. </Location>
  28. <Policy default>
  29. <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job CUPS-Move-Job>
  30. Require user @OWNER @SYSTEM
  31. Order deny,allow
  32. </Limit>
  33. <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
  34. AuthType Default
  35. Require user @SYSTEM
  36. Order deny,allow
  37. </Limit>
  38. <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After CUPS-Accept-Jobs CUPS-Reject-Jobs>
  39. AuthType Default
  40. Require user @SYSTEM
  41. Order deny,allow
  42. </Limit>
  43. <Limit Cancel-Job CUPS-Authenticate-Job>
  44. Require user @OWNER @SYSTEM
  45. Order deny,allow
  46. </Limit>
  47. <Limit All>
  48. Order deny,allow
  49. </Limit>
  50. </Policy>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement