Hi Folks,
Today I realised something strange in openser-1.1.0-notls.
I'm trying to mach any ACKs to do something (e.g. logging) but its doesn't work at
all.
I'm using "method" like this:
If (method=="ACK") {
xlog("L_ALERT","ACK received\n");
};
and I it doesn't work, but...
if (is_method("ACK")) {
xlog("L_ALERT","ACK received\n");
};
works perfectly!
I could not find anything about it in archive mail list neither in doc.
Rodrigo P. Telles