Rename and update config. Update Makefile for this change.

This commit is contained in:
Matthew Wild 2008-11-29 02:28:00 +00:00
parent 2e0ae8ed92
commit 46d4eaa618
2 changed files with 6 additions and 7 deletions

View file

@ -18,7 +18,7 @@ install: prosody util/encodings.so util/encodings.so
install -m644 net/* $(SOURCE)/net install -m644 net/* $(SOURCE)/net
install -m644 util/* $(SOURCE)/util install -m644 util/* $(SOURCE)/util
install -m644 plugins/* $(MODULES) install -m644 plugins/* $(MODULES)
install -m644 prosody.cfg.lua $(CONFIG) install -m644 prosody.cfg.lua.dist $(CONFIG)/prosody.cfg.lua
$(MAKE) install -C util-src $(MAKE) install -C util-src
clean: clean:

View file

@ -1,7 +1,7 @@
-- lxmppd Example Configuration File -- Prosody Example Configuration File
-- --
-- If it wasn't already obvious, -- starts a comment, and all -- If it wasn't already obvious, -- starts a comment, and all
-- text after it is ignored by lxmppd. -- text after it is ignored by Prosody.
-- --
-- The config is split into sections, a global section, and one -- The config is split into sections, a global section, and one
-- for each defined host that we serve. You can add as many host -- for each defined host that we serve. You can add as many host
@ -23,7 +23,7 @@
--sonsIdon'trecommendit. --sonsIdon'trecommendit.
-- --
-- Tip: You can check that the syntax of this file is correct when you have finished -- Tip: You can check that the syntax of this file is correct when you have finished
-- by running: luac -p lxmppd.cfg.lua -- by running: luac -p prosody.cfg.lua
-- If there are any errors, it will let you know what and where they are, otherwise it -- If there are any errors, it will let you know what and where they are, otherwise it
-- will keep quiet. -- will keep quiet.
-- --
@ -33,8 +33,8 @@
-- Global settings go in this section -- Global settings go in this section
Host "*" Host "*"
-- This is the list of modules lxmppd will load on startup. -- This is the list of modules Prosody will load on startup.
-- It looks for plugins/mod_modulename.lua, so make sure that exists too. -- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too.
modules_enabled = { modules_enabled = {
"saslauth"; -- Authentication for clients and servers. Recommended if you want to log in. "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
"legacyauth"; -- Legacy authentication. Only used by some old clients and bots. "legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
@ -69,6 +69,5 @@ Host "example.com"
certificate = "certs/example.com.crt"; certificate = "certs/example.com.crt";
} }
Host "example.org"
enabled = false -- This will disable the host, preserving the config, but denying connections enabled = false -- This will disable the host, preserving the config, but denying connections