[ create a new paste ] login | about

Link: http://codepad.org/Bl3FqhC3    [ raw code | fork ]

C, pasted on Aug 25:
LogLevel info
SystemGroup lpadmin sys root
# Allow remote access
Port 631
Listen /var/run/cups/cups.sock
Listen localhost
Listen *:631
# Enable printer sharing and shared printers.
Browsing On
BrowseOrder allow,deny
BrowseAllow all
BrowseAddress @LOCAL
DefaultAuthType none
<Location />
  Allow all
  # Allow shared printing...
  Order allow
  Allow all
</Location>
<Location /admin>
  Allow all
  # Restrict access to the admin pages...
  Order allow,deny
</Location>
<Location /admin/conf>
  AuthType Default
  #Require user @SYSTEM
  # Restrict access to the configuration files...
  Order allow,deny
</Location>
<Policy default>
  <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>
    AuthType none
    Allow all
    Order allow
  </Limit>
  <Limit Create-Job Print-Job Print-URI>
    AuthType none
    Allow all
    Order allow
  </Limit>
  <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
    AuthType none
    #Require user @SYSTEM
    Order allow,deny
  </Limit>
  <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>
    AuthType none
    #Require user @SYSTEM
    Allow all
    Order allow
  </Limit>
  <Limit Cancel-Job CUPS-Authenticate-Job>
    #Require user @OWNER @SYSTEM
    Allow all
    Order allow
  </Limit>
  <Limit All>
    Allow all
    Order allow
  </Limit>
</Policy>


Create a new paste based on this one


Comments: