I have RC at a url of http://mydomain.com/mail but I would like to have a login page at both /mail and in the root of the domain. How do I create a login page at the root of the domain?
Thanks!
You just need a form, method post, action http://here is roundcube/?_task=mail&_action=login, input fields _user, _pass (optional _host).
-Roland
See also this thread:
"how can I login to RC mail from my home page (http://www.roundcubeforum.net/showthread.php?t=2841)"
and for insert domain?
Quote from: rosali;12029You just need a form, method post, action http://here is roundcube/?_task=mail&_action=login, input fields _user, _pass (optional _host).
-Roland
Please, Can you explain us better ?
Many Thanks
<form name="f" action="http://my_url_to_roundcube/?_task=mail" method="post">
Web Mail User Name: <input name="_user">
Password: <input name="_pass" type="password">
<input name="_action" value="login" type="hidden" />
<input name="_host" value="imap_host_name (e.g. localhost)" type="hidden">
<input type="submit">
</form>