CHANGES IN CUPS V1.5.1
- Documentation updates (STR #3885)
+ - The client.conf Server directive is no longer supported on Mac OS X
+ 10.7 and later.
- The IPP backend sent the wrong margins in media-col.
- The scheduler did not save or restore large Kerberos credentials for
jobs.
strlcpy(encryption, value, sizeof(encryption));
cups_encryption = encryption;
}
+#ifndef __APPLE__
+ /*
+ * The Server directive is not supported on Mac OS X due to app sandboxing
+ * restrictions, i.e. not all apps request network access.
+ */
else if (!cups_server && (!cg->server[0] || !cg->ipp_port) &&
!_cups_strcasecmp(line, "ServerName") && value)
{
strlcpy(server_name, value, sizeof(server_name));
cups_server = server_name;
}
+#endif /* !__APPLE__ */
else if (!cups_anyroot && !_cups_strcasecmp(line, "AllowAnyRoot") && value)
{
strlcpy(any_root, value, sizeof(any_root));
.\" which should have been included with this file. If this file is
.\" file is missing or damaged, see the license at "http://www.cups.org/".
.\"
-.TH client.conf 5 "CUPS" "28 March 2011" "Apple Inc."
+.TH client.conf 5 "CUPS" "2 September 2011" "Apple Inc."
.SH NAME
client.conf \- client configuration file for cups
.SH DESCRIPTION
-The \fIclient.conf\fR file configures the CUPS client and is
+The \fIclient.conf\fR file configures the CUPS client and is
normally located in the \fI@CUPS_SERVERROOT@\fR or \fI~/.cups\fR
directory. Each line in the file can be a configuration
directive, a blank line, or a comment. Comment lines start with
ServerName /domain/socket
.br
Specifies the address and optionally the port to use when connecting to the
-server.
+server. \fBNote: Not supported on Mac OS X 10.7 or later.\fR
.SH SEE ALSO
http://localhost:631/help
.SH COPYRIGHT