comparison mod_auth_external/mod_auth_external.lua @ 1997:199fb0a82c0a

mod_auth_external: Update URL to new location
author Kim Alvefur <zash@zash.se>
date Sun, 03 Jan 2016 14:08:48 +0100
parents 7dbde05b48a9
children 45380b77303d
comparison
equal deleted inserted replaced
1996:86f2881a04ea 1997:199fb0a82c0a
7 -- 7 --
8 -- This project is MIT/X11 licensed. Please see the 8 -- This project is MIT/X11 licensed. Please see the
9 -- COPYING file in the source package for more information. 9 -- COPYING file in the source package for more information.
10 -- 10 --
11 11
12 local lpty = assert(require "lpty", "mod_auth_external requires lpty: https://code.google.com/p/prosody-modules/wiki/mod_auth_external#Installation"); 12 local lpty = assert(require "lpty", "mod_auth_external requires lpty: https://modules.prosody.im/mod_auth_external.html#installation");
13 local usermanager = require "core.usermanager"; 13 local usermanager = require "core.usermanager";
14 local new_sasl = require "util.sasl".new; 14 local new_sasl = require "util.sasl".new;
15 local server = require "net.server"; 15 local server = require "net.server";
16 local have_async, async = pcall(require, "util.async"); 16 local have_async, async = pcall(require, "util.async");
17 17