]> git.netwichtig.de Git - user/henk/code/inspircd.git/log
user/henk/code/inspircd.git
6 years agoMove the init scripts out of the prefix into the new script dir.
Peter Powell [Thu, 21 Sep 2017 17:44:29 +0000 (18:44 +0100)]
Move the init scripts out of the prefix into the new script dir.

The previous directory was okay for home directory installs but
was problematic for system wide installs.

6 years agoConvert Disabled[CU]Modes to use a bitset instead of a char array.
Peter Powell [Mon, 11 Sep 2017 14:38:26 +0000 (15:38 +0100)]
Convert Disabled[CU]Modes to use a bitset instead of a char array.

6 years agoAdd ModeParser::IsModeChar to standardise mode validation.
Peter Powell [Mon, 11 Sep 2017 14:22:40 +0000 (15:22 +0100)]
Add ModeParser::IsModeChar to standardise mode validation.

6 years agoRaise the default listmode limit to 100 from 64.
Peter Powell [Thu, 14 Sep 2017 13:14:53 +0000 (14:14 +0100)]
Raise the default listmode limit to 100 from 64.

64 is a rather restrictive limit especially considering how fast
channels can accumulate bans. In fact, #InspIRCd hit the ban limit
in just over a year.

Having a low limit might have made sense when memory was expensive
but the average IRC server should be able to handle this fine now.

6 years agoFix the command for enabling m_sqlite3 in modules.conf.example.
Peter Powell [Thu, 14 Sep 2017 13:52:42 +0000 (14:52 +0100)]
Fix the command for enabling m_sqlite3 in modules.conf.example.

6 years agoChange FailedPortList to store a sockaddrs/int instead of string.
Peter Powell [Mon, 28 Aug 2017 18:28:53 +0000 (19:28 +0100)]
Change FailedPortList to store a sockaddrs/int instead of string.

6 years agoStore the server endpoint as a sockaddrs in ListenSocket.
Peter Powell [Mon, 28 Aug 2017 14:37:15 +0000 (15:37 +0100)]
Store the server endpoint as a sockaddrs in ListenSocket.

6 years agoGet rid of irc::sockets::satoap().
Peter Powell [Mon, 28 Aug 2017 14:13:25 +0000 (15:13 +0100)]
Get rid of irc::sockets::satoap().

This function is being misused in all but one scenario. It isn't
really worth keeping IMO.

6 years agoClean up the <security:runas{user,group}> code.
Peter Powell [Tue, 12 Sep 2017 13:28:20 +0000 (14:28 +0100)]
Clean up the <security:runas{user,group}> code.

- Get rid of unnecessary temporary values.
- Remove an erroneous usage comment.
- Reset errno before the call to setgroups.
- Unify the two stage initialisation of g/u.

6 years agoMove operquit out of the core and into core_user.
Peter Powell [Sun, 27 Aug 2017 20:11:12 +0000 (21:11 +0100)]
Move operquit out of the core and into core_user.

6 years agoFix killing elined clients on [gkz]line in some cases.
Peter Powell [Sat, 15 Jul 2017 17:04:26 +0000 (18:04 +0100)]
Fix killing elined clients on [gkz]line in some cases.

6 years agoFix m_cgiirc allowing malformed hosts sent via WEBIRC.
Peter Powell [Fri, 8 Sep 2017 19:47:10 +0000 (20:47 +0100)]
Fix m_cgiirc allowing malformed hosts sent via WEBIRC.

6 years agoImplement support for configurable casemapping & default to ASCII.
Peter Powell [Sun, 30 Jul 2017 16:34:05 +0000 (17:34 +0100)]
Implement support for configurable casemapping & default to ASCII.

6 years agoMove RPL_SYNTAX to 650 to prevent a collision with RPL_TEXT.
Peter Powell [Sat, 2 Sep 2017 18:53:48 +0000 (19:53 +0100)]
Move RPL_SYNTAX to 650 to prevent a collision with RPL_TEXT.

Also move the command name to a parameter so that it is more easily
parseable by software.

6 years agoConvert uncontroversial anonymous numerics to use constants.
Peter Powell [Tue, 5 Sep 2017 16:54:40 +0000 (17:54 +0100)]
Convert uncontroversial anonymous numerics to use constants.

6 years agoChange the numerics used by /COMMANDS to avoid a collision.
Peter Powell [Tue, 5 Sep 2017 18:10:03 +0000 (19:10 +0100)]
Change the numerics used by /COMMANDS to avoid a collision.

6 years agoImprove the /MODULES output.
Peter Powell [Tue, 5 Sep 2017 17:33:50 +0000 (18:33 +0100)]
Improve the /MODULES output.

6 years agoAdd support for length arguments in getString.
Peter Powell [Thu, 17 Aug 2017 13:54:49 +0000 (14:54 +0100)]
Add support for length arguments in getString.

6 years agoConvert a bunch of time-related config options to getDuration.
Peter Powell [Sun, 13 Aug 2017 15:26:48 +0000 (16:26 +0100)]
Convert a bunch of time-related config options to getDuration.

6 years agoMove <dns:timeout> out of the core.
Peter Powell [Sun, 3 Sep 2017 18:08:52 +0000 (19:08 +0100)]
Move <dns:timeout> out of the core.

6 years agoAdd a ConfigTag* parameter to the ServerPaths constructor.
Peter Powell [Sun, 27 Aug 2017 11:59:02 +0000 (12:59 +0100)]
Add a ConfigTag* parameter to the ServerPaths constructor.

This is used to directly read the settings from the config tag like
how ServerLimits works.

6 years agoFix {Host,IP}MatchesEveryone using Match instead of MatchCIDR.
Peter Powell [Thu, 31 Aug 2017 21:51:58 +0000 (22:51 +0100)]
Fix {Host,IP}MatchesEveryone using Match instead of MatchCIDR.

MatchCIDR is what [GKZ]Line::Matches uses it so we should also use
it here to prevent insane bans that should not pass from passing.

6 years agoRemove module file extensions from user-visible messages.
Peter Powell [Sun, 27 Aug 2017 12:25:29 +0000 (13:25 +0100)]
Remove module file extensions from user-visible messages.

6 years agoUpdate a bunch of references to the old command modules.
Peter Powell [Sun, 27 Aug 2017 12:18:58 +0000 (13:18 +0100)]
Update a bunch of references to the old command modules.

6 years agoMatch against core_*.so when looking for core modules.
Peter Powell [Sun, 20 Aug 2017 13:51:30 +0000 (14:51 +0100)]
Match against core_*.so when looking for core modules.

6 years agoUse DLLManager::RetrieveLastError() on all platforms.
Peter Powell [Sat, 26 Aug 2017 16:25:20 +0000 (17:25 +0100)]
Use DLLManager::RetrieveLastError() on all platforms.

This prevents a bug where we send malformed messages to the client
when dlerror() returns an error message containing more than one
line. This has been observed on macOS but probably will happen on
other UNIX systems too.

This also fixes a potential problem where dlerror() returns NULL
and converting it to std::string causes a crash. I can't see any
way that this might happen but it is better to be safe than sorry.

6 years agoRemove some outdated documentation from the SocketEngine class.
Peter Powell [Sat, 26 Aug 2017 15:07:52 +0000 (16:07 +0100)]
Remove some outdated documentation from the SocketEngine class.

6 years agoMake the build reproducible by removing time related macros.
Peter Powell [Wed, 16 Aug 2017 15:59:56 +0000 (16:59 +0100)]
Make the build reproducible by removing time related macros.

The compile time on boot is not accurate as it will only change
when the translation unit containing it is edited.

The startup time in RPL_SERVERCREATED is a lot more useful than
the compilation time. ngIRCd also implements this behaviour.

6 years agoFix a bunch of Doxygen warnings.
Peter Powell [Fri, 25 Aug 2017 12:03:53 +0000 (13:03 +0100)]
Fix a bunch of Doxygen warnings.

6 years agoFix mistakenly hardcoding the halfop prefix char in timedbans.
Peter Powell [Fri, 25 Aug 2017 12:12:44 +0000 (13:12 +0100)]
Fix mistakenly hardcoding the halfop prefix char in timedbans.

This will almost always be % but if the server admin is using the
customprefix module and remaps it to something else messages will
not be sent out correctly.

6 years agom_chghost: use an iterator instead of a NULL-checking loop.
Peter Powell [Sun, 13 Aug 2017 07:35:20 +0000 (08:35 +0100)]
m_chghost: use an iterator instead of a NULL-checking loop.

6 years agom_sethost: check the length first for consistency with CHGHOST.
Peter Powell [Sun, 13 Aug 2017 07:52:39 +0000 (08:52 +0100)]
m_sethost: check the length first for consistency with CHGHOST.

6 years agom_sethost: use length() instead of counting in the loop.
Peter Powell [Sun, 13 Aug 2017 07:32:09 +0000 (08:32 +0100)]
m_sethost: use length() instead of counting in the loop.

6 years agoUpdate the link to the CIDR subnetting charts.
Peter Powell [Sun, 13 Aug 2017 16:24:20 +0000 (17:24 +0100)]
Update the link to the CIDR subnetting charts.

6 years agoRemove <alias:matchcase> and associated code.
Peter Powell [Sun, 30 Jul 2017 18:20:35 +0000 (19:20 +0100)]
Remove <alias:matchcase> and associated code.

This was never documented and seems pretty useless.

6 years agoChange the maximum nick/user size to match other implementations.
Peter Powell [Fri, 14 Jul 2017 19:38:30 +0000 (20:38 +0100)]
Change the maximum nick/user size to match other implementations.

6 years agoUse RPL_LUSEROP instead of the raw numeric in m_hideoper.
Peter Powell [Fri, 11 Aug 2017 17:53:35 +0000 (18:53 +0100)]
Use RPL_LUSEROP instead of the raw numeric in m_hideoper.

6 years agoFix a broken distro constraint in the m_ssl_openssl PackageInfo.
Peter Powell [Fri, 11 Aug 2017 15:10:30 +0000 (16:10 +0100)]
Fix a broken distro constraint in the m_ssl_openssl PackageInfo.

6 years agoMerge pull request #1141 from SaberUK/master+windows-purge
Peter Powell [Sun, 6 Aug 2017 20:24:30 +0000 (21:24 +0100)]
Merge pull request #1141 from SaberUK/master+windows-purge

Purge code for Windows XP and MSVC pre-2015.

6 years agoPurge code for Windows XP and MSVC pre-2015.
Peter Powell [Sun, 14 Feb 2016 08:33:24 +0000 (08:33 +0000)]
Purge code for Windows XP and MSVC pre-2015.

6 years agoMerge pull request #1347 from SaberUK/insp20+ctcp-action
Peter Powell [Sat, 5 Aug 2017 17:33:54 +0000 (18:33 +0100)]
Merge pull request #1347 from SaberUK/insp20+ctcp-action

[2.0] Fix exempting CTCP ACTIONs in m_blockcaps and m_noctcp.

6 years agoMerge pull request #1351 from SaberUK/master+webirc
Peter Powell [Sat, 5 Aug 2017 17:33:04 +0000 (18:33 +0100)]
Merge pull request #1351 from SaberUK/master+webirc

Allow filtering WebIRC connections into a connect class by gateway.

6 years agoFix the server failing to rehash when <server:name> is unset.
Peter Powell [Sun, 30 Jul 2017 16:44:53 +0000 (17:44 +0100)]
Fix the server failing to rehash when <server:name> is unset.

6 years agoFix exceptions not having a line ending when appending to errmsg.
Peter Powell [Sun, 30 Jul 2017 17:01:38 +0000 (18:01 +0100)]
Fix exceptions not having a line ending when appending to errmsg.

6 years agoMerge pull request #1271 from SaberUK/master+exemption
Peter Powell [Thu, 27 Jul 2017 12:13:16 +0000 (13:13 +0100)]
Merge pull request #1271 from SaberUK/master+exemption

Move the OnCheckExemption hook out of the core.

6 years agoMerge pull request #1300 from SaberUK/master+genssl
Peter Powell [Tue, 25 Jul 2017 17:23:41 +0000 (18:23 +0100)]
Merge pull request #1300 from SaberUK/master+genssl

Add support for generating a certificate signing request to genssl.

6 years agoRemove support for building with BSD Make.
Peter Powell [Wed, 12 Jul 2017 12:08:28 +0000 (13:08 +0100)]
Remove support for building with BSD Make.

BSD users should install GNU Make to build InspIRCd.

6 years agoMerge pull request #1221 from SaberUK/master+isupport-maxlist
Peter Powell [Mon, 24 Jul 2017 15:51:01 +0000 (16:51 +0100)]
Merge pull request #1221 from SaberUK/master+isupport-maxlist

Replace the deprecated MAXBANS token with MAXLIST.

6 years agoReplace the deprecated MAXBANS token with MAXLIST.
Peter Powell [Mon, 24 Jul 2017 13:44:36 +0000 (14:44 +0100)]
Replace the deprecated MAXBANS token with MAXLIST.

6 years agoAdd DEFAULT_LIST_SIZE for the default list mode size.
Peter Powell [Mon, 24 Jul 2017 13:38:56 +0000 (14:38 +0100)]
Add DEFAULT_LIST_SIZE for the default list mode size.

6 years agoAdd ADMIN to the list of commands that shunned users can run.
Peter Powell [Mon, 24 Jul 2017 13:04:34 +0000 (14:04 +0100)]
Add ADMIN to the list of commands that shunned users can run.

6 years agoMerge pull request #1232 from Adam-/master+kill
Peter Powell [Mon, 24 Jul 2017 12:01:11 +0000 (13:01 +0100)]
Merge pull request #1232 from Adam-/master+kill

Rewrite cmd_kill, fix kill snotices

6 years agoImprove the numerics we send in response to MAP.
Peter Powell [Thu, 13 Jul 2017 14:44:41 +0000 (15:44 +0100)]
Improve the numerics we send in response to MAP.

- Send the same numerics as ircu/ircd-hybrid/charybdis/ratbox/etc.
  These are much more widespread and predate the Unreal numeric we
  currently send.
- Move RPL_MAPUSERS to 018. This numeric is unused and does not
  conflict with RPL_PRIVS like our current one does.

6 years agocmd_kill: deduplicate logic
Adam [Sun, 2 Oct 2016 02:15:23 +0000 (22:15 -0400)]
cmd_kill: deduplicate logic

6 years agocmd_kill: log all kills from or to remote users
Adam [Sun, 2 Oct 2016 02:06:43 +0000 (22:06 -0400)]
cmd_kill: log all kills from or to remote users

6 years agocmd_kill: correct notices to show as a remote kill when a remote oper kills a local...
Adam [Sun, 2 Oct 2016 02:03:53 +0000 (22:03 -0400)]
cmd_kill: correct notices to show as a remote kill when a remote oper kills a local user

6 years agocmd_kill: rename u to target
Adam [Sun, 2 Oct 2016 01:55:55 +0000 (21:55 -0400)]
cmd_kill: rename u to target

6 years agocmd_kill: don't show kill path in KILL messages to users
Adam [Sun, 2 Oct 2016 01:51:28 +0000 (21:51 -0400)]
cmd_kill: don't show kill path in KILL messages to users

6 years agocmd_kill: reshuffle
Adam [Sun, 2 Oct 2016 01:45:10 +0000 (21:45 -0400)]
cmd_kill: reshuffle

6 years agoMerge pull request #1270 from SaberUK/master+sasl
Peter Powell [Wed, 12 Jul 2017 20:04:43 +0000 (21:04 +0100)]
Merge pull request #1270 from SaberUK/master+sasl

Always append the SSL fingerprint even if EXTERNAL is not used.

6 years agoRemove an unused variable in m_cloaking.
Peter Powell [Wed, 12 Jul 2017 15:46:26 +0000 (16:46 +0100)]
Remove an unused variable in m_cloaking.

6 years agoMerge pull request #1267 from SaberUK/master+config
Peter Powell [Wed, 12 Jul 2017 15:41:28 +0000 (16:41 +0100)]
Merge pull request #1267 from SaberUK/master+config

Store config values in a map instead of a unique vector of pairs.

6 years agoMerge pull request #1211 from SaberUK/master+override
Peter Powell [Wed, 12 Jul 2017 14:38:53 +0000 (15:38 +0100)]
Merge pull request #1211 from SaberUK/master+override

Add CXX11_OVERRIDE to overridden members that lack it.

6 years agoMerge pull request #677 from Robby-/master-dnsblzline
Peter Powell [Wed, 12 Jul 2017 14:04:01 +0000 (15:04 +0100)]
Merge pull request #677 from Robby-/master-dnsblzline

[master] m_dnsbl: Correct the address in the Z-line snomask message.

6 years agoAdd CXX11_OVERRIDE to overridden members that lack it.
Peter Powell [Wed, 12 Jul 2017 13:41:52 +0000 (14:41 +0100)]
Add CXX11_OVERRIDE to overridden members that lack it.

This fixes a ton of warnings when building on compilers that
default to C++11 or newer.

6 years agoMerge pull request #1337 from SaberUK/master+merge
Peter Powell [Wed, 12 Jul 2017 13:25:28 +0000 (14:25 +0100)]
Merge pull request #1337 from SaberUK/master+merge

Merge v2.0.23 and v2.0.24 into master.

6 years agoMerge pull request #1356 from SISheogorath/master+issuetemplate
Peter Powell [Wed, 12 Jul 2017 13:04:17 +0000 (14:04 +0100)]
Merge pull request #1356 from SISheogorath/master+issuetemplate

Add issue template to avoid support requests in bugtracker

6 years agoFix some minor bugs in the Module Manager.
Peter Powell [Wed, 12 Jul 2017 11:04:42 +0000 (12:04 +0100)]
Fix some minor bugs in the Module Manager.

- Fix installation of module.
- Exit after listing modules.

6 years agoAdd issue template to avoid support requests in bugtracker
Sheogorath [Mon, 10 Jul 2017 14:34:45 +0000 (16:34 +0200)]
Add issue template to avoid support requests in bugtracker

6 years agoRemove use of global barewords in most file handling code.
Peter Powell [Tue, 11 Jul 2017 16:37:20 +0000 (17:37 +0100)]
Remove use of global barewords in most file handling code.

This is not considered good practise in modern Perl code.

A few cases of this still remain in code which is due to be
rewritten anyway.

6 years agoUpdate the version in the Doxyfile from 2.0 to 3.0.
Peter Powell [Tue, 11 Jul 2017 15:24:56 +0000 (16:24 +0100)]
Update the version in the Doxyfile from 2.0 to 3.0.

6 years agoMerge pull request #1283 from SaberUK/insp20+mailmap
Peter Powell [Tue, 11 Jul 2017 14:48:11 +0000 (15:48 +0100)]
Merge pull request #1283 from SaberUK/insp20+mailmap

[2.0] Add a mailmap to clean up the output of git-shortlog.

6 years agoMerge pull request #1310 from rburchell/master
Attila Molnar [Tue, 11 Jul 2017 13:34:43 +0000 (15:34 +0200)]
Merge pull request #1310 from rburchell/master

Improve and centralize socket engine event counters.

6 years agoImprove and centralize socket engine event counters.
Robin Burchell [Wed, 22 Mar 2017 16:59:08 +0000 (17:59 +0100)]
Improve and centralize socket engine event counters.

The write counters were close to useless because they were only
incremented on a write "event" which is only triggered when writing
would block.

Read handling was a little more useful in that all reads must happen
through the socket engine, so these were happening at the correct time,
but we can clean this up by doing it in the SE itself rather than each
platform port.

This means that both read and write events are now easily and usefully
defined as "a syscall of either read or write was attempted".

We also count empty read and write events as being an event, because
they still were an attempt to poll a socket in some way. This may help
to identify "bad" code which is repeatedly trying to read a socket for
some reason.

Lastly, we check for failed read/write calls, and log them as an error
event. A lot of the time, this is how sockets are determined as being
disconnected (ie. at read/write time).

While we're at it, split Update() in two to make the calls more
self-describing. This has no real impact since only one call is made at
a time anyway.

6 years agoMerge v2.0.23 and v2.0.24 into master.
Peter Powell [Sun, 9 Jul 2017 21:36:40 +0000 (22:36 +0100)]
Merge v2.0.23 and v2.0.24 into master.

6 years agoMerge pull request #1302 from Adam-/master+txt
Attila Molnar [Sun, 9 Jul 2017 19:46:20 +0000 (21:46 +0200)]
Merge pull request #1302 from Adam-/master+txt

core_dns: add support for txt records

6 years agoMerge pull request #1338 from SaberUK/master+openvz
Attila Molnar [Sun, 9 Jul 2017 19:16:52 +0000 (21:16 +0200)]
Merge pull request #1338 from SaberUK/master+openvz

Warn the user about clock drifting when running on OpenVZ.

6 years agoMerge pull request #1320 from SaberUK/master+autoperm
Attila Molnar [Sun, 9 Jul 2017 19:15:49 +0000 (21:15 +0200)]
Merge pull request #1320 from SaberUK/master+autoperm

Automatically apply +P to all permanent channels.

6 years agoMerge pull request #1335 from SaberUK/master+se
Attila Molnar [Sun, 9 Jul 2017 19:15:01 +0000 (21:15 +0200)]
Merge pull request #1335 from SaberUK/master+se

Tidy up the socket engine selection code.

6 years agoMerge pull request #1334 from SaberUK/master+md5
Attila Molnar [Sun, 9 Jul 2017 19:14:28 +0000 (21:14 +0200)]
Merge pull request #1334 from SaberUK/master+md5

Remove some dead code from m_md5.

6 years agoMerge pull request #1319 from SaberUK/master+compiler-detection
Attila Molnar [Sun, 9 Jul 2017 19:14:01 +0000 (21:14 +0200)]
Merge pull request #1319 from SaberUK/master+compiler-detection

Switch compiler detection to use a more reliable method.

6 years agoMerge pull request #1333 from SaberUK/insp20+openbsd
Attila Molnar [Sun, 9 Jul 2017 19:10:27 +0000 (21:10 +0200)]
Merge pull request #1333 from SaberUK/insp20+openbsd

[2.0] Tell OpenBSD users that they need to use a different make command.

6 years agoMerge pull request #1343 from SaberUK/insp20+securelist
Attila Molnar [Sun, 9 Jul 2017 19:04:34 +0000 (21:04 +0200)]
Merge pull request #1343 from SaberUK/insp20+securelist

[2.0] Update the securelist exemption for IRC-Source's crawler.

7 years agoAllow filtering WebIRC connections into a connect class by gateway.
Peter Powell [Thu, 22 Jun 2017 11:24:11 +0000 (12:24 +0100)]
Allow filtering WebIRC connections into a connect class by gateway.

7 years agoFix exempting CTCP ACTIONs in m_blockcaps and m_noctcp.
Peter Powell [Fri, 16 Jun 2017 17:08:40 +0000 (18:08 +0100)]
Fix exempting CTCP ACTIONs in m_blockcaps and m_noctcp.

Previously we assumed that CTCP ACTIONs matched "\1ACTION ". This
is incorrect because "\1ACTION\1" and "\1ACTION" are valid CTCPs.

7 years agoUpdate the securelist exemption for IRC-Source's crawler.
Peter Powell [Tue, 30 May 2017 07:49:14 +0000 (08:49 +0100)]
Update the securelist exemption for IRC-Source's crawler.

7 years agoWarn the user about clock drifting when running on OpenVZ.
Peter Powell [Tue, 16 May 2017 10:18:10 +0000 (11:18 +0100)]
Warn the user about clock drifting when running on OpenVZ.

7 years agoTidy up the socket engine selection code.
Peter Powell [Fri, 19 May 2017 16:28:37 +0000 (17:28 +0100)]
Tidy up the socket engine selection code.

7 years agoRemove some dead code from m_md5.
Peter Powell [Fri, 19 May 2017 11:39:01 +0000 (12:39 +0100)]
Remove some dead code from m_md5.

This is left over from the old hashing system that allowed you to
customise these values.

7 years agoTell OpenBSD users that they need to use a different make command.
Peter Powell [Fri, 19 May 2017 09:37:24 +0000 (10:37 +0100)]
Tell OpenBSD users that they need to use a different make command.

7 years agoRelease v2.0.24 v2.0.24
Adam [Thu, 18 May 2017 12:35:22 +0000 (08:35 -0400)]
Release v2.0.24

7 years agom_override: fix parentheses compiler warning
Adam [Thu, 18 May 2017 00:10:51 +0000 (20:10 -0400)]
m_override: fix parentheses compiler warning

7 years agoMerge pull request #1094 from SISheogorath/insp20+fixed-Override
Adam [Wed, 17 May 2017 23:46:28 +0000 (19:46 -0400)]
Merge pull request #1094 from SISheogorath/insp20+fixed-Override

fix override issue

7 years agoMerge pull request #1328 from Adam-/insp20+sakick
Adam [Wed, 17 May 2017 22:03:38 +0000 (18:03 -0400)]
Merge pull request #1328 from Adam-/insp20+sakick

m_sakick: remove unused "Unable to kick" notice

7 years agoMerge pull request #1284 from Adam-/insp20+preregcloak
Adam [Wed, 17 May 2017 22:02:54 +0000 (18:02 -0400)]
Merge pull request #1284 from Adam-/insp20+preregcloak

m_cloaking: don't apply cloak to already cloaked users during registration

7 years agom_cloaking: don't apply cloak to already cloaked users during registration
Adam [Wed, 7 Sep 2016 20:08:28 +0000 (16:08 -0400)]
m_cloaking: don't apply cloak to already cloaked users during registration

This can happen if services set a vhost during registration (like with
SASL)

7 years agoMerge pull request #1330 from SaberUK/insp20+mm-inc
Attila Molnar [Wed, 17 May 2017 21:48:38 +0000 (23:48 +0200)]
Merge pull request #1330 from SaberUK/insp20+mm-inc

[2.0] Fix ModuleManager not being able to find make::configure.

7 years agoMerge pull request #1321 from SaberUK/insp20+permwarn
Attila Molnar [Wed, 17 May 2017 21:47:27 +0000 (23:47 +0200)]
Merge pull request #1321 from SaberUK/insp20+permwarn

[2.0] Warn when a user configures a permanent channel without +P.

7 years agoMerge pull request #1269 from Adam-/insp20+saslhost
Attila Molnar [Wed, 17 May 2017 21:44:34 +0000 (23:44 +0200)]
Merge pull request #1269 from Adam-/insp20+saslhost

m_sasl: send host/ip info

7 years agoMerge pull request #1230 from SaberUK/insp20+ipcache
Attila Molnar [Wed, 17 May 2017 21:41:32 +0000 (23:41 +0200)]
Merge pull request #1230 from SaberUK/insp20+ipcache

[2.0] Invalidate the caches properly when User::SetClientIP is called.