>Simply define a new variable before the line containing
>postmaster=
>
>Then on the end of postmaster= append the new variable outside of the quote
>mark.
>
>e.g.
>other = 'userid1@host userid2@host'
>postmaster = 'WEAVER@OHSTVMA Quiet: Hide: 'Other
 
This works  but I don't  recommend it, because  LFIX won't support  it (I
didn't want to put  300 lines of code in there just  to fully support the
SYSVARS stuff). You can use continuation lines just as in REXX, ie:
 
postmaster = 'WEAVER@OHSTVMA Quiet: Hide: ',
             'userid1@host userid2@host'
 
  Eric