Skip to end of metadata
Go to start of metadata

The JobsIgnoreFilter takes a .NET regular expression.  Any jobs that have a label that matches the regular expression will be sent to the Recycle Bin.  Remember that the communication service configuration file is written in XML and add escape characters to the regular expression as appropriate.

 
Before implementing the filter, it would be very wise to check it with an evaluator like Expresso
 

Example 1: Ignoring documents with a specific extension

 (?i)\.doc$
Please note - this example will not catch documents printed from an application that appends its name to the filename.
 

Example 2: Ignoring documents with one of two specific extensions

 (?i)\.(doc|txt)$
Please note - this example will not catch documents printed from an application that appends its name to the filename.
 

Example 3: Ignoring Copy jobs from a Sharp

 ^Copy$
 

Example 4: Ignoring Scan jobs from a Sharp

 ^HDD_\d\d\d\d\d\d\d\d_\d\d\d\d\d\d(AM|PM)$
 
 

Example 5: Only track documents with a specific extension

 (?i).*(?<!doc)$

Labels
  • None