From d73be0b3967ac2f5bfb0278e6e2cbf7bfe78f54a Mon Sep 17 00:00:00 2001 From: DjSlash Date: Fri, 18 Mar 2011 19:49:35 +0100 Subject: Fix for bug 80 --- docs/inspircd.helpop-full.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/inspircd.helpop-full.example b/docs/inspircd.helpop-full.example index 4e679901c..98604ceaf 100644 --- a/docs/inspircd.helpop-full.example +++ b/docs/inspircd.helpop-full.example @@ -96,13 +96,13 @@ and S queries the status."> Authenticate for a vhost using the specified username and password."> - -data005 = v.str(); FOREACH_MOD(I_On005Numeric,On005Numeric(Config->data005)); Config->Update005(); -- cgit v1.2.3 From 1a721c948dd2db82c9a3b4b7458881f1b118bcf5 Mon Sep 17 00:00:00 2001 From: DjSlash Date: Mon, 28 Mar 2011 16:03:54 +0200 Subject: Updated examples, removing ziplinks --- docs/inspircd.conf.example | 7 +++---- docs/links.conf.example | 10 ++++------ 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/docs/inspircd.conf.example b/docs/inspircd.conf.example index fff58a868..7dff4bd7d 100644 --- a/docs/inspircd.conf.example +++ b/docs/inspircd.conf.example @@ -164,12 +164,11 @@ -# When linking servers, the openssl and gnutls transports are completely +# When linking servers, the openssl and gnutls implementations are completely # link-compatible and can be used alongside each other # on each end of the link without any significant issues. -# Transports can only be used on server blocks. -# Supported Transports are: "ziplinks", "openssl" and "gnutls". -# You must load m_ziplinks module for zip, m_ssl_openssl for openssl +# Supported ssl types are: "openssl" and "gnutls". +# You must load, m_ssl_openssl for openssl # or m_ssl_gnutls for gnutls. diff --git a/docs/links.conf.example b/docs/links.conf.example index 2357220f9..27213f784 100644 --- a/docs/links.conf.example +++ b/docs/links.conf.example @@ -40,14 +40,12 @@ # ssl: If defined, this states extra modules that will be used when # making an outbound connection to the server. Options are: "openssl" - # and "gnutls" for encryption (they are compatible with each other) and - # "ziplinks" for compression. You must use the same (or a compatible) - # transport on both sides of the link. + # and "gnutls" for encryption (they are compatible with each other). + # You must use the same (or a compatible) transport on both sides of the link. # # You will need to load the m_ssl_openssl.so module for openssl, - # m_ssl_gnutls.so for gnutls or m_ziplinks.so for ziplinks. The server - # port that you connect to must be capable of accepting this type of - # connection. + # m_ssl_gnutls.so for gnutls. The server port that you connect to + # must be capable of accepting this type of connection. ssl="gnutls" # fingerprint: If defined, this option will force servers to be -- cgit v1.2.3 From 171a334bcd2fd78adf281ee4e39214c26ded315f Mon Sep 17 00:00:00 2001 From: DjSlash Date: Wed, 30 Mar 2011 23:07:46 +0200 Subject: Fix bug 126, thanks to Seb --- src/modules/m_silence.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/m_silence.cpp b/src/modules/m_silence.cpp index bd1e1ffe0..e99644298 100644 --- a/src/modules/m_silence.cpp +++ b/src/modules/m_silence.cpp @@ -317,7 +317,7 @@ class ModuleSilence : public Module { if (IS_LOCAL(i->first)) { - if (MatchPattern(i->first, sender, public_silence) == MOD_RES_ALLOW) + if (MatchPattern(i->first, sender, public_silence) == MOD_RES_DENY) { exempt_list.insert(i->first); } -- cgit v1.2.3 From 00d5b1e12c5f3735e23ae29f6de505fb2d868a5a Mon Sep 17 00:00:00 2001 From: DjSlash Date: Wed, 30 Mar 2011 23:41:40 +0200 Subject: Updated helpop regarding SILENCE, example had syntax wrong --- docs/inspircd.helpop-full.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/inspircd.helpop-full.example b/docs/inspircd.helpop-full.example index 98604ceaf..f85aab9f5 100644 --- a/docs/inspircd.helpop-full.example +++ b/docs/inspircd.helpop-full.example @@ -132,7 +132,7 @@ Valid SILENCE Flags Multiple letters may be specified. For an exception, you msut pair x with what you want excepted. For example, if you wanted to except everything from people with a host matching *.foo.net, you would do -/SILENCE +xa *!*@*.foo.net +/SILENCE +*!*@*.foo.net xa /SILENCE without a parameter will list the hostmasks that you have silenced."> -- cgit v1.2.3