Results 188 comments of Till Kamppeter

@michaelrsweet who was your contact at the LF to ask for the list(s) getting created? Can you forward to me the e-mail(s) you sent?

Sorry, I was very busy with the [Linux App Summit 2022](https://conf.linuxappsummit.org/event/4/overview) and came back today. I have sent a mail to Jeff and Eric now, you CCed.

An update on available Printer Applications: **Most existing free software CUPS drivers are already available in Printer Applications.** They are in the 5 Printer Applications listed below. You can get...

@zdohnal in CUPS 3.x not **all** filters will get removed, only the ones which are classic printer drivers (like `rastertohp`) or only serve for obsolete data formats (like `pstops`) will...

@michaelrsweet if the label or POS printers print with the same speed and quality in raster mode (do they?), getting everything rendered on the CUPS server, then one principally would...

@OdinVex, if you simply create a CUPS queue without PPD, using the current CUPS you will for sure loose functionality. If we switch to a CUPS not accepting classic drivers...

@OdinVex Note that "deprecation" does not mean removal. "deprecation" means that the concept is planned to be discontinued in a later version, for example when a successor for it gets...

Here we go: ``` $ lpstat -v device for commandtops-test: usb://HP/OfficeJet%20Pro%208730?serial=CN783F60W1&interface=1 device for Printer: ipps://HP%20OfficeJet%20Pro%208730%20%5B08C229%5D._ipps._tcp.local/ device for second: /dev/null $ lpstat -e commandtops-test Printer second $ lpstat -l -e commandtops-test...

This is the call of `cupsEnumDests()` which I am using: ``` cupsEnumDests(CUPS_DEST_FLAGS_NONE, 1000, NULL, 0, 0, (cups_dest_cb_t)add_dest_cb, dest_list); ``` This is the callback function `add_dest_cb()`: ``` int add_dest_cb(dest_list_t *user_data, unsigned...

`lpstat -e` uses `cupsGetDests()`, `lpstat -v` uses a CUPS_GET_PRINTERS IPP request.