			 TSTHOST's MES_FILT  EXAMPLE 
			-----------------------------

The purpose of a mes_filt, message filter server, is to examine a mail received
on the pms and take appropriate actions. Mes_filt program must be  put  in  the
same directory of tsthost.exe, and must be present when tsthost start. In  this
case, for any incoming mail on the pms task, tsthost start  the  mes_filt,  and
adjust the messages status according with the mes_filt return code.

The mes_filt program have a cfg file: this cfg file's name is MES_FILT.SYS.....
also this file must be created and put in the tsthost directory.

The sintax of mes_filt.sys is simple:
   - any line a command
   - any line that start with # sign is comment and ignored
   - special line named: DEFAULT X, that is used for all the message that  have
     not corrispondance with the mes_filt setting. If  not found,  the  default
     action for mes_filt is ACCEPT THE MAIL
   - Another special line: 7PLUS X, that is used to define the action for  mail
     that carry with 7plus code. Note that the  call  definition  ovveride  the
     7plus action..... if you set IK1GKJ accepted and 7plus in held, and IK1GKJ
     send a mail with 7plus code, the  mail  is  accepted,  even  if  7plus  is
     defined in held
   - a group line, that define the field to examine, valid field are:
     [TO] [FROM] [ROUTE] [TITLE], any invalid field name will be ignored.
     In not obblygatory to define all the fields, you may define only the
     fields that you need.
   - inside a field, a list of callsign (or  word  if  title  field)  with  the
     desidered action for mes_filt: CALL X

   NOTE: since the mes_filt.sys file is read sequentially, the best  place  for
   the two special line is on the top of mes_filt.sys

   For example:
	DEFAULT 1
	7PLUS 2
	#
	[TO]
	IK1MSL 2
	IK1AAA 0
	#
	[FROM]
	IK1GKJ 0
	#
	[TITLE]
	SALE 2

	where 0 means that the message is accepted, 1 the message is put
	in H (held) state, 2 the message is killed.

   For the above example, the default action for mes_filt is held any mail,
   7plus code is rejected ,BUT:
	the mail addressed to IK1MSL will be rejected, to IK1AAA will be
	accepted
	any message send by IK1GKJ is accepted
	any message that have the word SALE in the title (SALE, SALES, MESSALE)
	will be rejected

