Go to file
Christian Weiske 99b8dad9d1 add readme for imap
2013-12-27 18:44:20 +01:00
2013-07-10 19:24:49 +03:00
2012-10-14 21:15:47 +02:00
2013-01-24 16:50:51 +01:00
2013-12-27 18:44:20 +01:00

External user authentication

Authenticate user login against FTP, IMAP or SMB.

Configuration

IMAP

Add the following to your config.php:

'user_backends' => array(
    array(
        'class' => 'OC_User_IMAP',
        'arguments' => array(
            '{127.0.0.1:143/imap/readonly}',
        ),
    ),
),

This connects to the IMAP server on localhost.

Read the imap_open PHP manual page to learn more about the allowed parameters.

Description
External user authentication methods like IMAP, SMB and FTP.
Readme 668 KiB
Languages
PHP 95.4%
Makefile 4.6%