mod_tls: Remove extraneous flag to starttls() for s2sout connecections
[prosody.git] / plugins / mod_auth_cyrus.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
4 -- Copyright (C) 2010 Jeff Mitchell
5 --
6 -- This project is MIT/X11 licensed. Please see the
7 -- COPYING file in the source package for more information.
8 --
9
10 local log = require "util.logger".init("auth_cyrus");
11
12 local cyrus_service_realm = module:get_option("cyrus_service_realm");
13 local cyrus_service_name = module:get_option("cyrus_service_name");
14 local cyrus_application_name = module:get_option("cyrus_application_name");
15
16 prosody.unlock_globals(); --FIXME: Figure out why this is needed and
17                                                   -- why cyrussasl isn't caught by the sandbox
18 local cyrus_new = require "util.sasl_cyrus".new;
19 prosody.lock_globals();
20 local new_sasl = function(realm)
21         return cyrus_new(
22                 cyrus_service_realm or realm,
23                 cyrus_service_name or "xmpp",
24                 cyrus_application_name or "prosody"
25         );
26 end
27
28 function new_default_provider(host)
29         local provider = { name = "cyrus" };
30         log("debug", "initializing default authentication provider for host '%s'", host);
31
32         function provider.test_password(username, password)
33                 return nil, "Legacy auth not supported with Cyrus SASL.";
34         end
35
36         function provider.get_password(username)
37                 return nil, "Passwords unavailable for Cyrus SASL.";
38         end
39         
40         function provider.set_password(username, password)
41                 return nil, "Passwords unavailable for Cyrus SASL.";
42         end
43
44         function provider.user_exists(username)
45                 return true;
46         end
47
48         function provider.create_user(username, password)
49                 return nil, "Account creation/modification not available with Cyrus SASL.";
50         end
51
52         function provider.get_sasl_handler()
53                 local realm = module:get_option("sasl_realm") or module.host;
54                 return new_sasl(realm);
55         end
56
57         return provider;
58 end
59
60 module:add_item("auth-provider", new_default_provider(module.host));
61