summaryrefslogtreecommitdiff
path: root/plugins/auth_imap/init.php
blob: cca279cb3120ef588dc2c2463aaaa178171f74a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/* Requires php-imap
	Put the following options in config.php:

	define('IMAP_AUTH_SERVER', 'your.imap.server:port');
	define('IMAP_AUTH_OPTIONS', '/tls/novalidate-cert/norsh');
	// More about options: http://php.net/manual/ru/function.imap-open.php

*/
class Auth_Imap extends Plugin implements IAuthModule {

	private $link;
	private $host;
	private $base;

	function about() {
		return array(1.0,
			"Authenticates against an IMAP server (configured in config.php)",
			"fox",
			true);
	}

	function init($host) {
		$this->link = $host->get_link();
		$this->host = $host;
		$this->base = new Auth_Base($this->link);

		$host->add_hook($host::HOOK_AUTH_USER, $this);
	}

	function authenticate($login, $password) {

		if ($login && $password) {
			$imap = imap_open(
				"{".IMAP_AUTH_SERVER.IMAP_AUTH_OPTIONS."}INBOX",
				$login,
				$password);

			if ($imap) {
				imap_close($imap);

				return $this->base->auto_create_user($login);
			}
		}

		return false;
	}

}

?>