Might someone of you integrate the following fix in Roundcube? Thanks a lot, Sven.
Roundcube Build 0.1-20051021
Problem:
None of the self-referencing links in RoundCube does work with Internet Information Services (IIS) in Windows XP (SP2). Adressing fails with HTML Error 405.
Solution:
Change all links from "./" to "index.php" - or directly to the full path of the current shown page represented by $_SERVER["PHP_SELF"]. I.E.:
old:
$COMM_PATH = sprintf('index.php?_auth=%s&_task=%s', $sess_auth, $_task);
new:
$COMM_PATH = sprintf('./?_auth=%s&_task=%s', $sess_auth, $_task);
old:
"./"
new:
"index.php
well.