Software /
code /
prosody-modules
Annotate
misc/upstart/prosody.conf @ 4832:bfd4af4caddc
mod_password_policy: Support for additional policies provided by other modules
E.g. check a password contains an uppercase character:
module:provides("password-policy", {
name = "contains_uppercase";
check_password = function (password, policy)
return (policy ~= true) or (not not password:match("%u"));
end;
})
Config:
password_policy = {
contains_uppercase = true;
}
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 22 Dec 2021 14:48:46 +0000 |
parent | 2610:68b56506fa50 |
rev | line source |
---|---|
2610 | 1 author "Kim Alvefur <zash@zash.se>" |
2 description "Prosody XMPP server" | |
3 | |
4 # Normal runlevel based start and stop | |
5 start on runlevel [2345] | |
6 stop on runlevel [!2345] | |
7 | |
8 # Alternate method for starting and stopping | |
9 # when a network interface comes and goes | |
10 # | |
11 # start on net-device-up IFACE=eth0 | |
12 # stop on net-device-down IFACE=eth0 | |
13 | |
14 # Change user so Prosdy doesn't have to | |
15 setgid prosody | |
16 setuid prosody | |
17 | |
18 # Set a sensible umask | |
19 umask 0027 | |
20 | |
21 # Run prosody | |
22 exec /usr/bin/prosody | |
23 | |
24 # Collect stdout into a log file | |
25 console log | |
26 | |
27 # Restart on crashes | |
28 respawn | |
29 respawn limit 5 10 |