Deprecated or removed Expansions.
There are a number of expansions in v3 which have been either deprecated or removed in v4. The following text explains why these functions were removed, and what functionality has replaced them.
%expr(…)
This expansion has been removed. Instead, just use %{ … }
.
reply.Reply-Message := "The result of 1 + 2 = %{1 + 2}"
%integer(…)
This expansion has been removed. Instead, just use %{(integer) …}
with math inside of the brackets.
reply.Reply-Message := "Value of Service-Type is %{(integer) Service-Type}"