Hi all,
sorry for posting again on this topic within 2 days :wink:
I've compared the keys/values sent to sha1auth.srf within token on amsn and WLM;
on all my failing accounts, amsn doesn't send svc=mail while WLM does for all my accounts;
it's because of id=3 for the failing accounts (see hotmail.tcl line 84)
so we can:
1. send svc=mail also on id=3
2. set id to 2 in this case
both is working but I would prefer 1. as it's more of what WLM does
in short, I would replace in hotmail.tcl
if {$id == "2" } {
with
if {$id == "2" || $id == "3" } {
some additional info:
amsn seems to get always the same id for an account (and also the url for md5auth)
WLM on the other hand seems to use the id it got from the first account logged in as long as
the process is running...