Authentication IMAP Plugin description
Open-Xchange IMAP authentication module
Introduction
The Open-Xchange IMAP authentication module is used to perform the Open-Xchange authentication against a IMAP server. During login, a IMAP connection is opened with the user credentials given through the Open-Xchange API, e.g. the GUI login mask. If that IMAP connection succeeds, the user is authenticated and finally logged in to its Open-Xchange session.
The module does replace the database authentication module installed by default.
IMAP Authentication Matrix
The IMAP authentication module has configuration parameters which do influence the username used for the IMAP connection during login. The configuration file is:
/opt/open-xchange/etc/groupware/imapauth.properties
The parameters are:
com.openexchange.mail.loginSource USE_FULL_LOGIN_INFO USE_MULTIPLE
The following examples make the behavior of that parameters visible. The login string, passed as example to the Open-Xchange login mask, is
user@domain.tld
during the user provisioning, following attributes are set for the context via the createcontext call:
attribute | value |
contextname | domain.tld |
and the following parameters via the creatuser call:
attribute | value |
imaplogin | user1337 |
username | user |
exampleuser@otherdomain.tld |
com.openexchange.mail.loginSource=login
Property/Property | USE_FULL_LOGIN_INFO | ||
---|---|---|---|
true | false | ||
USE_MULTIPLE | true | user1337 | user1337 |
false | user@domain.tld | user |
com.openexchange.mail.loginSource=mail
Property/Property | USE_FULL_LOGIN_INFO | ||
---|---|---|---|
true | false | ||
USE_MULTIPLE | true | exampleuser@otherdomain.tld | exampleuser@otherdomain.tld |
false | user@domain.tld | user |
com.openexchange.mail.loginSource=name
Property/Property | USE_FULL_LOGIN_INFO | ||
---|---|---|---|
true | false | ||
USE_MULTIPLE | true | user@domain.tld | user |
false | user@domain.tld | user |
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/stable/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/stable/updates/DebianBullseye/ /
and run
$ apt-get update $ apt-get install open-xchange-authentication-imap
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/stable/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/stable/updates/DebianBookworm/ /
and run
$ apt-get update $ apt-get install open-xchange-authentication-imap