summaryrefslogtreecommitdiff
path: root/net-im/prosody/files
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2011-04-09 18:49:13 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2011-04-09 18:49:13 +0200
commitdef0e8289f5770251551aa8ebbfb360775e94c92 (patch)
tree798c2dc3aa78c896de4686b105482ea193b6df80 /net-im/prosody/files
parent117c48bc7b0bd63a42daa9aa69f78cbad66f97bb (diff)
downloadoverlay-def0e8289f5770251551aa8ebbfb360775e94c92.tar.gz
overlay-def0e8289f5770251551aa8ebbfb360775e94c92.tar.bz2
overlay-def0e8289f5770251551aa8ebbfb360775e94c92.zip
dump old prosody versions
Diffstat (limited to 'net-im/prosody/files')
-rw-r--r--net-im/prosody/files/prosody-0.6.2-cfg.lua.patch17
-rw-r--r--net-im/prosody/files/prosody-0.7.0-cfg.lua.patch39
2 files changed, 0 insertions, 56 deletions
diff --git a/net-im/prosody/files/prosody-0.6.2-cfg.lua.patch b/net-im/prosody/files/prosody-0.6.2-cfg.lua.patch
deleted file mode 100644
index 338daef..0000000
--- a/net-im/prosody/files/prosody-0.6.2-cfg.lua.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- prosody.cfg.lua.old 2010-05-27 11:10:45.000000000 +0200
-+++ prosody.cfg.lua.dist 2010-05-27 11:12:21.000000000 +0200
-@@ -16,6 +16,14 @@
- -- Settings in this section apply to the whole server and are the default settings
- -- for any virtual hosts
-
-+prosody_user = "jabber"
-+prosody_group = "jabber"
-+pidfile = "/var/run/jabber/prosody.pid"
-+
-+log = "/var/log/jabber/prosody.log"
-+-- Requires mod_posix to be loaded
-+-- log = "*syslog"
-+
- -- This is a (by default, empty) list of accounts that are admins
- -- for the server. Note that you must create the accounts separately
- -- (see http://prosody.im/doc/creating_accounts for info)
diff --git a/net-im/prosody/files/prosody-0.7.0-cfg.lua.patch b/net-im/prosody/files/prosody-0.7.0-cfg.lua.patch
deleted file mode 100644
index 68423f4..0000000
--- a/net-im/prosody/files/prosody-0.7.0-cfg.lua.patch
+++ /dev/null
@@ -1,39 +0,0 @@
---- prosody.cfg.lua.old 2010-06-13 02:23:02.000000000 +0200
-+++ prosody.cfg.lua.dist 2010-06-18 10:45:40.165045845 +0200
-@@ -16,6 +16,10 @@
- -- Settings in this section apply to the whole server and are the default settings
- -- for any virtual hosts
-
-+prosody_user = "jabber"
-+prosody_group = "jabber"
-+pidfile = "/var/run/jabber/prosody.pid"
-+
- -- This is a (by default, empty) list of accounts that are admins
- -- for the server. Note that you must create the accounts separately
- -- (see http://prosody.im/doc/creating_accounts for info)
-@@ -26,6 +30,14 @@
- -- For more information see: http://prosody.im/doc/libevent
- --use_libevent = true;
-
-+-- Enable the Cyrus SASL backend for authentication against different backends,
-+-- such as PAM, LDAP, SQL and more.
-+-- It also allows the use of GSSAPI for single-sign-on services.
-+-- For more information see: http://prosody.im/doc/cyrus_sasl
-+--sasl_backend = "cyrus"
-+-- Optional, defaults to "xmpp"
-+--cyrus_service_name = "xmpp"
-+
- -- This is the list of modules Prosody will load on startup.
- -- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too.
- -- Documentation on modules can be found at: http://prosody.im/doc/modules
-@@ -90,7 +102,9 @@
-
- -- Logging configuration
- -- For advanced logging see http://prosody.im/doc/logging
--log = "prosody.log";
-+log = "/var/log/jabber/prosody.log"
-+-- Requires mod_posix to be loaded
-+-- log = "*syslog"
- debug = false; -- Log debug messages?
-
- ----------- Virtual hosts -----------