Syntax and parameters of the msgtype statement

A msgtype statement identifies the type of message that any following DEFAULT, DEFAULTCMD, JOB, and MSG statements apply to. The msgtype statement has the following syntax form.

msgtype keyword=value[,keyword=value]
msgtype
The message type, which is one of the following specifications:
  • REGULAR
  • ACTION
  • SPECIFIC
keyword
The parameter name, which is one of the following specifications:
  • INTVLTIME
  • JOBIMTIME (not supported for msgtype SPECIFIC)
  • JOBTHRESH (not supported for msgtype SPECIFIC)
  • MSGIMTIME (not supported for msgtype REGULAR and ACTION)
  • MSGLIMIT (not supported for msgtype REGULAR and ACTION)
  • MSGTHRESH
  • SYSIMTIME
value
The parameter value.
  • For JOBTHRESH, MSGLIMIT and MSGTHRESH: a positive, non-zero integer count of messages in the range 1 to 999999999
  • for INTVLTIME: a positive, non-zero integer time in seconds in the range 1 to 999999999
  • For SYSIMTIME, JOBIMTIME and MSGIMTIME: a positive, non-zero floating point time in seconds in the range 0.000001 to 16777215.0
Note:
  1. Floating point fractions such as 0.1 might not be stored exactly because of limitations of the floating point format.
  2. For msgtype REGULAR and ACTION, the JOBTHRESH value must be less than the MSGTHRESH value.
  3. For msgtype SPECIFIC, the MSGLIMIT value must be less than the MSGTHRESH value.
Syntax rules:
Example:
REGULAR MSGTHRESH=50,JOBTHRESH=20,INTVLTIME=1 comment
REGULAR SYSIMTIME=0.125,JOBIMTIME=0.25