[Pkg-cups-devel] r288 - cupsys/branches/cups-1.2/debian

Kenshi Muto kmuto at costa.debian.org
Sat Jul 8 05:28:27 UTC 2006


Author: kmuto
Date: Sat Jul  8 05:28:24 2006
New Revision: 288

Added:
   cupsys/branches/cups-1.2/debian/client.conf
Modified:
   cupsys/branches/cups-1.2/debian/changelog

Log:
add example client.conf (#376840)

Modified: cupsys/branches/cups-1.2/debian/changelog
==============================================================================
--- cupsys/branches/cups-1.2/debian/changelog	(original)
+++ cupsys/branches/cups-1.2/debian/changelog	Sat Jul  8 05:28:24 2006
@@ -16,6 +16,9 @@
   * Check Include directive with case insensitive. (closes: #376883)
   * libcupsys2 has /etc/cups directory to allow admin put own
     client.conf. (closes: #370788)
+  * Include sample client.conf in libcupsys2. You can copy /usr/share/
+    doc/libcupsys2/examples/client.conf to /etc/cups or ~/.cups and modify
+    for your environment. (closes: #376840)
 
  -- Kenshi Muto <kmuto at debian.org>  Wed, 21 Jun 2006 15:06:02 +0000
 

Added: cupsys/branches/cups-1.2/debian/client.conf
==============================================================================
--- (empty file)
+++ cupsys/branches/cups-1.2/debian/client.conf	Sat Jul  8 05:28:24 2006
@@ -0,0 +1,66 @@
+#   Sample client configuration file for the Common UNIX Printing System
+#   (CUPS).
+#
+#   Copyright 1997-2005 by Easy Software Products, all rights reserved.
+#   Kenshi Muto <kmuto at debian.org> modified a bit for Debian distribution.
+#
+#   These coded instructions, statements, and computer programs are the
+#   property of Easy Software Products and are protected by Federal
+#   copyright law.  Distribution and use rights are outlined in the file
+#   "LICENSE.txt" which should have been included with this file.  If this
+#   file is missing or damaged please contact Easy Software Products
+#   at:
+#
+#       Attn: CUPS Licensing Information
+#       Easy Software Products
+#       44141 Airport View Drive, Suite 204
+#       Hollywood, Maryland 20636 USA
+#
+#       Voice: (301) 373-9600
+#       EMail: cups-info at cups.org
+#         WWW: http://www.cups.org
+#
+
+########################################################################
+#                                                                      #
+# This is the CUPS client configuration file.  This file is used to    #
+# define client-specific parameters, such as the default server or     #
+# default encryption settings.                                         #
+#                                                                      #
+# Put this file on /etc/cups/client.conf (system use) or               #
+# ~/.cups/client.conf (personal use).                                  #
+#                                                                      #
+########################################################################
+
+#
+# ServerName: the hostname of your server.  By default CUPS will use the
+# domain socket /var/run/cups/cups.sock or the value of the CUPS_SERVER
+# environment variable.
+# ONLY ONE SERVER NAME MAY BE SPECIFIED AT A TIME.  To use
+# more than one server you must use a local scheduler with browsing
+# and possibly polling.
+#
+
+#ServerName /domain/socket
+#ServerName myhost.domain.com[:port]
+#ServerName ip-address[:port]
+
+#
+# Encryption: whether or not to use encryption; this depends on having
+# the OpenSSL library linked into the CUPS library.
+#
+# Possible values:
+#
+#     Always       - Always use encryption (SSL)
+#     Never        - Never use encryption
+#     Required     - Use TLS encryption upgrade
+#     IfRequested  - Use encryption if the server requests it
+#
+# The default value is "IfRequested".  This parameter can also be set
+# using the CUPS_ENCRYPTION environment variable.
+#
+
+#Encryption Always
+#Encryption Never
+#Encryption Required
+#Encryption IfRequested



More information about the Pkg-cups-devel mailing list