Merge pull request #53 from nextcloud/fix-documentation

📖 DOC: sslmode is a string too && add possible values for sslmode
This commit is contained in:
violoncello.ch
2019-03-18 11:03:35 +01:00
committed by GitHub

View File

@@ -61,13 +61,14 @@ IMAP user and password need to be given for the Nextcloud login.
### Configuration
The parameters are `host, port, sslmode, domain`.
Possible values for sslmode are `ssl` or `tls`.
Add the following to your `config.php`:
'user_backends' => array(
array(
'class' => 'OC_User_IMAP',
'arguments' => array(
'127.0.0.1', 993, ssl, 'example.com'
'127.0.0.1', 993, 'ssl', 'example.com'
),
),
),