actually its in GenericListserv, it should n't remove the prefix if its
already there (IMHO) so that
"Re:[prefix] blah" is a reasonable subject line to expect..

this chunk:
                //If the "prefix" is in the subject line, remove it and
everything before it
                int index = subj.indexOf(prefix);
                if (index > -1) {
                    if (index == 0) {
                        subj = prefix + ' ' + subj.substring(index +
prefix.length() + 1);
                    } else {
                        subj = prefix + ' ' + subj.substring(0, index) +
subj.substring(index + prefix.length() + 1);
                    }
                } else {
                    subj = prefix + ' ' + subj;
                }

should be
                //If the "prefix" is in the subject line, *dont* remove it
                int index = subj.indexOf(prefix);
                if (index > -1) {
                   //dont do anything anymore
                } else {
                    subj = prefix + ' ' + subj;
                }




> -----Original Message-----
> From: Danny Angus [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, May 29, 2001 4:53 PM
> To: [EMAIL PROTECTED]
> Subject: AvalonListserv annoying cosmetic bug
>
>
>
> the AvalonListserv mailet goes a bit awry with "RE:" and <subjectprefix>
>
> it moves the subject prefix to the front every time, so my mail
> client adds another "RE:"
>
> for EG; "RE: [seemunky] RE: RE: RE: test"
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to