Book Image

CUPS Administrative Guide

By : Ankur Shah
Book Image

CUPS Administrative Guide

By: Ankur Shah

Overview of this book

Table of Contents (16 chapters)
CUPS Administrative Guide
Credits
About the Author
Acknowledgement
About the Reviewer
Preface

Client Directives


The CUPS client applications use the /etc/cups/client.conf file for default settings. This application also looks in the user's home directory for a file called .cupsrc. Each directive is listed on a line by itself followed by its value. It can be edited in your favorite text editor.

The client.conf file contains two directives that determine the behavior of clients:

  • ServerName

  • Encryption

We will discuss these in detail in the next chapter, Client Setup.

ServerName

The ServerName directive specifies and sets the remote server that is to be used for all client operations. This means, it redirects all client requests to the remote server. The default is to use localhost.

ServerName cupsserver.cupsexample.com
ServerName 10.20.30.40

Encryption

The Encryption directive specifies the default encryption settings for the client. The following are possible values for the Encryption directive:

Encryption Never
Encryption IfRequested
Encryption Required
Encryption Always

The default...