Skip to content

Configuring Services and Printers


SEAL IPP Proxy is configured applying the configuration file C:\ProgramData\SEAL Systems\PLOSSYS\config\ipp-proxy.yml.

The configuration file consists of several sections, which contain environment variables in the form of key value pairs. The entries in the configuration file take precedence over otherwise defined environment variables.

Hint - Further information

All environment varibales are listed in Environment Variables.

Example - ipp-proxy.yml

env:
DATADIR: '$TMPDIR'
LOG_LEVEL: 'debug'
pollingIntervalMilliseconds: 3000
pollingIntervalAfterErrorMilliseconds: 30000
config:
  printers:
   default:
   localPrinterName: '$DEFAULTPRINTER'
   printerUri: 'ipp://localhost:8000/ipp/print/printpdf'
   command: '[INSTALLDIR]printpdf\printpdf.exe'
   args: ['-p', '"$PRINTERNAME"', '-o', 'color=bw', '-o', 'duplex=vertical', '-o', 'shrinktofit=true', '-o', 'print=stamp', '-f', '"$FILE"']

Back to top