You could always disable native cookies by deleting these lines:
# Native album.pl cookie login info :D
if ($lastchip=~/^$::albumcookieusername.*/)
{
debug("Found Native album.pl username info: $lastchip",3,__LINE__);
$myusername=$chip;
debug("\$myusername set to $myusername",3,__LINE__);
}
# Native album.pl cookie login info :D
if ($lastchip=~/^$::albumcookiepassword.*/)
{
debug("Found Native album.pl password info: $lastchip",3,__LINE__);
$mypassword=$chip;
debug("\$mypassword set to $mypassword",3,__LINE__);
}
That way it will never fall back to using these (which it shouldn't be anyway since you're trying to use eBlah.) It's not "pretty" but it might help.