On Wed, 28 Mar 90 13:08:59 MST Taryn Westergaard said:
>I was able to get around the problem by commenting out the following line
>in the LSVXMAIL EXEC:
>
>> If Pos($,rest) ^== 0 Then Call RejMail '"Sender:", "From:" or "Reply-To:"
 
But now you risk getting into loops because the server can no longer tell
if a list is looping with a mailer.. If you want to alter the code,
you could go all the way and specify things here, such as:
   If Pos($,rest) ^=0 & pos('mylistsname',rest)==0 Then Call Rejmail ....
so that it would work only for that list.. (this is not very efficient,
but it's a quick hack).. -turgut