Open-Xchange servlet for external login masks: Difference between revisions
No edit summary |
|||
Line 10: | Line 10: | ||
{{InstallPlugin|pluginname=open-xchange-easylogin|sopath=unsupported/stable/extensions}} | {{InstallPlugin|pluginname=open-xchange-easylogin|sopath=unsupported/stable/extensions}} | ||
== Configuration == | |||
Configuration file is: | Configuration file is: | ||
/opt/open-xchange/etc/groupware/easylogin.properties | /opt/open-xchange/etc/groupware/easylogin.properties | ||
Line 34: | Line 34: | ||
com.openexchange.easylogin.doGetEnabled = true | com.openexchange.easylogin.doGetEnabled = true | ||
== Example HTML form == | |||
The examples below show how an HTML form for a custom login mask looks like. One example is for HTML POST and one for GET (for security reasons we recommend to use POST). When using the example for your own purposes, the ox-server string needs to be replaced by the name of the Open-Xchange server: | The examples below show how an HTML form for a custom login mask looks like. One example is for HTML POST and one for GET (for security reasons we recommend to use POST). When using the example for your own purposes, the ox-server string needs to be replaced by the name of the Open-Xchange server: | ||
Revision as of 12:30, 13 May 2009
Open-Xchange servlet for external login masks
Who should read this document
This document is written for web developers who would like to create a custom login mask for the Open-Xchange server. The login mask can reside on an external server i. e., not directly located in the domain of the Open-Xchange machines. It is also intended for administrators who install and maintain Open-Xchange services.
Description
The open-xchange-easylogin package provides a servlet which expects a user name and password via HTTP GET or POST. For security reasons, GET is disabled by default but can be turned on via configuration. With that information the servlet generates java code that is then executed in the user's browser so that the user gets automatically logged in to the Open-Xchange application. After the installation the servlet URL is:
http://ox-server/servlet/easylogin
Install on OX AppSuite
Debian GNU/Linux 11.0
Add the following entry to /etc/apt/sources.list.d/open-xchange.list if not already present:
deb https://software.open-xchange.com/products/unsupported/stable/extensions/DebianBullseye/ /
# if you have a valid maintenance subscription, please uncomment the
# following and add the ldb account data to the url so that the most recent
# packages get installed
# deb https://[CUSTOMERID:PASSWORD]@software.open-xchange.com/products/unsupported/stable/extensions/updates/DebianBullseye/ /
and run
$ apt-get update $ apt-get install open-xchange-easylogin
Debian GNU/Linux 12.0
Add the following entry to /etc/apt/sources.list.d/open-xchange.list if not already present:
deb https://software.open-xchange.com/products/unsupported/stable/extensions/DebianBookworm/ /
# if you have a valid maintenance subscription, please uncomment the
# following and add the ldb account data to the url so that the most recent
# packages get installed
# deb https://[CUSTOMERID:PASSWORD]@software.open-xchange.com/products/unsupported/stable/extensions/updates/DebianBookworm/ /
and run
$ apt-get update $ apt-get install open-xchange-easylogin
Configuration
Configuration file is:
/opt/open-xchange/etc/groupware/easylogin.properties
following configuration options are available (the groupware must be restarted to make changes effective):
# easylogin configuration file # GET/POST variable name for the password com.openexchange.easylogin.passwordPara = password # GET/POST variable name for the login name com.openexchange.easylogin.loginPara = login # AJAX root path on the Open-Xchange server # do not change unless you know what you are doing com.openexchange.easylogin.AJAX_ROOT = /ajax # the relative path to the Open-Xchange GUI com.openexchange.easylogin.OX_PATH_RELATIVE = ../ # enable GET for the servlet # possible parameters: true/false com.openexchange.easylogin.doGetEnabled = true
Example HTML form
The examples below show how an HTML form for a custom login mask looks like. One example is for HTML POST and one for GET (for security reasons we recommend to use POST). When using the example for your own purposes, the ox-server string needs to be replaced by the name of the Open-Xchange server:
<html> <body> <h1>Login via POST:</h1> <form action="http://ox-server/servlet/easylogin" method="POST"> <p> <label for="login">Username: </label> <input type="text" name="login" id="login"><br> <label for="password">Password: </label> <input type="password" name="password" id="password"><br><br> <input type="submit" value="POST login"> </p> </form> <h1>Login via GET:</h1> <form action="http://ox-server/servlet/easylogin" method="GET"> <p> <label for="login">Username: </label> <input type="text" name="login" id="login"><br> <label for="password">Password: </label> <input type="password" name="password" id="password"><br><br> <input type="submit" value="GET login"> </p> </form> </body> </html>