mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-04-30 16:00:25 +00:00
* Changed the end-of-line encodings of all non-Windows-related and non-autogenerated text files to use UNIX LF (lots of them had mixed LF/CRLF). Conflicts: inc/caldav-PUT-functions.php
12 lines
291 B
Plaintext
12 lines
291 B
Plaintext
/**
|
|
* Authentication against IMAP using the imap_open function.
|
|
*/
|
|
$c->authenticate_hook['call'] = 'IMAP_PAM_check';
|
|
$c->authenticate_hook['config'] = array(
|
|
'imap_url' => '{localhost:993/imap/ssl/novalidate-cert}',
|
|
'email_base' => 'example.com'
|
|
);
|
|
|
|
include('drivers_imap_pam.php');
|
|
|