But I think the rest of it is okay. Below is the whole thing:
<HTML>
<HEAD>
<!--%%IF EQUALS(errorCode AND "access to this account is disabled")-->
<title>Account Disabled</title>
<BODY BGCOLOR="#FFFFFF" text="#000000">
This Account Has Been Disabled.
<!--%%ELSE-->
<title>Account Disabled</title>
<BODY BGCOLOR="#FFFFFF" text="#000000">
Displayed Login Page
<!--%%ENDIF-->
</BODY>
</HTML>
#############################################################
This message is sent to you because you are subscribed to
the mailing list <CGat...@mail.stalker.com>.
To unsubscribe, E-mail to: <CGateP...@mail.stalker.com>
To switch to the DIGEST mode, E-mail to <CGatePr...@mail.stalker.com>
To switch to the INDEX mode, E-mail to <CGatePr...@mail.stalker.com>
Send administrative queries to <CGatePro...@mail.stalker.com>
The WSSP scripting language does not allow for literal strings in any place other than those directly specified in the language specs.
You can place the string into the strings.data file:
disabledError = "access to this account is disabled";
and use IF EQUALS(errorCode and String("disabledError"))
Sincerely,
Vladimir
PS.
But you will be able to do it your way:
EQUALS(errorCode and ""access to this account is disabled")
starting with the 3.5b7 version