Sadie Powell
f83558f10b
Log when freopen and chown fail.
2021-04-08 13:47:13 +01:00
PeGaSuS
9483da3239
Added Account to show the main nick of a grouped nick(s).
...
#270
2021-02-19 01:42:13 +00:00
Matt Schatz
c67911bfcc
bots: Fix dtor channel iterator being invalidated.
...
The call to UnAssign() erases the channel from the set which
invalidates the iterator in this loop. Handle this in the same
manner as the NickCore dtor.
2021-02-19 01:37:08 +00:00
Adam
4d271e0210
cs_access: require accounts to be confirmed for level 0 access
2021-01-31 12:05:25 -05:00
Robby
c5a4e8337c
Update copyright to 2021.
...
This was done with:
find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2021 Anope Team/i' {} \;
2021-01-07 03:31:08 +01:00
PeGaSuS
7e08e7cb6c
Set killprotect as a default option in nickserv.example.conf.
2021-01-07 03:24:17 +01:00
Michael Hazell
4031dc7321
inspircd3: Enable support for channel SQLines ( #268 )
2021-01-01 19:03:23 +00:00
Robby
d1e4943800
Add kill_immed as an available option to nickserv.example.conf.
2020-11-20 17:00:00 +01:00
Sadie Powell
74f18d7b1d
Only grant an account an identifier when the identifier is needed.
2020-11-19 14:12:18 +00:00
Sadie Powell
3856538e48
Bump for 2.0.10-git.
2020-10-22 12:10:08 +01:00
Sadie Powell
236affa2a4
Release 2.0.9.
2.0.9
2020-10-22 12:08:50 +01:00
Sadie Powell
f8d8104d82
Update the changelog.
2020-10-22 12:07:56 +01:00
Sadie Powell
a3c7f716bd
Fix the query used by IRC2SQL for updating server information.
2020-10-21 16:26:08 +01:00
Sadie Powell
b2b53a1e01
Fix account identifiers conflicting with SQL row identifiers.
2020-10-21 12:20:26 +01:00
Sadie Powell
95f4e29edd
Unset the account id before the account name on InspIRCd.
...
This avoids the id being shown on the logout event.
2020-10-12 17:47:41 +01:00
Sadie Powell
cdf147f351
Fix not sending an account id to InspIRCd on SASL.
...
Also, send the account id first so it shows on the ACCOUNT message.
2020-10-12 17:30:05 +01:00
Sadie Powell
2cf507ed66
Bump for 2.0.9-git.
2020-10-07 13:15:31 +01:00
Sadie Powell
46e1395e62
Release 2.0.8.
2.0.8
2020-10-07 13:15:31 +01:00
Sadie Powell
6117299ecd
Update the changelog.
2020-10-07 13:15:31 +01:00
Sadie Powell
f8777097d1
Fix last case check for le64toh.
2020-10-07 13:15:31 +01:00
TheMythPT
a79046e025
Update nickserv.example.conf
...
This breaks the `killprotect' functionality, because a user is expected to turn into guest after the specified amount of time.
Also new users that register their nicknames will wonder why they can't join a +R channel but they didn't change their nick to Guest*
2020-10-06 15:20:56 +01:00
Sadie Powell
d0e8392445
Fix the global/global command showing the wrong origin nick.
2020-10-06 15:13:14 +01:00
Sadie Powell
af8056d2dd
Simplify the definition of _le64toh in the siphash implementation.
2020-10-06 14:52:55 +01:00
Sadie Powell
4ba871c631
Remove use of the deprecated register keyword.
...
Fixes a build error on C++17 compilers.
2020-10-02 16:53:13 +01:00
miwob
da08dd6d0e
Minor spelling fix in operserv.example.conf. it's vs its
2020-10-02 16:52:38 +01:00
miwob
1ac3b38fa8
Update/modernize ircd-hybrid protocol module to stay link compatible with next ircd-hybrid release
2020-10-02 14:53:08 +01:00
Sadie Powell
c29b72fcdc
Add C++98 and C++14 build matrixes to the Linux CI.
2020-10-02 14:27:04 +01:00
Sadie Powell
a3673a5a2d
Update the changelogs.
2020-10-01 10:26:20 +01:00
Sam James (sam_c)
9701cbcd08
Fix musl build (gettext internals)
...
__USE_GNU_GETTEXT is exposed by musl because they provide
a GNU gettext-compatible interface. This doesn't mean they
provide all the internals that glibc does.
Check for __GLIBC__ if using internal _nl_msg_cat_cntr.
Signed-off-by: Sam James (sam_c) <sam@cmpct.info >
2020-09-28 13:11:24 +01:00
Sadie Powell
1af02bf2a9
Switch from Travis CI to GitHub Actions.
...
Closes #153 .
2020-09-28 12:47:52 +01:00
Michael
bf725aa8dc
HostServ: Remove vhost when a nick is dropped
2020-09-28 12:15:48 +01:00
Sadie Powell
52914216f0
Clarify that unreal4 also works for UnrealIRCd 5.
2020-09-14 16:49:25 +01:00
Sadie Powell
8180dd414e
Implement support for immutable account identifiers.
2020-09-10 15:15:34 +01:00
miwob
ff28985384
Fix -Wclass-memaccess warning:
...
/anope/src/misc.cpp: In function ‘Anope::string Anope::Resolve(const Anope::string&, int)’:
/anope/src/misc.cpp:742:60: warning: ‘void* memcpy(void*, const void*, size_t)’ copying an object of non-trivial type ‘union sockaddrs’ from an array of ‘struct sockaddr’ [-Wclass-memaccess]
memcpy(&addr, addrresult->ai_addr, addrresult->ai_addrlen);
^
In file included from /anope/include/users.h:21,
from /anope/include/bots.h:12,
from /anope/include/regchannel.h:18,
from /anope/include/config.h:16,
from /anope/src/misc.cpp:16:
/anope/include/sockets.h:27:18: note: ‘union sockaddrs’ declared here
union CoreExport sockaddrs
^~~~~~~~~
2020-09-10 13:22:42 +01:00
miwob
584a209b28
ircd-hybrid protocol module: add support for channel mode 'K' (no knock)
2020-08-01 13:39:35 +01:00
Matt Schatz
c327d1aeef
Improve wording of the resetpass:confirm log message.
2020-04-06 09:49:46 +01:00
Matt Schatz
0d0763f72f
Fix the handling of topic messages with InspIRCd v3.
2020-03-26 08:24:39 +00:00
Robby
4d101569f8
Update the mailmap.
2020-01-24 11:13:26 +01:00
Robby
8866612160
Update my mailmap entries.
2020-01-24 10:05:39 +01:00
Robby
d69b14e54c
Fix a typo in the mailmap.
2020-01-24 09:50:29 +01:00
Sadie Powell
505eed9eef
InspIRCd: send an oper type of "service" instead of "services".
...
This fixes a grammar issue with RPL_WHOISOPERATOR where users would
see "ChanServ is a services on NetworkName".
2020-01-21 18:27:29 +00:00
Sadie Powell
b188a1c0cd
Update my name and email address.
2020-01-20 20:48:22 +00:00
Robby
2c1f8260fd
ms_info: Fix a typo in the INFO output when a nickname has been given.
...
Update the dutch language file.
2020-01-07 04:37:19 +01:00
Robby
d319fc6eb5
m_chanstats: Make ChanServ's HELP SET CHANSTATS translatable too. ( #253 )
...
Also refresh the language files while at it.
2020-01-07 02:45:30 +01:00
Dragone2
83eea99317
Update for Italian translation ( #253 ).
2020-01-06 16:37:16 +01:00
Dragone2
55a23c7253
Update for Italian translation ( #250 ).
2020-01-04 16:54:44 +01:00
Robby
c8699c6726
Update copyright to 2020.
...
This was done with:
find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2020 Anope Team/i' {} \;
2020-01-04 15:51:20 +01:00
Matt Schatz
95c8478ec5
Fix the handling of kick messages with InspIRCd v3.
2020-01-04 12:40:20 +01:00
Peter Powell
cba1313a40
Revert "Fix the length limit for InspIRCd v3 S2S messages."
...
This is causing build errors for some people and i'm unsure why.
This reverts commit a4ab6876c3 .
2019-12-15 12:40:31 +00:00
Peter Powell
96ea61d8b8
Add the <limits> include to the inspircd3 module.
2019-12-15 01:50:31 +00:00