How to configure CUPS put jobs in queue with status HELD(4)?

1

1

I can't find this property in /etc/cups/cupsd.conf or /etc/cups/printers.conf.

magrif

Posted 2018-11-28T15:16:31.170

Reputation: 135

Answers

1

You can use CUPS' command line client for each job individually like so:

 lp -d printer -o job-hold-until=indefinite jobfile

You can also use the lpoptions tool to set this as a default, for all jobs sent by the same user. This will then even apply for jobs you send from GUI applications:

 lpoptions -p printer -o job-hold-until=indefinite

Kurt Pfeifle

Posted 2018-11-28T15:16:31.170

Reputation: 10 024