Hi,
in the standard nathelper.cfg (8.1.12 CVS Stable) there is the following
code:
--
if (uri==myself) {
if (method=="REGISTER") {
save("location");
break;
};
lookup("aliases");
---
Why arent the aliases not lookuped just after you save the location
like:
--
if (uri==myself) {
if (method=="REGISTER") {
save("location");
lookup("aliases");
break;
};
--
best regards,
Arnd