Subject: Possible bug in cookie manager? From: "Homer" Newsgroups: atozedsoftware.indy.general Hello! I'm using version 9.0.14 and when trying to connect to hotmail, found that I can't becouse of the cookies. The bug is in line 304 of file IdCookie.pas. The original line was: result := FDomain = DomainName(AServerHost); in the IsValidCookie procedure. With hotmail and some cookies, FDomain is equal to ".msn.com" and AServerHost is www.hotmail.msn.com. In this case, it is a valid cookie, but as DomainName returns .hotmail.msn.com then the cookie is dropped. So I change the code to: result := FDomain = RightStr(DomainName(AServerHost), Length(FDomain));