Show
Ignore:
Timestamp:
06/20/07 21:22:27 (17 years ago)
Author:
jerome
Message:

Added the 'snmperrormask' directive.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/conf/pykota.conf.sample

    r3180 r3190  
    12841284# When not set, an hardcoded value of 5 times is used. 
    12851285# The value must be a strictly positive integer. 
    1286 statusstabilizationloops = 5 
     1286statusstabilizationloops : 5 
    12871287 
    12881288 
     
    12991299# The value must be a positive floating point value greater 
    13001300# than or equal to 0.25 seconds. 
    1301 statusstabilizationdelay = 4.0 
     1301statusstabilizationdelay : 4.0 
     1302 
     1303 
     1304 
     1305# Defines a bit mask to specify the set of error conditions 
     1306# reported through SNMP for which PyKota has to wait indefinitely 
     1307# until such an error is fixed before continuing with printing 
     1308# and/or accounting. 
     1309# 
     1310# This directive can be set either globally or on a per printer 
     1311# basis.  
     1312# 
     1313# The bit values are specified as in RFC3805 (Printer MIB v2), 
     1314# as an ORed value of one or more of the following conditions : 
     1315# 
     1316#       1000 0000 0000 0000 : Low Paper 
     1317#       0100 0000 0000 0000 : No Paper 
     1318#       0010 0000 0000 0000 : Low Toner 
     1319#       0001 0000 0000 0000 : No Toner 
     1320#       0000 1000 0000 0000 : Door Open 
     1321#       0000 0100 0000 0000 : Jammed 
     1322#       0000 0010 0000 0000 : Offline 
     1323#       0000 0001 0000 0000 : Service Requested 
     1324#       0000 0000 1000 0000 : Input Tray Missing 
     1325#       0000 0000 0100 0000 : Output Tray Missing 
     1326#       0000 0000 0010 0000 : Marker Supply Missing 
     1327#       0000 0000 0001 0000 : Output Near Full 
     1328#       0000 0000 0000 1000 : Output Full 
     1329#       0000 0000 0000 0100 : Input Tray Empty 
     1330#       0000 0000 0000 0010 : Overdue Preventive Maintainance 
     1331#       0000 0000 0000 0001 : Not assigned 
     1332# 
     1333# When not set, an hardcoded value of hexadecimal 0x4FCC is used, 
     1334# which means that PyKota will wait indefinitely when using SNMP 
     1335# hardware accounting if one of the following conditions is met : 
     1336# 
     1337#   No Paper, Door Open, Jammed, Offline, Service Requested, 
     1338#   Input Tray Missing, Output Tray Missing, Output Full, Input Tray Empty 
     1339#  
     1340# This value can be specified either in hexadecimal (prefixed with 0x), 
     1341# in octal (prefixed with 0) or in decimal (no prefix). 
     1342# 
     1343snmperrormask : 0x4FCC 
    13021344 
    13031345