Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: f8f7f83f5a2228bb9deeb8324be015cd76b84ced
https://github.com/ngircd/ngircd/commit/f8f7f83f5a2228bb9deeb8324be015cd76b…
Author: Alexander Barton <alex(a)barton.de>
Date: 2015-05-13 (Wed, 13 May 2015)
Changed paths:
M man/ngircd.conf.5.tmpl
M src/ngircd/irc-channel.c
M src/ngircd/irc-info.c
Log Message:
-----------
Streamline effect of "MorePrivacy" option (WHOIS, LIST)
- Update documentation in ngircd.conf(5)
- LIST: Don't hide channels for IRC Ops when "MorePrivacy" is in effect
- WHOIS: Don't hide IP addresses/hostnames when "MorePrivacy" is in effect
Closes #198
Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: c5da48368569383d064a2325ab3b99d10287a085
https://github.com/ngircd/ngircd/commit/c5da48368569383d064a2325ab3b99d1028…
Author: Alexander Barton <alex(a)barton.de>
Date: 2015-04-12 (Sun, 12 Apr 2015)
Changed paths:
M src/ngircd/irc-op.c
M src/ngircd/messages.h
Log Message:
-----------
Make sure that the target user is able to join a local channel
Implement ERR_USERNOTONSERV(504) numeric and make sure that the
target user is on the same server when inviting other users to
local ("&") channels.
ircd-ratbox uses the ERR_USERNOTONSERV(504) numeric for this, and I
think this is a good idea -- other IRC daemons (like ircu) silently
drop such impossible invites, but thats not a big benefit ...
Idea by Cahata, thanks! Closes #183.
Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: c5da48368569383d064a2325ab3b99d10287a085
https://github.com/ngircd/ngircd/commit/c5da48368569383d064a2325ab3b99d1028…
Author: Alexander Barton <alex(a)barton.de>
Date: 2015-04-12 (Sun, 12 Apr 2015)
Changed paths:
M src/ngircd/irc-op.c
M src/ngircd/messages.h
Log Message:
-----------
Make sure that the target user is able to join a local channel
Implement ERR_USERNOTONSERV(504) numeric and make sure that the
target user is on the same server when inviting other users to
local ("&") channels.
ircd-ratbox uses the ERR_USERNOTONSERV(504) numeric for this, and I
think this is a good idea -- other IRC daemons (like ircu) silently
drop such impossible invites, but thats not a big benefit ...
Idea by Cahata, thanks! Closes #183.
Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: 4330f5d1c9119c4461c8fb7c8cf1f78a3ea53e4d
https://github.com/ngircd/ngircd/commit/4330f5d1c9119c4461c8fb7c8cf1f78a3ea…
Author: Alexander Barton <alex(a)barton.de>
Date: 2015-04-12 (Sun, 12 Apr 2015)
Changed paths:
M src/ngircd/parse.c
Log Message:
-----------
INVITE command: Enforce 1 second penalty time
This prevents flooding of the target client.
This closes #186. Reported by Cahata, thanks!