Roundcube-AutoLogin
Roundcube-AutoLogin copied to clipboard
Is the project still usable?
Hi, when I use this script, i got RC error: Unable to get token, is your RC link correct?
Is this project still alive?
I don't know whether it's alive, but it's usable (after a bit of customizing it worked for me).
The class works, you have to change/set only the flag "/i" in regex search to find all relevant cookies (php session + rc auth cookie).
I.e. preg_match_all('/Set-Cookie: (.*)\b/i', $response, $cookies);
, since the headers returned by the most recent Roundcube versions contain set-cookie
(lowercase). The flag /i
match the header's content regardless of the character case.