]> jfr.im git - irc/evilnet/x3.git/blob - ChangeLog
mod-python: add service_register function
[irc/evilnet/x3.git] / ChangeLog
1 /***********************************************************************
2 X3 ChangeLog
3
4 2009-10-12 Henrik Stuart <evilnet@hstuart.dk>
5
6 * src/mod-python.c: add emb_service_register function.
7
8 2009-10-12 Henrik Stuart <evilnet@hstuart.dk>
9
10 * src/mod-python.c: add emb_adduser function.
11
12 2009-10-12 Henrik Stuart <evilnet@hstuart.dk>
13
14 * src/mod-python.c: add emb_svsjoin function.
15
16 2009-10-12 Henrik Stuart <evilnet@hstuart.dk>
17
18 * src/mod-python.c: add emb_svsquit function.
19
20 * src/proto.h: observe proper const-ness in irc_svsquit function.
21
22 * src/proto-p10.c: observe proper const-ness in irc_svsquit function.
23
24 2009-10-12 Henrik Stuart <evilnet@hstuart.dk>
25
26 * src/mod-python.c: add emb_svsnick function.
27
28 2009-10-12 Henrik Stuart <evilnet@hstuart.dk>
29
30 * src/mod-python.c: refactor doc-strings for extension methods to separate
31 variables. Minor code changes that modify function return values/types to
32 be more uniform.
33
34 2009-10-12 Henrik Stuart <evilnet@hstuart.dk>
35
36 * src/mod-python.c: add emb_fakehost function.
37
38 2009-10-12 Henrik Stuart <evilnet@hstuart.dk>
39
40 * src/mod-python.c: add emb_user_mode function.
41
42 2009-10-12 Henrik Stuart <evilnet@hstuart.dk>
43
44 * src/mod-python.c: add emb_channel_mode function.
45
46 2009-10-11 Henrik Stuart <evilnet@hstuart.dk>
47
48 * src/mod-python.c: remember to increase reference count of Py_None.
49
50 2009-10-11 Henrik Stuart <evilnet@hstuart.dk>
51
52 * src/mod-python.c: add emb_kick function.
53
54 2009-10-11 Henrik Stuart <evilnet@hstuart.dk>
55
56 * src/mod-python.c: add emb_get_config function.
57
58 2009-10-09 Henrik Stuart <evilnet@hstuart.dk>
59
60 * src/mod-python.c: add emb_timeq_del function.
61
62 2009-10-09 Henrik Stuart <evilnet@hstuart.dk>
63
64 * src/mod-python.c: add emb_timeq_add function.
65
66 2009-10-07 Henrik Stuart <evilnet@hstuart.dk>
67
68 * src/mod-python.c: refactor dict_t construction logic.
69
70 2009-10-07 Henrik Stuart <evilnet@hstuart.dk>
71
72 * src/mod-python.c: improve error logic for emb_get_channel.
73
74 2009-10-06 Henrik Stuart <evilnet@hstuart.dk>
75
76 * src/mod-python.c: refactor modeList conversion into separate function.
77
78 2009-10-06 Henrik Stuart <evilnet@hstuart.dk>
79
80 * src/mod-python.c: refactor out common error cleanup logic.
81
82 2009-10-06 Henrik Stuart <evilnet@hstuart.dk>
83
84 * src/mod-python.c: add emb_get_accounts function and refactor some
85 common logic into a single routine.
86
87 * src/nickserv.h src/nickserv.c: make nickserv_handle_dict externally
88 available.
89
90 2009-10-06 Henrik Stuart <evilnet@hstuart.dk>
91
92 * src/mod-python.c: add emb_kill function.
93
94 2009-10-06 Henrik Stuart <evilnet@hstuart.dk>
95
96 * src/mod-python.c: improve error logic for pyobj_from_usernode.
97
98 2009-10-06 Henrik Stuart <evilnet@hstuart.dk>
99
100 * src/mod-python.c: improve error logic for emb_get_servers.
101
102 2009-10-06 Henrik Stuart <evilnet@hstuart.dk>
103
104 * src/mod-python.c: improve error logic for emb_get_channels.
105
106 2009-10-06 Henrik Stuart <evilnet@hstuart.dk>
107
108 * src/mod-python.c: improve error logic for emb_get_users.
109
110 2009-10-06 Henrik Stuart <evilnet@hstuart.dk>
111
112 * src/mod-python.c: add emb_get_server function and require P10.
113
114 2009-10-06 Henrik Stuart <evilnet@hstuart.dk>
115
116 * src/mod-python.c: add emb_get_servers function.
117
118 2009-10-06 Henrik Stuart <evilnet@hstuart.dk>
119
120 * src/mod-python.c: fix a bunch of typos
121
122 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
123
124 * src/mod-python.c: add emb_get_channels function.
125
126 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
127
128 * src/mod-python.c: add emb_get_users function.
129
130 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
131
132 * src/mod-python.c: raise exception on failure in emb_get_account.
133
134 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
135
136 * src/mod-python.c: raise exception on unknown channel in emb_get_channel
137
138 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
139
140 * src/mod-python.c: make emb_send_target_notice more resilient toward
141 erroneous input and raise exceptions on failures.
142
143 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
144
145 * src/mod-python.c: make emb_send_target_privmsg more resilient toward
146 erroneous input and raise exceptions on failures.
147
148 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
149
150 * src/mod-python.c: make emb_dump raise exception on failure.
151
152 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
153
154 * src/mod-python.c: set exception on error path in emb_get_user.
155
156 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
157
158 * src/mod-python.c: extract userNode to Python dictionary conversion for
159 future use in handlers.
160
161 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
162
163 * src/mod-python.c: do not leak handler objects
164
165 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
166
167 * src/mod-python.c: add support for specifying main module in x3.conf
168
169 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
170
171 * src/mod-python.c: Expose Python services module as _svc to follow normal
172 Python naming conventions for C extensions.
173
174 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
175
176 * src/mod-python.c: Remove unused function.
177
178 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
179
180 * src/mod-python.c: Generalise cmd_run to handle arbitrary statements.
181
182 2009-10-05 Henrik Stuart <evilnet@hstuart.dk>
183
184 * src/main-common.c: Initialise opserv before other services.
185
186 2009-09-22 Neil Spierling <sirvulcan@sirvulcan.co.nz>
187
188 * Srvx sync. Author: Michael Poole.
189
190 * src/recdb.c (explain_failure): When MAIN_LOG is NULL, report to stderr.
191
192 2009-09-19 Neil Spierling <sirvulcan@sirvulcan.co.nz>
193
194 * Srvx sync. Author: Michael Poole.
195
196 * src/chanserv.c (handle_part): Allow the current user to be considered for
197 channels other than the channel being /part'ed.
198
199 * src/modcmd.c (modcmd_saxdb_write): Write bot modes to the database.
200 (modcmd_load_bots): Read them out and use them.
201
202 * src/opserv.c (cmd_whois): Use irc_user_mode_chars() here too.
203
204 * src/opserv.help (INVITE): Document this command.
205
206 * src/proto.h (irc_user_modes): Declare.
207 (irc_user_mode_chars): Likewise.
208
209 * src/proto-common.c (irc_user_modes): Define.
210
211 * src/proto-p10.c (irc_user_mode_chars): Define.
212 (irc_user): Use irc_user_mode_chars() instead of open-coding it.
213
214 2009-08-21 Matthew Beeching <jobe@mdbnet.co.uk>
215
216 * src/nickserv.c: Fix for a crash bug when using LOC with LDAP
217 where LDAP account exists and AuthServ account does not
218
219 2009-08-20 Matthew Beeching <jobe@mdbnet.co.uk>
220
221 * src/opserv.help: Fixed a typo in ROUTING EXAMPLE
222
223 2009-08-17 Matthew Beeching <jobe@mdbnet.co.uk>
224
225 * src/nickserv.c: Added NSMSG_RECLAIM_HOWTO describing how to
226 AUTH when warned that the nick being used is registered
227
228 2009-08-11 Matthew Beeching <jobe@mdbnet.co.uk>
229
230 * src/proto.h: Added declaration fo irc_privmsg_user
231
232 * src/opserv.c: Added privmsg and notice trace actions
233
234 * src/opserv.help: Added privmsg and notice trace actions
235
236 2009-08-11 Matthew Beeching <jobe@mdbnet.co.uk>
237
238 * src/proto-p10.c: ignore SPAMFILTER messages
239
240 2009-08-11 Neil Spierling <sirvulcan@sirvulcan.co.nz>
241
242 * Srvx sync. Author: Michael Poole.
243
244 * configure.in: (HAVE_SOCKADDR_SA_LEN): Define to a non-empty value
245 (specifically, 1).
246 (HAVE_STRUCT_ADDRINFO): Likewise.
247
248 * src/ioset-kevent.c (ioset_kevent_add): Never try to use EV_DELETE, because
249 that can make kevent() return -1/ENOENT.
250 (ioset_kevent_update): We need to try to EV_DELETE here instead.
251 (ioset_kevent_loop): Do not bail if kevent() just returns -1/EINTR.
252
253 * src/Makefile.am (EXTRA_x3_SOURCES): Include mod-blacklist.c.
254
255 * src/sar.c (ipv4_pton): Set the sockaddr length field when it exists.
256 (ipv6_pton): Likewise.
257
258 2009-08-11 Matthew Beeching <jobe@mdbnet.co.uk>
259
260 * src/proto-common.c: Fix to allow trigger (in channel) commands
261 to work in unregistered channels
262
263 2009-07-30 Matthew Beeching <jobe@mdbnet.co.uk>
264
265 * src/sar.c: Fix for typo in previous commit
266
267 2009-07-30 Neil Spierling <sirvulcan@sirvulcan.co.nz>
268
269 * src/sar.c: Commented out an warning message.
270
271 2009-07-29 Matthew Beeching <jobe@mdbnet.co.uk>
272
273 * src/nickserv.c: Fix for minor auth bug
274
275 2009-07-23 Matthew Beeching <jobe@mdbnet.co.uk>
276
277 * src/nickserv.help: Minor spelling correction
278
279 2009-07-18 Matthew Beeching <jobe@mdbnet.co.uk>
280
281 * src/nickserv.c: Fix for NickServ AUTH bug with only password
282 being supplied
283
284 2009-07-16 Matthew Beeching <jobe@mdbnet.co.uk>
285
286 * src/nickserv.c: Added support for NickServ with LDAP enabled
287
288 2009-07-15 Neil Spierling <sirvulcan@sirvulcan.co.nz>
289
290 * src/chanserv.c: Crash fix with the spin command for hosts with
291 a long length.
292
293 2009-07-05 Matthew Beeching <jobe@mdbnet.co.uk>
294
295 * src/chanserv.c: Fix for crash on ChanServ.UNSUSPEND
296
297 2009-06-27 Matthew Beeching <jobe@mdbnet.co.uk>
298
299 * src/modcmd.c: Fix for bug #2813183
300
301 2009-06-20 Neil Spierling <sirvulcan@sirvulcan.co.nz>
302
303 * src/chanserv.c: Removed lastmod from gline and shun. (from the
304 srvx merge)
305
306 * src/gline.c: Removed lastmod from gline and shun. (from the srvx
307 merge)
308
309 * src/gline.h: Removed lastmod from gline and shun. (from the srvx
310 merge)
311
312 * src/mod-blacklist.c: Removed lastmod from gline and shun. (from
313 the srvx merge)
314
315 * src/mod-sockcheck.c: Removed lastmod from gline and shun. (from
316 the srvx merge)
317
318 * src/opserv.c: Removed lastmod from gline and shun. (from the srvx
319 erge)
320
321 * src/proto-p10.c: Removed lastmod from gline and shun. (from the srvx
322 merge)
323
324 * src/shun.c: Removed lastmod from gline and shun. (from the srvx merge)
325
326 * src/shun.h: Removed lastmod from gline and shun. (from the srvx merge)
327
328 * src/spamserv.c: Removed lastmod from gline and shun. (from the srvx
329 merge)
330
331 2009-06-05 Neil Spierling <sirvulcan@sirvulcan.co.nz>
332
333 * src/proto-p10.c: Bug fix for SF Bug #2801434.
334
335 2009-06-02 Neil Spierling <sirvulcan@sirvulcan.co.nz>
336
337 * src/hash.h: Updated client PRIVS.
338
339 * src/proto-p10.c: Updated client PRIVS.
340
341 2009-06-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
342
343 * src/tools.c: Re done the extended channel ban code so that it works
344 like the ircd code.
345
346 2009-06-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
347
348 * src/tools.c: Return -1 with invalid extended bans.
349
350 2009-06-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
351
352 * src/chanserv.c: Tweak the ban functions to allow invalid bans to
353 be picked up.
354
355 * src/tools.c: Return -1 with invalid extended bans.
356
357 2009-06-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
358
359 * src/chanserv.c: Updated user_matches_glob.
360
361 * src/common.h: Updated user_matches_glob.
362
363 * src/mod-memoserv.c: Updated user_matches_glob.
364
365 * src/nickserv.c: Updated user_matches_glob.
366
367 * src/opserv.c Updated user_matches_glob.
368
369 * src/tools.c: Added support for shared channel bans (j). As well as
370 quiet bans. Although these are handled ircd side.
371
372 2009-06-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
373
374 * src/tools.c: Extended channel ban support. As well as text and
375 nick change bans, however these 2 are just ignored as they are
376 handled ircd side.
377
378 2009-06-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
379
380 * src/tools.c: Extended account ban support.
381
382 2009-06-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
383
384 * src/chanserv.c: Basic extended ban support.
385
386 * src/tools.c: Basic extended ban support.
387
388 2009-06-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
389
390 * src/chanserv.c: Fixed up SF bug #2799155.
391
392 * src/modcmd.c: Fixed up an issue where missing args was coming up
393 when it shouldnt.
394
395 2009-05-31 Neil Spierling <sirvulcan@sirvulcan.co.nz>
396
397 * GPL 3 and svn propset updates.
398
399 2009-05-31 Neil Spierling <sirvulcan@sirvulcan.co.nz>
400
401 * src/main.c: Added spamserv.h #include.
402
403 * src/main-common.c: Woops forgot to init spamserv.
404
405 * src/spamserv.c: Fixed up AddLocalUser.
406
407 2009-05-30 Neil Spierling <sirvulcan@sirvulcan.co.nz>
408
409 * src/chanserv.c: Small fix with CSMSG_SET_UNREVIEWED.
410
411 2009-05-30 Neil Spierling <sirvulcan@sirvulcan.co.nz>
412
413 * src/hash.c: Couple of tweaks.
414
415 * src/proto-common.c: Fix for triggers not working with forwards as well as
416 off channel services.
417
418 2009-05-30 Neil Spierling <sirvulcan@sirvulcan.co.nz>
419
420 * src/chanserv.c: Fixed a crash with setting a .set option with an invalid
421 option.
422
423 * src/mail-smtp.c: Added missing file.
424
425 2009-05-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
426
427 * Major update to bring X3 in line with the latest SRVX commit. Please see
428 UPGRADE. Credits go to the SRVX team.
429
430 2009-04-22 Neil Spierling <sirvulcan@sirvulcan.co.nz>
431
432 * src/proto-p10.c: Ignore stats headers.
433
434 2009-05-08 Henrik Stuart <evilnet@hstuart.dk>
435
436 * src/mod-python.c: generalised cmd_run to process file_input productions.
437
438 2009-05-06 Henrik Stuart <evilnet@hstuart.dk>
439
440 * src/mod-python.c: generalised PYTHONPATH environment setting to
441 not explicitly set Alex's home directory.
442
443 2009-05-05 Henrik Stuart <evilnet@hstuart.dk>
444
445 * src/proto-p10.c: introduced irc_sno for SNO messages. Removed broken
446 auto_oper on LOC support.
447
448 * src/proto.h: introduced irc_sno for SNO messages.
449
450 * src/nickserv.c: added registered authentication function to handle
451 auto_oper on LOC.
452
453 2009-05-04 Alex Schumann <rubin@afternet.org>
454
455 * src/chanserv.c: julien and polo noticed a crash during channel register. Fixed
456
457 * x3.conf.example: fix typeo in default channel regex. Thanks again to julien for noticing this.
458
459 2009-03-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
460
461 * src/proto-p10.c: Update PRIV handling code for the latest
462 nefarious 1.3 changes.
463
464 2009-02-27 Alex Schumann <rubin@afternet.org>
465
466 * src/proto-p10.c: Patch from muer to support auto-oper for LOC
467 connections too.
468
469 2009-01-31 Alex Schumann <rubin@afternet.org>
470
471 * src/chanserv.c: change server link handlers to return an int
472
473 * src/hash.h: change server link handlers to return an int
474
475 * src/plugins/annoy/plugin.py: add some debug code for testing new
476 hooks
477
478 * src/modpython.py: support for new hooks server_link, nick_change,
479 and new_user
480
481 * src/mod-python.c: support for new hooks server_link, nick_change,
482 and new_user
483
484 2009-01-30 Neil Spierling <sirvulcan@sirvulcan.co.nz>
485
486 * src/opserv.c: Warning fix.
487
488 * src/proto-p10.c: Bug fix for SF Bug #2547157 (topic ident bug).
489
490 2009-01-27 Alex Schumann <rubin@afternet.org>
491
492 * src/modpython.py: Comment out debug printing
493
494 * src/plugins/hangman: New example plugin: Hangman game
495
496 2009-01-27 Alex Schumann <rubin@afternet.org>
497
498 * src/opserv.c: Fix a hole Sindacious found, where alerts on account
499 don't trigger because they arent looked for during/after auth.
500
501 2009-01-26 Alex Schumann <rubin@afternet.org>
502
503 * src/plugins/annoy/plugin.py: more test code
504
505 * src/mod-python.c: added emb_get_info, silenced warnings, and stub
506 TODO comments for all the handlers and emb functions we need to
507 create. search for TODO and lend a hand! :)
508
509 2009-01-26 Alex Schumann <rubin@afternet.org>
510
511 * src/plugins/annoy/plugin.py: new version of test plugin
512
513 2009-01-25 Alex Schumann <rubin@afternet.org>
514
515 * Makefile.am: forgot to copy modpython.py where it goes.
516
517 2009-01-24 Alex Schumann <rubin@afternet.org>
518
519 * src/mod-python.c: added plugin hook to log to x3 logs, and worked
520 out the basics of callback registration.
521
522 * src/modpython.py: x3 logging hook and new callback registration
523
524 * Makefile.am: install modpython.py and plugins/ during make install
525
526 * install-r.sh: shell script to do recursive copy with exclusions
527
528 2009-01-23 Alex Schumann <rubin@afternet.org>
529
530 * src/mod-python.c: refactor to use class-based hook manager. Seems to
531 run now. Also added better comments.
532
533 * src/modpython.py: refactored into classes. Seems to run now. Cleaned
534 up a bit.
535
536 2008-01-12 Neil Spierling <sirvulcan@sirvulcan.co.nz>
537
538 * src/opserv.c: Fix for SF bug #2491886. Added OSMSG_USER_ALREADY_THERE.
539
540 2009-01-04 Alex Schumann <rubin@afternet.org>
541
542 * src/nickserv.c: fix access change bug when using ldap but not
543 ldap_oper_group_dn.
544
545 2009-01-01 Matthew Beeching <jobe@mdbnet.co.uk>
546
547 * languages/README.txt: Changed validate_lang.pl to validate.pl
548
549 * languages/validate.pl: Set executable
550
551 * languages/lang_export.sh: Set executable
552
553 2008-12-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
554
555 * src/chanserv.c: SF feature 1476390. Added nodelete option to
556 MERGE.
557
558 * src/chanserv.help: SF feature 1476390. Added nodelete option
559 to MERGE.
560
561 2008-12-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
562
563 * src/chanserv.c: SF feature 2353198. Patch from CaptKirk. Added
564 the channel flag to the register command. Also removed the
565 helping flag.
566
567 2008-12-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
568
569 * src/hash.c: SF feature 2353183. Made X3 aware of +a.
570
571 * src/hash.h: SF feature 2353183. Made X3 aware of +a.
572
573 2008-12-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
574
575 * src/global.c: Added RCHANNELS which will send notices to all
576 registered channels. Also changed CHANNELS to notice all channels
577 instead of registered ones only.
578
579 * src/global.h: Added RCHANNELS.
580
581 * src/global.help: Added RCHANNELS target.
582
583 2008-12-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
584
585 * src/global.c: Added AUTHED target.
586
587 * src/global.h: Added AUTHED target.
588
589 2008-12-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
590
591 * src/opserv.c: Store when alerts were last triggered.
592
593 2008-12-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
594
595 * x3.conf.example: Added valid_channel_regex.
596
597 * src/chanserv.c: Added valid_channel_regex.
598
599 2008-12-25 Neil Spierling <sirvulcan@sirvulcan.co.nz>
600
601 * src/chanserv.c: Warning fixes.
602
603 * src/proto-p10.c: Warning fixes.
604
605 2008-12-25 Neil Spierling <sirvulcan@sirvulcan.co.nz>
606
607 * configure: Regenerated.
608
609 * configure.in: Added math.h check.
610
611 * rx/Makefile.in: Regenerated.
612
613 * src/chanserv.c: Warning fixes.
614
615 * src/config.h.in: Regenerated.
616
617 * src/Makefile.in: Regenerated.
618
619 * src/math.c: Warning fixes.
620
621 * src/nickserv.c: Warning fixes.
622
623 * src/opserv.c: Warning fixes.
624
625 * src/proto-p10.c: Warning fixes.
626
627 2008-12-24 Neil Spierling <sirvulcan@sirvulcan.co.nz>
628
629 * src/chanserv.c: Fix for SF bug #2423717. Invalid automode choices
630 with a string will now show the invalid string rather than 0.
631
632 2008-12-24 Neil Spierling <sirvulcan@sirvulcan.co.nz>
633
634 * src/nickserv.c: Fix for SF bug #2420339. Password change emails
635 will not have the first time part in the email. Email change emails
636 will have them though.
637
638 2008-12-24 Neil Spierling <sirvulcan@sirvulcan.co.nz>
639
640 * src/chanserv.c: Fix for SF bug #2353222 (+l not being removed
641 when dynlimit disabled.
642
643 2008-12-24 Neil Spierling <sirvulcan@sirvulcan.co.nz>
644
645 * src/proto-p10.c: Fix for SF bug #2401693 (gsync not working properly).
646
647 2008-11-30 Matthew Beeching <jobe@mdbnet.co.uk>
648
649 * src/spamserv.c: Fix crash bug in ADDTRUST/DELTRUST
650
651 2008-11-25 Alex Schumann <rubin@afternet.org>
652
653 * src/mod-python.c: call run function instead of using
654 pyrun_simplestring. Set global info for simple reply() to have what it
655 needs to run.
656
657 * src/modpython.py: new name as - interferes with module loading.
658 added reply() function
659
660 2008-11-22 Alex Schumann <rubin@afternet.org>
661
662 * src/mod-python.c: Added ability to query info about nick or channel
663 name
664
665 2008-11-16 Alex Schumann <rubin@afternet.org>
666
667 * src/mod-python.c: filled in some missing pieces.
668
669 * src/mod-python.py: more demo code for testing
670
671 2008-11-16 Matthew Beeching <jobe@mdbnet.co.uk>
672
673 * src/chanserv.help: Minor mistake in help for 'SET MAXSETINFO'
674
675 2008-11-16 Alex Schumann <rubin@afternet.org>
676
677 * src/mod-python.c: further work on building basic bits of this
678
679 * src/mod-python.py: first pass at what will be the base python script.
680
681 2008-11-13 Alex Schumann <rubin@afternet.org>
682
683 * src/modcmd.c: remove python tests (moved to mod-python.c)
684
685 * src/mod-python.c: initial template based on memoserv
686
687 2008-11-12 Matthew Beeching <jobe@mdbnet.co.uk>
688
689 * tools/db.php: Added sample DB parser script
690
691 2008-11-06 Alex Schumann <rubin@afternet.org>
692
693 * src/modcmd.c,Makefile.in,src/Makefile.in,configure.in,src/config.h.in:
694 Begin work on embedding python.
695
696 2008-11-06 Neil Spierling <sirvulcan@sirvulcan.co.nz>
697
698 * src/proto-p10.c: Fixes for SGLINE and SSHUN. As well as a fix for
699 bug 2173687 (PRIVS part of it is already fixed on trunk).
700
701 2008-10-24 Matthew Beeching <jobe@mdbnet.co.uk>
702
703 * src/chanserv.help: Minor spelling mistake "change" instead of
704 "change"
705
706 2008-10-10 Matthew Beeching <jobe@mdbnet.co.uk>
707
708 * src/opserv.c: Fix for crash on OpServ SVSPART where the
709 channel specified does not exist.
710
711 2008-09-30 Matthew Beeching <jobe@mdbnet.co.uk>
712
713 * src/nickserv.c: Prevent automatic registration of dissallowed
714 nicks when registering an account
715
716 2008-09-27 Matthew Beeching <jobe@mdbnet.co.uk>
717
718 * src/chanserv.c: Fix for <trigger>shoot telling you to use
719 .roulette instead of <trigger>roulette
720
721 2008-09-15 Neil Spierling <sirvulcan@sirvulcan.co.nz>
722
723 * src/proto-p10.c: SGLINE and SSHUN support some stuff coming
724 soon in Nefarious.
725
726 2008-09-07 Matthew Beeching <jobe@mdbnet.co.uk>
727
728 * src/chanserv.c: Changed PEON to PAL
729
730 * src/chanserv.help: Changed PEON to PAL
731
732 * src/modcmd.c: Changed PEON to PAL
733
734 * docs/access-levels.txt: Changed PEON to PAL
735
736 * languages/de/chanserv.help: Changed PEON to PAL
737
738 * languages/en_GB/chanserv.help: Changed PEON to PAL
739
740 2008-09-06 Matthew Beeching <jobe@mdbnet.co.uk>
741
742 * src/proto-p10.c: Added new PRIV_*'s to privtab
743
744 * src/mod-snoop.c: Added support for channel mode +h
745
746 * src/hash.h: #define's for missing PRIV_*'s
747
748 2008-09-02 Neil Spierling <sirvulcan@sirvulcan.co.nz>
749
750 * src/chanserv.c: Fixed an issue with OPCHAN and channels using off
751 channel.
752
753 2008-08-19 Alex Schumann <rubin@afternet.org>
754
755 * src/chanserv.c: fix a bug in the default wheel spin settings if they
756 were not in the config file, x3 would core.
757
758 2008-07-21 Neil SPierling <sirvulcan@sirvulcan.co.nz>
759
760 * src/chanserv.c: Turn the kick ban all chans spin action into a
761 timed ban (5 minutes). Also seperated the setting of the ban from
762 the stripping of ohv. If Nefarious has halfops disabled then trying
763 to strip the modes and set the ban results in the numeric being set
764 as the ban. This will need to be fixed in nefarious.
765
766 2008-07-20 Alex Schumann <rubin@afternet.org>
767
768 * src/chanserv.c: remove spin debugging code. Fix gline/kill glitch.
769
770 * src/config.h: bump trunk to 1.7
771
772 2008-07-19 Alex Schumann <rubin@afternet.org>
773
774 * src/proto-p10.c: dont print warning on uping to a jupe. added
775 irc_svsquit() function
776
777 * src/chanserv.c: rework wheel-of-misfortune a bit, allow individual
778 spins to be enabled in x3.conf and make it easy to add new ones or
779 change likelyhoods.
780
781 * src/proto.h: added irc_svsquit() prototype
782
783 * src/x3.conf.example: wheel action example configs
784
785 2008-07-18 Alex Schumann <rubin@afternet.org>
786
787 * src/proto-p10.c: set lastmod time to current time when sending
788 glines, otherwise ircd wont burst them later.
789
790 * src/modcmd.c: break credits out to its own command, and add svn
791 version string to ctcp version reply.
792
793 2008-07-02 Matthew Beeching <jobe@mdbnet.co.uk>
794
795 * src/proto-p10.c: Added missing PRIV_*'s to privtab
796
797 * src/hash.h: #define's for missing PRIV_*'s
798
799 2008-06-23 Alex Schumann <rubin@afternet.org>
800
801 * src/chanserv.c: Fix a bug where if spin abuse creates a clone, but an oper kills the
802 clone before its auto-removed, x3 crashes. Thanks tyler and jigsy.
803
804 2008-06-23 Alex Schumann <rubin@afternet.org>
805
806 * src/nickserv.c: make opserv access level required to be in oper ldap
807 group configurable.
808
809 * src/nickserv.h: make opserv access level required to be in oper ldap
810 group configurable.
811
812 2008-06-12 Alex Schumann <rubin@afternet.org>
813
814 * src/nickserv.c: fix login-on-connect logic problem when ldap libs
815 are present but ldap is not in use.
816
817 2008-04-22 Neil Spierling <sirvulcan@sirvulcan.co.nz>
818
819 * src/chanserv.c: Fixed a small bug with SVSNickChange.
820
821 * src/hash.h: Added buttaknife's patch which allows modes to be
822 searched for using opserv trace. Also Fixed a small bug with
823 SVSNickChange.
824
825 * src/hash.c: Fixed a small bug with SVSNickChange.
826
827 * src/opserv.c: Added buttaknife's patch which allows modes to
828 be searched for using opserv trace.
829
830 * src/proto-p10.c: Added buttaknife's patch which allows modes
831 to be searched for using opserv trace.
832
833 2008-04-10 Alex Schumann <rubin@afternet.org>
834
835 * src/nickserv.c: Fix wrong param count check in oset password
836
837 2008-04-07 Neil Spierling <sirvulcan@sirvulcan.co.nz>
838
839 * src/chanserv.c: Fixed a bug with x3 not handling kills properly.
840
841 * src/opserv.c: Fixed a bug with x3 not handling kills properly.
842
843 2008-04-02 Alex Schumann <rubin@afternet.org>
844
845 * src/proto-p10.c: Provisional code for LOC account hostmask validation
846
847 * src/nickserv.c: Provisional code for LOC account hostmask validation
848
849 2008-04-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
850
851 * configure: Regenerated.
852
853 * configure.in: Bumped up trunk version for X3.
854
855 2008-03-29 Neil Spierling <sirvulcan@sirvulcan.co.nz>
856
857 * src/proto-p10.c: Ignore SNO messages.
858
859 2008-03-28 Neil Spierling <sirvulcan@sirvulcan.co.nz>
860
861 * configure: Regenerated.
862
863 * configure.in: Fixed up a typo spotted by Sakkath.
864
865 * x3.conf.example: Fixed up a typo spotted by Sakkath.
866
867 2008-03-28 Neil Spierling <sirvulcan@sirvulcan.co.nz>
868
869 * src/chanserv.c: If Nefarious 1.2.0 is in use then use SVSQUIT to
870 fake a connection reset by peer quit if spin 1 comes up.
871
872 2008-03-28 Neil Spierling <sirvulcan@sirvulcan.co.nz>
873
874 * src/chanserv.c: Only allow logged in people to use spin.
875
876 2008-03-28 Neil Spierling <sirvulcan@sirvulcan.co.nz>
877
878 * src/chanserv.c: Added lamepart function so that spin can be used
879 on Nefarious 1.1.
880
881 2008-03-28 Neil Spierling <sirvulcan@sirvulcan.co.nz>
882
883 * src/chanserv.c: Added the wheel of misfortune. This will only
884 work with Nefarious 1.2.0. You can upgrade X3 now even if you are
885 running 1.1. Also fixed up some roulette/shoot bugs.
886
887 * src/hash.h: Function to change nicknames in X3 when using SVSNICK.
888
889 * src/hash.c: Function to change nicknames in X3 when using SVSNICK.
890
891 2008-03-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
892
893 * src/chanserv.c: Added roulette command.
894
895 * src/chanserv.h: Added roulette command.
896
897 * src/mod-memoserv.c: Added email sending functionality when
898 new memos are sent.
899
900 2008-03-24 Alex Schumann <rubin@afternet.org>
901
902 * src/nickserv.c: fix 1 param auth for ldap libs available but not
903 enabled, case. Thanks jobe.
904
905 2008-03-11 Alex Schumann <rubin@afternet.org>
906
907 * src/opserv.c: Add svsnick command
908
909 * src/opserv.help: add help for svsnick and improve menu a bit
910
911 * src/nickserv.c: re-enable 1 param auth if not using ldap.
912
913 2008-03-02 Alex Schumann <rubin@afternet.org>
914
915 * src/spamserv.c: Possible fix for sf bug 1905760 (spamserv
916 kill/reconnect segfault)
917
918 2007-07-31 Alex Schumann <rubin@afternet.org>
919
920 * src/proto-p10.c: ignore ALIST messages
921
922 2007-05-08 Alex Schumann <rubin@afternet.org>
923
924 * src/nickserv.c: fix authentication bug with ldap by temporarily
925 removing account-less authentication.
926
927 * src/nickserv.help: fix help file to reflect change
928
929 2007-05-08 Neil Spierling <sirvulcan@sirvulcan.co.nz>
930
931 * src/mod-webtv.c: Allow opers to override required_mark. Also added
932 SJOIN (undocumented) so opers can join IRC into channels where its
933 needed as WebTV can only message clients in channels they are in.
934
935 2007-06-08 Neil Spierling <sirvulcan@sirvulcan.co.nz>
936
937 * src/mod-webtv.c: Added JOIN and PART.
938
939 * src/mod-webtv.help: Added JOIN and PART.
940
941 2007-05-08 Neil Spierling <sirvulcan@sirvulcan.co.nz>
942
943 * src/mod-webtv.c: Added NICK and WHOIS commands. As well as 2 x3.conf
944 config options, required_mark and valid_marks.
945
946 * src/mod-webtv.help: Added INDEX, NICK, and WHOIS.
947
948 2007-05-08 Neil Spierling <sirvulcan@sirvulcan.co.nz>
949
950 * configure: Run autogen.sh.
951
952 * configure.in: Tweaks for google core dumper 1.1.
953
954 * x3.conf.example: Basic webtv module section.
955
956 * src/config.h.in: Run autogen.sh.
957
958 * src/Makefile.am: Run autogen.sh.
959
960 * src/Makefile.in: Run autogen.sh.
961
962 * src/mod-webtv.c: Basic module for now. (Does nothing so dont
963 bother compiling in).
964
965 * src/mod-webtv.help: Empty help file for webtv module.
966
967 * tools/core_install.sh: Update google core dumper to 1.1.
968
969 * tools/coredumper.tar.gz: Update google core dumper to 1.1.
970
971 2007-05-06 Neil Spierling <sirvulcan@sirvulcan.co.nz>
972
973 * src/proto-p10.c: Quick fix (as its 12:11am and i have work at 8:30am).
974 This will stop the "Unable to find user irc.servername.com whose mark
975 is changing." messages. When a user reconnects and an existing exempt
976 is on the network for the user, their lastseen time is sent out to
977 all the servers. This quick fix moves the user checking part to
978 the relevant part of the function that actually uses users.
979
980 2007-05-04 Alex Schumann <rubin@afternet.org>
981
982 * src/chanserv.c: fixed problem with giveownership logs where the
983 previous owners handle could reference a free'd string.
984
985 2007-04-24 Alex Schumann <rubin@afternet.org>
986
987 * src/nickserv.c: add missing ifdef for inldap search.
988
989 2007-04-22 Alex Schumann <rubin@afternet.org>
990
991 * src/nickserv.c: change authserv search accountmask to just account.
992 added inldap search criteria. added add2ldap search target.
993
994 * src/nickserv.help: added help for ldap searching. + only add2ldap if
995 all the info is there.
996
997 * src/x3ldap.c: clean up of some error messages/handling. + add a byte
998 to password malloc to maybe solve a core problem? + fix an error
999 checking option.
1000
1001 2007-04-21 Alex Schumann <rubin@afternet.org>
1002 * src/nickserv.c: remove some un-needed errors with duplicate
1003 add/deletes in ldap
1004
1005 2007-04-21 Alex Schumann <rubin@afternet.org>
1006
1007 * src/nickserv.c: fix bug with register_user from loc causing core
1008
1009 2007-04-20 Alex Schumann <rubin@afternet.org>
1010
1011 * src/x3ldap.c: support for ldaps (ssl/tls) was added. ldap_host and
1012 ldap_port changed to ldap_uri.
1013
1014 * src/nickserv.c: fixed LOC bugs with accounts that exist in ldap but
1015 not x3 not being created. changed to ldap_uri config instead of
1016 host/port
1017
1018 * src/nickserv.h: changed to ldap_uri
1019
1020 * x3.conf.example: changed to ldap_uri
1021
1022 2007-04-09 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1023
1024 * README: testing.
1025
1026 2007-04-09 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1027
1028 * INSTALL: Another test.
1029
1030 2007-04-08 Alex Schumann <rubin@afternet.org>
1031
1032 * src/chanserv.c: fix for a core when adding kill alert for numchans 1
1033
1034 2007-04-06 Alex Schumann <rubin@afternet.org>
1035
1036 * src/chanserv.help: added Jigsy's mode help MODE CHANNEL and MODE
1037 USER
1038
1039 2007-04-07 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1040
1041 * ChangeLog: Email update.
1042
1043 2007-04-07 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1044
1045 * src/AUTHORS: Email update, mostly for CIA commit testing.
1046
1047 2007-04-07 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1048
1049 * src/helpfile.c: Added colour support $k.
1050
1051 2007-03-20 Alex Schumann <rubin@afternet.org>
1052
1053 * src/nickserv.c: ButtaS2sLore sent in this patch to fix the default
1054 style when registering new users.
1055
1056 2007-03-20 Alex Schumann <rubin@afternet.org>
1057
1058 * src/nickserv.c: applied patch from playa which fixes the nickname
1059 valid checks when registering a nick.
1060
1061 2007-03-20 Alex Schumann <rubin@afternet.org>
1062
1063 * src/nickserv.c: fix trying to do ldap when not enabled during
1064 cmd_register + also with cmd_unregister
1065
1066 2007-03-20 Alex Schumann <rubin@afternet.org>
1067
1068 * src/opserv.c: fix for stats alerts filtering
1069
1070 * src/chanserv.c: dont kick lamers if they are currently exempt (+e)
1071
1072 * src/x3ldap.c: fix ldap error code to string
1073
1074 * src/nickserv.c: (comment to add LOC logging)
1075
1076 2007-02-26 Alex Schumann <rubin@afternet.org>
1077
1078 * src/nickserv.c: fix bug with LOC logic and ldap.
1079
1080 2007-02-13 Alex Schumann <rubin@afternet.org>
1081
1082 * src/nickserv.c: Fix bugs with ldap cookies. Fix opt_password
1083 warning/crash potential
1084
1085 2007-02-13 Alex Schumann <rubin@afternet.org>
1086
1087 * src/x3ldap.c: Fix double-hashing of passwords when using ldap and
1088 resetpass cookie system.
1089
1090 * src/nickserv.c: Fix double-hashing of passwords when using ldap and
1091 resetpass cookie system. Fix incorrect terms in ldap email error
1092 message.
1093
1094 2007-02-12 Alex Schumann <rubin@afternet.org>
1095
1096 * src/x3ldap.c: fix ldap_delete not binding first, so causing
1097 access denied sometimes.
1098
1099 2007-02-12 Alex Schumann <rubin@afternet.org>
1100
1101 * x3.conf.example: fix ldap config example so it actually works
1102
1103 2007-02-12 Alex Schumann <rubin@afternet.org>
1104
1105 * src/nickserv.h: lowercase account name setting
1106
1107 * x3.conf.example: lowercase account name setting
1108
1109 * src/nickservc: only lowercase account names if the option is set.
1110
1111 2007-02-12 Alex Schumann <rubin@afternet.org>
1112
1113 * src/tools.c: adding ircd_strtolower() func
1114
1115 * src/common.h: adding ircd_strtolower() func
1116
1117 * src/nickserv.c: force accounts to lowercase at all inputs. ++fix
1118 warning ++fix another
1119
1120 2007-02-11 Alex Schumann <rubin@afternet.org>
1121
1122 * src/nickserv.c: fixed a bunch of ldap result value check bugs
1123
1124 2007-02-11 Alex Schumann <rubin@afternet.org>
1125
1126 * src/opserv.c: Added oper group support to ldap
1127
1128 * src/x3ldap.c: Added group support to ldap. Fixed set email bug
1129
1130 * src/x3ldap.h: Added group support to ldap.
1131
1132 * src/nickserv.c: Added group support to ldap
1133
1134 * src/nickserv.h: Added group support to ldap
1135
1136 2007-02-11 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1137
1138 * tools/ldap/ldap_convert.php: Fixes after more testing.
1139
1140 2007-02-09 Alex Schumann <rubin@afternet.org>
1141
1142 * src/x3ldap.c: addid search function to get users email address from
1143 ldap
1144
1145 * src/x3ldap.h: func defs for search
1146
1147 * src/nicserv.c: update local copy of email address when they log
1148 in via ldap. fix memory leak.
1149
1150 2007-02-08 Alex Schumann <rubin@afternet.org>
1151
1152 * src/x3ldap.c: cleaning up and switching adduser to use the new
1153 crypted password scheme.
1154
1155 * src/nickserv.c: testing with ldap_enabled set to 0, and/or WITH_LDAP
1156 not defined, uncovered some warnings etc.
1157
1158 2007-02-08 Alex Schumann <rubin@afternet.org>
1159
1160 * src/nickserv.c: Filling in ldap support for all password related
1161 operations: cmd_pass, loc_auth, etc.
1162
1163 2007-02-09 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1164
1165 * tools/ldap/ldap_convert.php: Few tweaks.
1166
1167 2007-02-08 Alex Schumann <rubin@afternet.org>
1168
1169 * tools/ldap/inetorganon.schema: Scheme for ldap.
1170
1171 * tools/ldap/ldap_convert.php: Conversion script for converting
1172 x3 users to the ldap server.
1173
1174 2007-02-07 Alex Schumann <rubin@afternet.org>
1175
1176 * configure.in: adding compile/configure support for ssl libs (not
1177 yet needed)
1178
1179 * configure: updated from above.
1180
1181 * src/config.h.in: adding compile/configure support for ssl libs (not
1182 yet needed)
1183
1184 * src/x3ldap.c: ldap crypted password pain. SUpport for object classes
1185 in config file.
1186
1187 * src/x3ldap.h: ldap crypted password pain. Support for object classes
1188 in config file.
1189
1190 * src/nickserv.c: change password in ldap when its changed in
1191 nickserv. Support for object classes in config file.
1192
1193 * src/nickserv.h: support for object classes in conf file
1194
1195 2007-02-07 Alex Schumann <rubin@afternet.org>
1196
1197 * src/x3ldap.c: improve error result feedback
1198
1199 * src/nickserv.c: improve error result feedback (oops, fix for if
1200 ldap_enable is 0)
1201
1202 2007-02-07 Alex Schumann <rubin@afternet.org>
1203
1204 * src/x3ldap.c: ldap_add functionality
1205
1206 * src/x3ldap.h: ldap_add functionality
1207
1208 * src/nickserv.h: ldap_add functionality
1209
1210 * src/nickserv.c: ldap_add functionality
1211
1212 * x3.conf.example: ldap_add functionality
1213
1214 2007-02-06 Alex Schumann <rubin@afternet.org>
1215
1216 * src/x3ldap.c: fix compiling problem when non-ldap. Compile fixups
1217 and sanity checks.
1218
1219 * configure.in: Better ldap library handling **oops ** helps to
1220 actually have -lldap in LIBS...
1221
1222 * configure: regenerated from above ** **
1223
1224 * x3.conf.example: tweaked ldap settings
1225
1226 * src/nickserv.h: remove ldap config settings if not compiled in
1227
1228 * src/nickserv.c: automatiaclly add users who can auth to ldap and get
1229 logins working.
1230
1231 2007-02-06 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1232
1233 * src/x3ldap.c: Added GPL header, also change the printf's to
1234 log_module's as per one of the todo comments.
1235
1236 * src/x3ldap.h: Added GPL header.
1237
1238 2007-02-05 Alex Schumann <rubin@afternet.org>
1239
1240 * src/nickserv.c: fix non-compile without ldap problem
1241
1242 2007-02-05 Alex Schumann <rubin@afternet.org>
1243
1244 * src/x3ldap.c: Beginnings of ldap authentication support
1245
1246 * src/x3ldap.h: Beginnings of ldap authentication support
1247
1248 * src/nickserv.h: Move config struct to .h so ldap.c can see it too
1249
1250 * src/nickserv.c: Beginnings of ldap authentication support
1251
1252 * x3.conf.example: ldap config settings
1253
1254 * src/md5.c: remove old debugging printf() code
1255
1256 * src/configure.in: add --enable-ldap support to configure
1257
1258 * configure: rebuilt from above
1259
1260 * src/Makefile.am: add --enable-ldap support to configure
1261
1262 * src/Makefile.in: rebuilt from above
1263
1264
1265 2007-02-04 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1266
1267 * src/hash.c: Bug fix for bug #1651561.
1268
1269 2007-02-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1270
1271 * src/nickserv.c: Fixed bug #1649326.
1272
1273 2007-01-28 Alex Schumann <rubin@afternet.org>
1274
1275 * src/mod-memoserv.c: if you bind memoserv commands to chanserv's
1276 nick, and someone sends a memo, send them the memo from memoserv, if
1277 there is a memoserv (not chanserv). Also, make the mini-help prompts
1278 more generic, for when they come from another bot besides memoserv.
1279
1280 2007-01-15 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1281
1282 * src/proto-p10.c: RPING support.
1283
1284 2007-01-15 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1285
1286 * src/proto-p10.c: This will hide annoying rping/rping error messages
1287 from the o3 alert channel when denora is linked. Will write proper
1288 functions when i figure out how rping n rpong works.
1289
1290 2007-01-15 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1291
1292 * src/spamserv.c: As kNode points to an entry in killed_users_dict,
1293 we need to free kNode before removing the entry. Fixed a nasty
1294 glibc core.
1295
1296 2007-01-12 Alex Schumann <rubin@afternet.org>
1297
1298 * src/mod-helpserv.c: This module is coded very poorly, with lots of
1299 newby c mistakes with pointers and malloc and whatnot. This fixes some
1300 small part of that so that user commands work again, and to reduce
1301 confusion. It needs a LOT more work to be what I would consider
1302 safe..
1303
1304 2007-01-12 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1305
1306 * src/spamserv.c: Horrible but it will do, i need to rewrite
1307 the flag system.
1308
1309 * src/spamserv.h: Oppsie, probably my fault. Fixed caps and
1310 badreaction being linked up.
1311
1312 * src/proto-p10.c: Fixed handling of incoming SVSPART's.
1313
1314 2007-01-10 Alex Schumann <rubin@afternet.org>
1315
1316 * src/log.c: commented out impossible assertion which makes x3 core on
1317 fatal errors instead of exit cleanly.
1318
1319 2007-01-10 Alex Schumann <rubin@afternet.org>
1320
1321 * src/mod-helpserv.c: fix strncpy problem
1322
1323 2007-01-07 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1324
1325 * src/chanserv.c: Fixed some bugs in trace_check_bans (Used with
1326 checkrestrictions alerts.
1327
1328 * src/opserv.c: Fixed up how limits are check with checkrestrictions.
1329
1330 2007-01-07 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1331
1332 * configure: Regenerated.
1333
1334 * configure.in: Added HAVE_HELPSERV.
1335
1336 * x3.conf.example: Seems theres been a hidden prefix option to
1337 allow users to use helpserv commands (ones for users not helpers).
1338
1339 * src/config.h.in: Added HAVE_HELPSERV.
1340
1341 * src/mod-helpserv.c: Made helpserv more useable:
1342
1343 * Added CLOSEREQ for users to close their current request.
1344
1345 * Added SHOWREQ for users to show their current req (equiv of SHOW).
1346
1347 * Added JoinTotal, if ON then when a helper joins the channel they
1348 will be sent a notice of the total UNASSIGNED requests.
1349
1350 * Added AlertNew, if ON then when a user opens a new help request
1351 all helpers will be alerted.
1352
1353 * Added SUSPEND/UNSUSPEND for suspending and unsuspending help
1354 bots.
1355
1356 * Added $i replacer for HelpServ SET's, changes $i to a valid
1357 request id. If no iq exists for another bot uses $i then all
1358 that is displayed is $i.
1359
1360 * Changed the USERCMD function type from void to int so that we
1361 dont get a warning when trying to use REQUIRE_PARMS in a usercmd
1362 function.
1363
1364 * Seeing as helpserv does its help slightly different i added in the
1365 HEADER/DIVIDER/FOOTER help code from modcmd.c, so that the help
1366 output looks the same.
1367
1368 * Addded usercmd_helpserv for to access USERINDEX.
1369
1370 * Allow users to use HELP even without an open request.
1371
1372 * src/mod-helpserv.help: Made the index a bit more like X3, O3 etc.
1373 Also added a USERINDEX. Plus added help for the above things i
1374 added to helpserv
1375
1376 * src/modcmd.c: Adjusted years.
1377
1378 2007-01-03 Alex Schumann <rubin@afternet.org>
1379
1380 * src/opserv.c: fix crash in ctcp version checkin
1381
1382 2007-01-01 Alex Schumann <rubin@afternet.org>
1383
1384 * x3.conf.example: Fixed set_shows which didnt get updated a while
1385 back.
1386
1387 2006-12-26 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1388
1389 * src/spamserv.c: Try this, tho sizeof worked fine for me with
1390 info sizes of 4 and 5 ("blss" and "blsss") i had no crashes.
1391
1392 2006-12-26 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1393
1394 * src/spamserv.c: Added CAPSSCAN for scanning caps, other related
1395 options added, CAPSREACTION, CAPSMIN, and CAPSPERCENT.
1396
1397 * src/spamserv.h: Added caps scanning functionality.
1398
1399 * src/spamserv.help Added caps scanning help
1400
1401 2006-12-26 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1402
1403 * src/spamserv.c: Tweaked the SET output for the EXCEPT levels.
1404
1405 2006-12-26 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1406
1407 * src/spamserv.c: Removed scan voiced/halfops/ops SET options.
1408 Added 4 new except levels, EXCEPTADVLEVEL, EXCEPTBADWORDLEVEL,
1409 EXCEPTFLOODLEVEL, and EXCEPTSPAMLEVEL. Users equal or above to
1410 the specified levels will be exempt. All levels default to
1411 UL_OP (200) at first.
1412
1413 * src/spamserv.h: Added new except variables.
1414
1415 * src/spamserv.help: Added new sections for the new except SET
1416 options, plus removed the level lines for now.
1417
1418 2006-12-25 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1419
1420 * Merry Christmas! :)
1421
1422 * src/spamserv.c: Meh cant sleep damn people outside. Fixed a bug
1423 with setting exceptlevel.
1424
1425 2006-12-24 Alex Schumann <rubin@afternet.org>
1426
1427 * src/chanserv.c: fixed incorrect message when .dellamer is used on a
1428 nickname.
1429
1430 2006-12-25 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1431
1432 * Merry Christmas! :)
1433
1434 * This completes RFE 1577823.
1435
1436 * src/spamserv.c: Added EXCEPTLEVEL, this replaces the code that
1437 excepts all people who are opped etc. Only people above this level
1438 will be immune now. Defaults to 300 for channels without the option
1439
1440 * src/spamserv.h: Added exceptlevel.
1441
1442 * src/spamserv.help: Added EXCEPTLEVEL.
1443
1444 2006-12-25 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1445
1446 * Merry Christmas! :)
1447
1448 * src/spamserv.c: Added trusted accounts support (RFE 1577823).
1449
1450 * src/spamserv.help: ADDTRUST, DELTRUST, OADDTRUST, ODELTRUST,
1451 and LISTTRUST added.
1452
1453 2006-12-20 Alex Schumann <rubin@afternet.org>
1454
1455 * src/Makefile.in: undo temp fix
1456
1457 * src/opserv.c: perm fix to HAVE_TRACK define problems
1458
1459 * src/configure.in: perm fix to HAVE_TRACK define problems
1460
1461 * src/config.h.in: perm fix to HAVE_TRACK define problems
1462
1463 2006-12-21 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1464
1465 * src/Makefile.in: Temp fix.
1466
1467 2006-12-20 Alex Schumann <rubin@afternet.org>
1468
1469 * src/proto-p10.c: added full mark support including as a trace
1470 criteria.
1471
1472 * src/opserv.c: added full mark support including as a trace
1473 criteria.
1474
1475 * src/hash.h: added full mark support including as a trace
1476 criteria.
1477
1478 * src/opserv.help: documented the 'marked' criteria in trace.
1479
1480 2006-12-20 Alex Schumann <rubin@afternet.org>
1481
1482 * src/chanserv.c: fixing a bug with unmatching userlevels and the del*
1483 commands. (such as delpeon of a user with non-standard peon level)
1484
1485 * src/spamserv.c: fixing memory corruption problems with dicts. Fixed
1486 crash with service rename, and probably many other problems.
1487
1488 * src/mod-track.c: fixing memory problems, and the broken set command.
1489 Track may be stable now, needs large scale testing.
1490
1491 2006-12-20 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1492
1493 * src/chanserv.help: Opps that will teach me for cut n pasting.
1494 Adjusted duration line for CLVL help. Users are not removed after
1495 the duration they are reverted back to their previous access
1496 level.
1497
1498 2006-12-19 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1499
1500 * src/chanserv.c: check the ircd side ban list too
1501
1502 * src/opserv.c: Fixed a small bug, woops.
1503
1504 2006-12-19 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1505
1506 * src/chanserv.c: Added trace_check_bans, cut down version of
1507 check_bans for checkrestrictions
1508
1509 * src/chanserv.h: Declare trace_check_bans.
1510
1511 * src/opserv.c: Added addalert/trace option checkrestrictions. When
1512 using SVSJOIN as an action this option will check the ban lists, invite
1513 keys and limits of the target channel and if any match or exist (invite
1514 etc) then the SVSJOIN wont go through
1515
1516 * src/opserv.help: Added information about checkrestrictions.
1517
1518 2006-12-19 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1519
1520 * src/chanserv.c: Timed CLVL's. This just works like my last commit.
1521
1522 * src/chanserv.h: tweaked expiry to accessexpiry and added clvlexpiry
1523 and lastlevel.
1524
1525 * src/chanserv.help: Added information about timed clvls.
1526
1527 2006-12-18 Alex Schumann <rubin@afternet.org>
1528
1529 * src/mod-memoserv.c: add a 'privmsg' flag for being notified via pm
1530 instead of notice, when you get new memos. Fixed a buffer overrun with
1531 memo ids.
1532
1533 * src/mod-memoserv.help: fix-up help for settings.
1534
1535 2006-12-19 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1536
1537 * src/chanserv.c: New feature, channel managers can now add people
1538 with a duration. After the duration expires the person will be
1539 automatically removed and deoped.
1540
1541 * src/chanserv.h: Added expiry.
1542
1543 * src/chanserv.help: Added information about timed accesses.
1544
1545 * src/modcmd.c: Tweaked addop, addhop etc so a duration can be
1546 specified.
1547
1548 2006-12-18 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1549
1550 * src/proto-p10.c: Reverted one of my line changes.
1551
1552 2006-12-17 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1553
1554 * src/opserv.c: Fixed up a couple of $b errors.
1555
1556 2006-12-17 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1557
1558 * src/chanserv.c: Woops forgot to init the channel mode change.
1559
1560 * src/chanserv.h: Tweak to check_bans.
1561
1562 * src/proto-p10.c: Add some sanity checks plus moved the +x to
1563 after the CMD_FAKEHOST otherwise if the person auths then gets
1564 marked they will cause 2 Registered quits on the IRCd. Only one
1565 will happen now.
1566
1567 2006-12-17 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1568
1569 * src/chanserv.c: Added function check_bans to check bans in a
1570 specific channel when needed (see below).
1571
1572 * src/chanserv.h: check_bans deceleration.
1573
1574 * src/proto-p10.c: First of all we dont need a handle_info when
1575 checking for IsHiddenHost, the IRCd takes care of this. Made it
1576 so we copy the fakehost into user->fakehost so X3 can check
1577 IsFakeHost properly. Lastly after we set a fakehost in irc_mark
1578 we need to recheck the users bans just in case a person has
1579 lamer'ed the marked hostname.
1580
1581 2006-12-12 Alex Schumann <rubin@afternet.org>
1582
1583 * configure.in: making google core lib optional
1584
1585 * configure: regenerated
1586
1587 * src/proto-p10.c: added support for sending nefarious marks
1588
1589 * src/proto.h: prototype for irc_mark
1590
1591 * src/opserv.help: documented new mark support. Also documented the
1592 svsjoin and svspart commands as they were missing.
1593
1594 * src/hash.h: added MARKLEN define
1595
1596 * src/opserv.c: added mark command as well as mark support in trace
1597 and addalert.
1598
1599 2006-12-12 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1600
1601 * configure: Regenerated.
1602
1603 * configure.in: Add support for google core dumper. Plus updated
1604 tre to 0.7.5.
1605
1606 * Makefile.in: Regenerated.
1607
1608 * rx/Makefile.in: Regenerated.
1609
1610 * src/config.h.in: Regenerated.
1611
1612 * src/Makefile.in: Regenerated.
1613
1614 * tools/core_install.sh: Just like tre_install.sh. This installs
1615 the core dumper.
1616
1617 * tools/coredumper.tar.gz: Google core dumper 0.2.
1618 http://sourceforge.net/projects/goog-coredumper/
1619
1620 * tools/tre_install.sh: Updated version to 0.7.5
1621
1622 * tools/tre.tar.gz: Updated tre to 0.7.5.
1623
1624 2006-12-10 Alex Schumann <rubin@afternet.org>
1625
1626 * src/opserv.c: fix debug message left at wrong level ("checking
1627 reroute()")
1628
1629 2006-12-09 Alex Schumann <rubin@afternet.org>
1630
1631 * src/opserv.c: bugfixes to autorouting timer code
1632 improved stats routing to clean up & take an argument
1633
1634 * src/opserv.h: bugfixes to autorouting timer code
1635
1636 * src/opserv.help: document new stats routing syntax
1637
1638 * src/timeq.c: added some usefull (commented out) debugging code for
1639 figuring out timer problems.
1640
1641 * src/timerq.h: added some usefull (commented out) debugging code for
1642 figuring out timer problems.
1643
1644 * src/proto-p10.c: cleanup/improve eob autorouting init
1645
1646 2006-12-08 Alex Schumann <rubin@afternet.org>
1647
1648 * src/opserv.c: Moving some version reply housekeeping to proto-p10.c
1649
1650 * src/proto-p10.c: moving version reply storage here, adding webTV
1651 no_notice support (automatiaclly dont send notices if version reply
1652 says its a webtv user since they cant SEE notices. (other clients to
1653 add?)) note, this needs a version query alert to get the version from
1654 them.
1655
1656 * src/helpfile.c: honor the no_notices user bit
1657
1658 * src/hash.h: add no_notices user bit
1659
1660 2006-12-07 Alex Schumann <rubin@afternet.org>
1661
1662 * src/opserv.c: Add filter ability to stats alerts + fixup
1663
1664 * src/opserv.help: document filter feature of stats alerts + fixup
1665
1666 2006-12-02 Alex Schumann <rubin@afternet.org>
1667
1668 * src/chanserv.c: fix to levels command (- were missing)
1669
1670 * src/tools.c: fix warning
1671
1672 * src/common.h: fix warning
1673
1674 * src/chanserv.help: update online help url, changed help general to
1675 use new $! command char replacement code.
1676
1677 * src/hash.c: fix warning when geoip is off
1678
1679 * src/helpfile.c: add new '$!' code for chanserv's current trigger
1680 char in help files
1681
1682 2006-12-01 Alex Schumann <rubin@afternet.org>
1683
1684 * src/chanserv.c: Raisk pointed out that mdelop and friends dont work
1685 on users of non-standard access level such as 201. Fixed this by
1686 changing mdelop and friends to work on the range of access levels.
1687 Added a LEVELS command.
1688
1689 * src/chanserv.h: corrected PEON access defines such that 1-150 is
1690 peon instead of 100-150 with 1-99 being undefined.
1691
1692 * src/chanserv.help: help for new LEVELS command
1693
1694 * src/helpfile.c: Improved table functions so that it automatically
1695 right-justifies numerical columns.
1696
1697 * src/tools.c: Added helper functions str_is_number and msnprintf (an
1698 auto-mallocing printf function)
1699
1700 * src/common.h: defines and defines for msnprintf and str_is_number
1701
1702
1703 2006-11-30 Alex Schumann <rubin@afternet.org>
1704
1705 * src/chanserv.c: Modified .myaccess such that if you give it your own
1706 account when you are not a helper, it still works. (Requested by
1707 Jigsy)
1708
1709 * src/nickserv.help: Corrected the help file to feed oregister based
1710 on email_required instead of email_enabled
1711
1712 * src/nickserv.c: Fix & close sf bug 1584057 (hidden_host with no dots
1713 causes crash in set if no title) thanks xanjunior
1714
1715 2006-10-18 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1716
1717 * src/opserv.c: Minor cosmetic error noticed by Raisk. If doing an
1718 opserv WHOIS from another service (when bound), the channels reply
1719 would come from o3 instead of that service.
1720
1721 2006-10-18 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1722
1723 * src/opserv.c: Added in SVSPART alert/traces.
1724
1725 * src/opserv.help: Added in bits for SVSJOIN, SVSPART, and VERSION.
1726
1727 * src/proto.h: Added in decleration for svspart.
1728
1729 * src/proto-p10.c: Extend current SVSPART functionality so that we
1730 can send them with traces etc.
1731
1732 2006-10-14 Alex Schumann <rubin@afternet.org>
1733
1734 * src/opserv.c: fix crash Buttaknife noticed if you forget chantarget
1735 in svsjoin alerts. Cleanup old silent code fragments left over. Check
1736 for missing chantarget in alerts also.
1737
1738 2006-10-12 Alex Schumann <rubin@afternet.org>
1739
1740 * src/opserv.c: Added VERSION alert/trace reaction, so you can now
1741 setup x3 to version only users matching a criteria, and then another
1742 alert to do someting based on the version reply. This should be
1743 usefull for finding bots etc. Or, for example, you can make all xchat
1744 people join #xchat, or all mirc join #mirc etc.
1745 Also, there is a fix in here for SVSJOIN which i hadn't gotten
1746 everything working with.
1747
1748 * src/proto-p10.c: added privmsg_user and version_user functions
1749
1750 * src/proto.h: added privmsg_user and version_user function
1751 declerations
1752
1753 * src/hash.h: added version_reply variable to users
1754
1755
1756
1757 2006-10-12 Alex Schumann <rubin@afternet.org>
1758
1759 * src/opserv.c: Added SVSJOIN command, to push a user into a channel,
1760 and a TRACE REACTION of SVSJOIN for trace and alerts. Now you can do
1761 something like 'trace SVSJOIN chantarget #dronebots nick bot[*'
1762 or send all level3 users to a perticular channel on connection, etc.
1763
1764 2006-10-12 Alex Schumann <rubin@afternet.org>
1765
1766 * src/chanserv.c: Make lamers not affect users on the userlist above
1767 inviteme level in the channel. (why kb users who can .uba and
1768 .inviteme back in?)
1769
1770 2006-10-10 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1771
1772 * src/spamserv.c: Ignore those with access (if the options are
1773 disabled- scanchanops, scanhalfops, scanvoiced.
1774
1775 2006-10-08 Alex Schumann <rubin@afternet.org>
1776
1777 * src/chanserv.c: undid 9/16/06 change of 5 second delay before
1778 autojoin. Not really a great solution. Instead, move auth_handler
1779 funcs to be called after stamping etc. thx to Buttaknife for this
1780 solution.
1781
1782 * src/nickserv.c: move auth_func calls to after stamping, and
1783 commented up the cmd_auth source to make it more managable.
1784
1785 2006-10-04 Alex Schumann <rubin@afternet.org>
1786
1787 * src/chanserv.c: remove redundant 'none' from empty llists
1788
1789 2006-10-04 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1790
1791 * src/nickserv.c: Fix for bug 1555621. Cookie data will be copied
1792 over with odelcookie now.
1793
1794 2006-10-04 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1795
1796 * src/chanserv.c: Fix for bug 1551717. If automode is set to 0
1797 in a channel and a user auths in the channel, the user will not
1798 receive autoop etc if they have it enabled in uset.
1799
1800 2006-10-03 Alex Schumann <rubin@afternet.org>
1801
1802 * src/opserv.c: Check for connect timer entries before adding new
1803 ones, hopefully will fix bug 1570408 (pLaYa, let us know)
1804
1805 2006-09-25 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1806
1807 * src/modcmd.c: Shortened ThiefMaster to just his nick as per request
1808 by him.
1809
1810 2006-09-16 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1811
1812 * src/chanserv.c: Do autojoin 5 seconds after handle_auth. Seems its
1813 happening before autohide. Let me know if its still happening before
1814 autohide.
1815
1816 * src/chanserv.help: Updated the AUTOJOIN bit.
1817
1818 2006-09-13 Alex Schumann <rubin@afternet.org>
1819
1820 * src/chanserv.help: improved the help listing for the info command,
1821 and information help category.
1822
1823 2006-09-10 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1824
1825 * src/mod-memoserv.c: Fixed crash bug.
1826
1827 * src/spamserv.c: Ignore opers.
1828
1829 2006-08-28 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1830
1831 * README: tweaks.
1832
1833 2006-08-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1834
1835 * src/chanserv.help: Tweaked a , to .
1836
1837 2006-08-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1838
1839 * src/opserv.help: Removed privs menu so we can release a tarball.
1840
1841 2006-08-25 Alex Schumann <rubin@afternet.org>
1842
1843 * src/chanserv.c: fix uset reply for halfops
1844
1845 * src/nickserv.help: document the 'b' account flag
1846
1847 2006-08-26 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1848
1849 * x3.conf.example: Added hidden host style option and key options
1850 for style 2.
1851
1852 * src/hosthiding.h: Remove KEY #defines.
1853
1854 * src/hosthiding.c: Set the keys only once using the conf values.
1855
1856 * src/nickserv.c: Generate hidden hosts off crypt hosts instead
1857 of standard hidden hosts if style is 2.
1858
1859 * src/proto-common.c: Generate hidden hosts off crypt hosts instead
1860 of standard hidden hosts if style is 2.
1861
1862 * src/proto-p10.c: Set crypt host to the crypt IP if there is no
1863 hostname (unresolved). This is how Nefarious works.
1864
1865 * src/tools.c: Generate hidden hosts off crypt hosts instead
1866 of standard hidden hosts if style is 2.
1867
1868 2006-08-24 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1869
1870 * src/chanserv.c: Added autojoin USET option, which uses SVSJOIN.
1871
1872 * src/chanserv.h: Added autojoin USET option, which uses SVSJOIN.
1873
1874 * src/proto.h: irc_svsjoin decelerations.
1875
1876 * src/proto-p10.c: Wrote irc_svsjoin plus added the nessecary bits
1877 for SVSJOIN. Also wrote cmd_svsjoin for if X3 should ever recieve
1878 an SJ it will be handled properly as a JOIN. Did the same for
1879 SVSPART.
1880
1881 2006-08-24 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1882
1883 * src/spamserv.c: Fixed the +k issue with spamserv.
1884
1885 2006-08-24 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1886
1887 * src/opserv.c: Added PRIVSET Command.
1888
1889 * src/opserv.help: Added PRIVSET Command. Plus contents for the
1890 privs section.
1891
1892 * src/proto.h: irc_privs deceleration.
1893
1894 * src/proto-p10.c: Fixed a compile issue plus added functions for
1895 setting and checking privs.
1896
1897 2006-08-23 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1898
1899 * x3.conf.example: Add a new ircd type 6 for trunk nefarious.
1900
1901 * src/hash.h: Priv declerations.
1902
1903 * src/opserv.c: Show privs in WHOIS output.
1904
1905 * src/proto.h: client_report_privs decleration.
1906
1907 * src/proto-p10.c: Handle PRIV only for type 6 servers.
1908
1909 2006-08-19 Alex Schumann <rubin@afternet.org>
1910
1911 * src/authserv.c: document the oset flag +b in help (hide from staff
1912 command.)
1913
1914 2006-08-19 Alex Schumann <rubin@afternet.org>
1915
1916 * src/chanserv.c: added reply command, which responds similar to calc,
1917 but with any message. (for use with bindings)
1918
1919 * src/modcmd.c: enabled the ability to use $a $n and $m in BIND, which
1920 are replaced with the target command's calling user's account, nick,
1921 and numnick respectively. This and the above allows things like:
1922 BIND x3 account x3.reply your account is $a or
1923 BIND x3 kickme x3.kick $n $1-
1924 more to come, maybe, later.
1925
1926 2006-08-01 Alex Schumann <rubin@afternet.org>
1927
1928 * src/modcmd.c: Added OSI certification message to VERSION command
1929
1930 2006-08-09 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1931
1932 * x3.conf.example: Redid part of the geoip summary.
1933
1934 2006-08-09 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1935
1936 * src/opserv.c: If we have a city, latitude and longitude returned
1937 then show a map url. Some results have no city but a latitude and
1938 a longitude. The coordinates are useless in this case and most
1939 people would know where the country is around abouts.
1940
1941 2006-08-08 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1942
1943 * src/hash.c: Speed up city and country lookups significantly.
1944 Just slow for the first read but once thats done the rest is fast.
1945
1946 2006-08-08 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1947
1948 * src/spamserv.c: Fix a crash in spamserv (Tracker# 1535968).
1949 I dont know if this will work for sure as i cant reproduce it. But
1950 my theory is that once the user is kicked the mode node is dropped.
1951 Users without modes should still return a valid mode node.
1952
1953 2006-08-08 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1954
1955 * src/chanserv.c: Fixed a crash with giveownership. X3 would crash
1956 if a giveownership command was issued in a channel with no owners.
1957
1958 2006-08-07 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1959
1960 * configure: Regenerated.
1961
1962 * configure.in: Added checks for GeoIP headers and libs.
1963
1964 * x3.conf.example: Add in 2 options for the dat filenames of the
1965 city and country files. If not specified then no geoip data
1966 will be checked.
1967
1968 * src/config.h.in: Regenerated.
1969
1970 * src/hash.c: Created a function to check the geoip info from the
1971 dat files.
1972
1973 * src/hash.h: Decelerations plus added entries to the userNode
1974 struct.
1975
1976 * src/opserv.c: Display the GeoIP information in WHOIS.
1977
1978 * src/proto-p10.c: Call the new geoip data collection function
1979 towards the end of AddUser.
1980
1981 2006-08-06 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1982
1983 * src/global.c: Fixed a bug, wasnt message_del'ing some messages.
1984
1985 2006-08-01 Alex Schumann <rubin@afternet.org>
1986
1987 * src/chanserv.c: Add automode 6, to just voice everyone with access.
1988 Idea by daniel (thx)
1989
1990 2006-08-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1991
1992 * This message is apart of the below one, its just seperate so
1993 it doesnt get lost amongst the below messages.
1994
1995 * src/global.c: Fixed a warning.
1996
1997 2006-08-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
1998
1999 * configure: Removed bahamut support, didnt even work.
2000
2001 * configure.in: Removed bahamut support, didnt even work.
2002
2003 * INSTALL: Removed bahamut support, didnt even work.
2004
2005 * x3.conf.example: Removed bahamut support, didnt even work.
2006
2007 * patches/log-pgsql.diff: Removed bahamut support, didnt even work.
2008
2009 * patches/helpserv-pgsql.diff: Removed bahamut support, didnt even
2010 work.
2011
2012 * src/config.h.in: Removed bahamut support, didnt even work.
2013
2014 * src/gline.c: Removed bahamut support, didnt even work.
2015
2016 * src/hash.h: Removed bahamut support, didnt even work.
2017
2018 * src/nickserv.c: Removed bahamut support, didnt even work.
2019
2020 * src/nickserv.h: Removed bahamut support, didnt even work.
2021
2022 * src/Makefile.am: Removed bahamut support, didnt even work.
2023
2024 * src/Makefile.in: Removed bahamut support, didnt even work.
2025
2026 * src/proto-bahamut.c: Removed bahamut support, didnt even work.
2027
2028 * src/shun.c: Removed bahamut support, didnt even work.
2029
2030 2006-08-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2031
2032 * src/global.c: Added language strings for mod-helpserv.c, opserv.c,
2033 spamserv.c, nickserv.c.
2034
2035 * src/mod-helpserv.c: Changed global_message uses to global_message_arg's.
2036
2037 * src/nickserv.c: Changed global_message uses to global_message_arg's.
2038
2039 * src/opserv.c: Changed global_message uses to global_message_arg's.
2040
2041 * src/spamserv.c: Changed global_message uses to global_message_arg's.
2042
2043 2006-08-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2044
2045 * src/chanserv.c: Changed global_message uses to global_message_arg's.
2046
2047 * src/global.c: Added language strings for chanserv.c
2048
2049 2006-08-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2050
2051 * src/global.c: Make sure we arnt sending duplicate messages in
2052 some cases.
2053
2054 2006-08-01 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2055
2056 * src/x3.conf.example: Removed the targets option.
2057
2058 * src/global.c: Wrote new function that will global message users
2059 and/or opers and/or helpers messages in their own langauge. The
2060 strings are set either in language files or in the global.c message
2061 struct. This allows us to send defcon notices to people and they
2062 will get them in their own language if they have it set.
2063
2064 * src/global.h: global_message_args decleration.
2065
2066 * src/opserv.c: Removed targets option for defcon as its too hard
2067 to send messages to people in channels if the people have different
2068 language settings.
2069
2070 2006-07-31 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2071
2072 * src/opserv.c: TODO stuff.
2073
2074 2006-07-31 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2075
2076 * x3.conf.example: Added SHUN setting for DEFCON.
2077
2078 * doc/DEFCON: Added SHUN setting for DEFCON.
2079
2080 * src/opserv.c: Moved the gline check to here. Also added a SHUN
2081 check.
2082
2083 * src/opserv.h: Added SHUN setting for DEFCON.
2084
2085 * src/proto-p10.c: Moved the DEFCON gline check to opserv.c
2086
2087 2006-07-31 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2088
2089 * x3.conf.example: Added new Defcon system settings
2090
2091 * doc/DEFCON: Anope's Defcon doc adapted for X3.
2092
2093 * src/chanserv.c: Block mode changes and channel registrations if
2094 required.
2095
2096 * src/mod-memoserv.c: Block new memos if required.
2097
2098 * src/nickserv.c: Block nick registrations if required.
2099
2100 * src/opserv.c: Added in defcon system, uses some of the anope code.
2101 Most tho is from scratch.
2102
2103 * src/opserv.h: Defcon declerations.
2104
2105 * src/opserv.help: Added DEFCON entry.
2106
2107 * src/proto-p10.c: If required gline new clients, also if required
2108 kill new clients.
2109
2110 2006-07-29 Alex Schumann <rubin@afternet.org>
2111
2112 * configure.in, Makefile.in, src/Makefile.in, tools/tre_install.sh,
2113 src/opserv.c, src/config.h.in, src/nickserv.c, src/Makefile.am: I am
2114 not comfortable running 'make install' on libtre from ./configure.
2115 This violates what the user expects in a way that can harm the system.
2116 Changed how the libtre checks work and provided easy-to-use install
2117 script. -fix link stage
2118
2119 * rx/Makefile.in: fix autotools warning(s)
2120
2121 2006-07-28 Alex Schumann <rubin@afternet.org>
2122
2123 * src/nickserv.help: add odelcookie to help oper
2124
2125 * x3.conf.example: update & improve x3.conf.example description of
2126 extended_accounts setting.
2127
2128 2006-07-26 Alex Schumann <rubin@afternet.org>
2129
2130 * src/opserv.c: Fix crash when doing reroute if routing isnt
2131 configured. | Voice discovered that the error message for addplan fail
2132 was typeo'd so not showing.
2133
2134 * src/opserv.help: slight changes to routing help.
2135
2136 * src/chanserv.c: let non-staff see when channels were registered with
2137 .info
2138
2139 2006-07-24 Alex Schumann <rubin@afternet.org>
2140
2141 * src/proto-p10.c: dont burst channels with 0 users in them (which
2142 were created by alert discrims, most likely)
2143
2144 2006-07-23 Alex Schumann <rubin@afternet.org>
2145
2146 * x3.conf.example: Added chanserv "modes" to example - use to control
2147 what usermodes chanserv gets. Mainly for setting +d or not, if you
2148 have nef 1.0 'b:' lines setup.
2149
2150 2006-07-25 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2151
2152 * src/nickserv.c: If theres no title set then the default title
2153 will therefore be the first part of hidden_host in x3.conf.example,
2154 so for consistency with opt_fakehost we will print this.
2155
2156 2006-07-25 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2157
2158 * src/nickserv.c: The reason why theres no arg rubin is that
2159 if you want to print the fakehost then u dont specify an arg.
2160 This tells opt_fakehost to set fake to the current fakehost
2161 and pass it on to be printed.
2162
2163 2006-07-23 Alex Schumann <rubin@afternet.org>
2164
2165 * src/nickserv.c: Add config file regex fakehost test + sanity
2166 checking in title as well (fixed).
2167
2168 * src/mod-memoserv.c: Fixed crash bug in memosearv read. (check argc
2169 instead of argv[2]==null since argv's dont get set null.
2170
2171 2006-07-23 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2172
2173 * src/mod-memoserv.c: Fix to a crash/output corruption issue.
2174
2175 * src/proto-p10.c: Host in topic supports sethost and fakehost
2176 now.
2177
2178 2006-07-21 Alex Schumann <rubin@afternet.org>
2179
2180 * src/proto-p10.c: Added support for irc_wallop, irc_squit,
2181 irc_connect, and added callbacks to handle connect failures and
2182 successes. (All prep for auto routing system)
2183
2184 * src/proto.h: Added support for irc_wallop, irc_squit,
2185 irc_connect, and added callbacks to handle connect failures and
2186 successes. (All prep for auto routing system)
2187
2188 * src/opserv.help: Help entries for auto routing system + fix typeo in
2189 routing example
2190
2191 * src/hash.h: New structs for auto routing system
2192
2193 * src/opserv.c: The long-awaited X3 Auto Routing Plan system! + reduce
2194 error message to debug message.
2195
2196 * src/opserv.h: The long-awaited X3 Auto Routing Plan system!
2197
2198 * src/modcmd.c: added 'routing' main command alias.
2199
2200 2006-07-16 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2201
2202 * x3.conf.example: Added host_in_topic option for sending full
2203 nick!user@host if its enabled. Default to one as Nefarious is
2204 default to TRUE for HOST_IN_TOPIC. There will be wierdness if
2205 you have this enabled on X3 and not on your Nefarious server.
2206
2207 * src/proto-p10.c: Make use of host_in_topic.
2208
2209 2006-07-13 Alex Schumann <rubin@afternet.org>
2210
2211 * src/opserv.c: make the bot reply from the nick you /msg in all
2212 cases, if commands are bound to a different bot.
2213
2214 * src/nickserv.c: make the bot reply from the nick you /msg in all
2215 cases, if commands are bound to a different bot.
2216
2217 * src/chanserv.c: make the bot reply from the nick you /msg in all
2218 cases, if commands are bound to a different bot.
2219
2220 * src/mod-memoserv.c: Make all memoserv commands reply from the bot you
2221 msg, not the defined memoserv bot, if commands are aliased to other
2222 bots. This may also fix the crash bug playa reported at
2223 http://www.unrealgamers.net/forums/index.php?showtopic=138
2224
2225 2006-07-11 Alex Schumann <rubin@afternet.org>
2226
2227 * src/chanserv.c: Fixed some weirdness with nef 1.0's 2nd topic setter
2228 and some x3 topic functions.
2229
2230 * x3.conf.example: Improved server/type setting documentation,
2231 and changed default to 5.
2232
2233 2006-07-11 Alex Schumann <rubin@afternet.org>
2234
2235 * src/opserv.c: fixed silent alerts not getting picked up from db file
2236 on read/load.
2237
2238 2006-07-11 Alex Schumann <rubin@afternet.org>
2239
2240 * src/opserv.c: add sanity checking to jupe to avoid catastrophic loop
2241 when adding an invalid jupe servername or numeric.
2242 this closes bug number 1513510.
2243
2244 * src/modcmd.c: if pubcmd is set higher than your level, only respond
2245 with the denied msg if the command was actually found. this closes bug
2246 number 1509382.
2247
2248 2006-07-10 Alex Schumann <rubin@afternet.org>
2249
2250 * src/chanserv.c: fixed crash bug trying to deref the handleinfo of a
2251 non-logged-in user (null pointer)
2252
2253 2006-07-09 Alex Schumann <rubin@afternet.org>
2254
2255 * src/nickserv.c: fixed bug where unignores were getting sent to the
2256 user multiple times, instead of to each online nick once.
2257
2258 2006-07-09 Alex Schumann <rubin@afternet.org>
2259
2260 * src/nickserv.c: Fixes for addignore/delignore corruption +missed a
2261 spot. Ugh, messed up the fix. Trying again :)
2262
2263 2006-07-10 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2264
2265 * src/chanserv.c: INVITE now checks the targets ignore/silence list.
2266 If the target is ignoring the person inviting them then the invite
2267 is denied.
2268
2269 2006-07-07 Alex Schumann <rubin@afternet.org>
2270
2271 * src/mod-memoserv.c: pLaYa reported a crash/corruption bug in
2272 memoserv most easily seen when sending short memos. Rewrote the flag
2273 handling part of memo send to correct it.
2274
2275 2006-07-05 Alex Schumann <rubin@afternet.org>
2276
2277 * src/helpfile.c: pLaYa pointed out the table code row count is off by
2278 one. Fixed.
2279
2280 2006-06-27 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2281
2282 * configure: Regenerated.
2283
2284 * configure.in: Make use of TRE regexp library. Its more powerful
2285 than the standard library (http://laurikari.net/tre/index.html).
2286 Im also pondering adding services side regexp bans, X3 would
2287 probably required a channel flag called say advanced that can
2288 only be set by the owner. If enabled then regexp bans can be
2289 used. I also added an output saying what modules are enabled,
2290 what protocol is enabled, what malloc is choosen and if debugging
2291 is enabled. Just a bit of a message as the user will of seen
2292 programs just finish compiling and he/she/it may think it
2293 was X3 compiling, but it was just TRE compiling. They still need
2294 to compile X3.
2295
2296 * src/config.h.in: Regenerated.
2297
2298 * src/Makefile.am: Tweak for TRE.
2299
2300 * src/Makefile.in: Regenerated.
2301
2302 * src/nickserv.c: Use the new regex.h Im sure -I includes get
2303 called before system includes like /usr/include.
2304
2305 * src/opserv.c: Use the new regex.h Im sure -I includes get
2306 called before system includes like /usr/include.
2307
2308 * src/tools/tre.tar.gz: TRE 0.7.4. Configure will untar and
2309 compile this just before configure finishes up. Sits around
2310 470KB, rather than another 2.5MB if i TRE untarred. I suppose
2311 i could get it down a bit more using Bzip but there are some
2312 boxes out there still without bzip.
2313
2314 2006-06-25 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2315
2316 * src/mod-memoserv.c: Better history implementation. A seperate
2317 table is used for history entries. Entries contain the same
2318 fields as the memo table except for the message, read, and flags.
2319 Entries are only removed from the history db when they get
2320 expired by do_expire (older than message_expire). Also fixed
2321 up a issue with STATUS. On AfterNET we were getting huge large
2322 for the amount of memos. I now realise it was reading the amount
2323 of users. It now reads the proper amount of memos. I also a count
2324 for history entries.
2325
2326 * src/mod-memoserv.help: EXPIRE handles history and memos now.
2327
2328 2006-06-25 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2329
2330 * src/mod-memoserv.c: Make use of ignore lists when trying to
2331 send memos.
2332
2333 2006-06-25 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2334
2335 * src/spamserv.c: Crash fix (finally). Been meaning to do this
2336 for a while now.
2337
2338 2006-06-23 Alex Schumann <rubin@afternet.org>
2339
2340 * src/modcmd.help, src/opserv.help, src/helpfile.c, src/helpfile.h,
2341 src/modcmd.c, src/nickserv.c: Improvements to
2342 table output and help display.
2343
2344 * src/mod-memoserv.c: fix segfault
2345
2346 2006-06-23 Alex Schumann <rubin@afternet.org>
2347
2348 * src/chanserv.c: Backing out the bantype patch because it sucks _bad_.
2349 fix it and re-apply if you want it..
2350
2351 * src/chanserv.h: Backing out the bantype patch.
2352
2353 * src/chanserv.help: Backing out the bantype patch.
2354
2355 2006-06-20 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2356
2357 * src/mod-memoserv.c: Fixed a bug.
2358
2359 2006-06-20 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2360
2361 * src/mod-memoserv.c: Added basic HISTORY command. At the moment
2362 if the recipient deletes the memo it will not be listed in the
2363 HISTORY list.
2364
2365 * src/mod-memoserv.help: HISTORY entry.
2366
2367 2006-06-20 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2368
2369 * src/mod-memoserv.c: Added new flags, see below.
2370
2371 * src/mod-memoserv.help: Opps forgot the read reciept stuff. Also
2372 added flags for always ignoring read reciepts and always sending
2373 read reciepts.
2374
2375 2006-06-20 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2376
2377 * src/mod-memoserv.c: Added CANCEL command for cancelling memos
2378 that you have sent, aslong as they have not been read yet.
2379
2380 * src/mod-memoserv.help: CANCEL entry plus tweaked some read
2381 recipient to read reciept stuff.
2382
2383 2006-06-20 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2384
2385 * src/mod-memoserv.c: Redid the db stuff, it now writes users
2386 settings and memos to the memoserv database.
2387
2388 2006-06-20 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2389
2390 * src/mod-memoserv.c: Small bug fix.
2391
2392 2006-06-20 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2393
2394 * src/mod-memoserv.c: Added read recipient support via SEND using
2395 -r as a flag. Messages with requested read recipients have a (r)
2396 shown beside the sender nick in LIST. People can ignore a read
2397 recipient using -i when reading the message via READ. Its all
2398 in the help file.
2399
2400 * src/mod-memoserv.help: Added read recipient relevent bits.
2401
2402 * src/opserv.help: Added halfopping functions.
2403
2404 2006-06-19 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2405
2406 * src/x3.conf.example: Forgot a ;.
2407
2408 2006-06-19 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2409
2410 * src/mod-memoserv.c: Make use of SET LIMIT.
2411
2412 2006-06-19 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2413
2414 * src/mod-memoserv.c: Fixed SET bugs and renabled LIMIT now.
2415
2416 2006-06-19 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2417
2418 * src/mod-memoserv.c: On Second thoughts dont enable LIMIT now.
2419
2420 2006-06-19 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2421
2422 * x3.conf.example: Max limit for Memoserv LIMIT option.
2423
2424 * src/hash.h: Fixed halfops issue.
2425
2426 * src/mod-memoserv.c: Added SET LIMIT option for the maximum
2427 amount of memos you can have. This does not do anything yet as
2428 im committing the half ops fix now. This code is fine it just
2429 allows you to adjust the limit for now.
2430
2431 2006-06-12 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2432
2433 * x3.conf.example: Commented out SpamServ module as there are bugs
2434 and i cant give a definate date as to when i can fix it. Im not
2435 home much these days.
2436
2437 * src/mod-memoserv.c: Redid the SET code using some whatnet code
2438 by wasted. Tweaked here and there. Also added some formatting in
2439 LIST and SET like chanserv SET. Oh and MemoServ will join
2440 autojoin_channels if MemoServ is in a seperate nickname.
2441
2442 * src/mod-memoserv.help: Added OSET and done some tweaking.
2443
2444 * src/nickserv.c: Allow the use of get_victim_oper outside of
2445 nickserv.c.
2446
2447 * src/nickserv.h: Allow the use of get_victim_oper outside of
2448 nickserv.c.
2449
2450 2006-06-07 Alex Schumann <rubin@afternet.org>
2451
2452 * src/chanserv.help: Added a couple set helps that were missing.
2453
2454 * src/helpfile.c: fix missing space in multi-column table output such
2455 as /msg opserv commands * (with nickserv tablewidth setting >60)
2456
2457 2006-06-06 Alex Schumann <rubin@afternet.org>
2458
2459 * src/opserv.c: Change how addalert silence works, so that its a
2460 parameter instead of an action, and also works with trace now.
2461
2462 * x3.conf.example: Added a config setting of level needed to use
2463 'silent yes' in trace/addalert.
2464
2465 2006-06-04 Alex Schumann <rubin@afternet.org>
2466
2467 * src/nickserv.c: Fix oregister
2468
2469 * src/nickserv.help: Update help for oregister
2470
2471 2006-06-05 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2472
2473 * src/proto-p10.c: Properly handle incomming manual silences.
2474
2475 2006-06-05 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2476
2477 * src/common.h: pretty_mask etc declerations.
2478
2479 * src/nickserv.c: Parse the mask through pretty_mask before adding
2480 it. Normal ircd side silences go through this, this just keeps
2481 things looking the same and if a user tries to remove a silence
2482 added by ADDIGNORE they will be able to. Oh and I HATE GLIBC :P
2483
2484 * src/proto-p10.c: Send a + if adding a silence.
2485
2486 * src/tools.c: pretty_mask and one other function for reformatting
2487 a hostname so its pretty :) from IRCu.
2488
2489 2006-06-04 Alex Schumann <rubin@afternet.org>
2490
2491 * src/nickserv.c: Send silences to every nick of a handle, not the
2492 nick that did the command.
2493
2494 2006-06-04 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2495
2496 * src/main.c: Moved spamserv initilization to after chanserv.
2497
2498 * src/spamserv.c: Read the db earlier.
2499
2500 2006-05-30 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2501
2502 * configure: Regenerated.
2503
2504 * configure.in: Bumped version and changed list email.
2505
2506 * x3.example.conf: Added SpamServ options.
2507
2508 * src/chanserv.c: Join SpamServ if enabled when chanserv joins.
2509
2510 * src/chanserv.h: Declerations
2511
2512 * src/main.c: Init the new SpamServ service.
2513
2514 * src/Makefile.am: Added SpamServ files.
2515
2516 * src/Makefile.in: Regenerated
2517
2518 * src/modcmd.c: Added SpamServ to REBINDALL.
2519
2520 * src/opserv.c: Slab/X3 malloc STATS MEMORY updates.
2521
2522 * src/proto-common.c: Make sure SpamServ gets notices.
2523
2524 * src/spamserv.c: New service that checks for spamming, floods etc.
2525 Requires an oper to register it to a channel for it to work.
2526
2527 * src/spamserv.h: Decelerations.
2528
2529 * src/spamserv.help: Help entries for SpamServ.
2530
2531 2006-05-29 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2532
2533 * Below functions by Wasted (Martijn Smit) <wasted@lostdomain.org>
2534
2535 * src/chanserv.c: Added selectable bantypes.
2536
2537 * src/chanserv.h: Added selectable bantypes.
2538
2539 * src/chanserv.help: Added help entries.
2540
2541 2006-05-29 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2542
2543 * src/nickserv.c: Added user option ADVANCED, when we add more
2544 advanced commands users will need to set this to see the options
2545 in help. Further work in helpfile is still needed afaik. This is
2546 just the basics.
2547
2548 * src/nickserv.h: Advanced option declerations.
2549
2550 * src/nickserv.help: Added option ADVANCED, also added AUTOHIDE.
2551 Seems no one added that when they added the AUTOHIDE option.
2552
2553 2006-05-28 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2554
2555 * Below functions by Wasted (Martijn Smit) <wasted@lostdomain.org>
2556
2557 * x3.example.conf: Added new options- god_timeout, autojoin_channels,
2558 and denied_fakehost_words. Also dropped refresh_period for chanserv
2559 set resync.
2560
2561 * src/chanserv.c: Added god_timeout, disable god mode automatically
2562 when the period times out. Also added a new set option- resync, auto
2563 resyncs the userlist every 3, 6, 9, or 12 hours (or not at all).
2564
2565 * src/chanserv.help: Added entry for SET RESYNC.
2566
2567 * src/global.c: Join global into autojoin_channels if enabled.
2568
2569 * src/main.c: Some tweaking for autojoin_channels.
2570
2571 * src/mod-memoserv.c: If a user has memos and notify on login
2572 enabled then only display the notify notice on login and not
2573 during a netburst.
2574
2575 * src/mod-track.c: Quashed a warning.
2576
2577 * src/modcmd.c: Added functions for god_timeout. Also added wasted
2578 to VERSION output for credits for these features.
2579
2580 * src/nickserv.c: Added denied_fakehost_words, deny the words set
2581 there if an oper trys to use them in a fakehost. Also autojoin
2582 chanserv if enabled into autojoin_channels.
2583
2584 * src/opserv.c: Added REFRESHMAX to reset the max count, ie for
2585 after a drone attack. Also join opserv and reserved nicks into
2586 autojoin_channels if opserv/reserved is enabled.
2587
2588 * src/opserv.help: Added entry for REFRESHMAX.
2589
2590 2006-05-25 Alex Schumann <rubin@afternet.org>
2591
2592 * src/proto-p10.c: make non-existant server type setting not crash x3.
2593
2594 * src/nickserv.help: Added newby tip to authserv registration
2595 help (about < and >)
2596
2597 * src/mod-track.c: Fixed crash when a server kicks a person (tried to
2598 deref null kicker)
2599
2600 2006-05-23 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2601
2602 * src/chanserv.c: Set SWHOIS's when a user auths.
2603
2604 * src/hosthiding.c: Fixed a segfault.
2605
2606 * src/nickserv.c: Epithets now use SWHOIS.
2607
2608 * src/proto.h: Declerations for irc_swhois.
2609
2610 * src/proto-p10.c: Handle SWHOIS's.
2611
2612 2006-05-23 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2613
2614 * src/hash.h: Bumped SOCKIPLEN
2615
2616 * src/hosthiding.c: Functions to crypt IPv6 addresses.
2617
2618 * src/hosthiding.h: IPv6 function declerations.
2619
2620 * src/proto-p10.c: If the users ip address is IPv6 then crypt it
2621 with the ipv6 crypting function.
2622
2623 2006-05-23 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2624
2625 * src/hash.h: Bits needed for other type of host hiding.
2626
2627 * src/hosthiding.h: Nefarious style 2 host hiding declerations.
2628
2629 * src/hosthiding.c: This will generated crypted style 2 Nefarious
2630 hidden hosts and ips. Currently they are just displayed in O3
2631 WHOIS. Im yet to expand this.
2632
2633 * src/Makefile.am: Added hosthiding.c and hosthiding.h.
2634
2635 * src/Makefile.in: Regenerated.
2636
2637 * src/opserv.c: Display crypted hosts n ips in WHOIS.
2638
2639 * src/proto-p10.c: Generate crypted hosts n ips on everyone and
2640 save them in user->crypthost user->cryptip.
2641
2642 2006-05-22 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2643
2644 * src/chanserv.c: Set ignores when you authenticate.
2645
2646 * src/nickserv.c: Added ADDIGNORE, OADDIGNORE, DELIGNORE ODELIGNORE.
2647 Used for centralized silence list management. Currently set ignores
2648 can be viewed in ACCOUNTINFO for via ircd SILENCE.
2649
2650 * src/nickserv.h: Declerations.
2651
2652 * src/nickserv.help: Added help entries for above commands.
2653
2654 * src/proto.h: Declerations.
2655
2656 * src/proto-p10.c: Functions to handle silences
2657
2658 2006-05-18 Alex Schumann <rubin@afternet.org>
2659
2660 * src/proto-p10.c: Fixed up the track module a bit more
2661
2662 * src/hash.c: Fixed up the track module a bit more, including
2663 reporting correctly when X3 kicks someone. This should affect mrsnoopy
2664 as well, hopefully wont cause any bugs.
2665
2666 * src/mod-track.c: Fixed up the track module a bit more - made track
2667 all/none work
2668
2669 2006-05-18 Alex Schumann <rubin@afternet.org>
2670
2671 * src/chanserv.c: adding 'classic' view, via patch submitted by pLaYa
2672
2673 * src/nickserv.c: adding 'classic' view, via patch submitted by pLaYa
2674
2675 * src/nickserv.h: adding 'classic' view, via patch submitted by pLaYa
2676
2677 * src/nickserv.help: adding 'classic' view, via patch submitted by pLaYa
2678
2679 2006-05-18 Alex Schumann <rubin@afternet.org>
2680
2681 * src/chanserv.c: re-disabled netrider kicking. Somehow this got included back
2682 in.
2683
2684 * src/mod-track.c: some cleanups and textual changes, to make the commands
2685 slightly more user friendly.
2686
2687 2006-05-16 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2688
2689 * src/proto-p10.c: Changed 050 specfic topic stuff to a conf setting
2690
2691 * src/x3.conf.example.: adding 050 'type' to server config (rubin
2692 fixed missing ';' and changelog entries)
2693
2694 2006-05-16 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2695
2696 * Most files: Heh i cant be bothered listing all files, see websvn
2697 if you want specific files. I just added a new tracking module, its
2698 just like snoop except it targets specified users. The actual
2699 commit is in the previous revision, i just forgot to update this to
2700 tick over the svn version in version output.
2701
2702 2006-05-15 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2703
2704 * Most files: Major update off the new release of srvx 1.3.1. Also
2705 seeing as the new updates dont all have changelog entries ive dropped
2706 the 2 srvx Changelog files and renamed the X3 one to ChangeLog.
2707
2708 2006-03-20 Alex Schumann <rubin@afternet.org>
2709
2710 * src/chanserv.c: core fix; check if theres a handle_info before looking
2711 at style...
2712
2713 * src/helpfile.c: core fix; check if theres a handle_info before looking
2714 at style...
2715
2716 2006-03-17 Alex Schumann <rubin@afternet.org>
2717
2718 * src/chanserv.c: more clean style changes
2719
2720 2006-03-17 Alex Schumann <rubin@afternet.org>
2721
2722 * src/chanserv.c: Added nickserv 'style' setting back. (HomeDawg
2723 and dhp1080 made me do it) Needs lots of work to remove ----
2724 headers for 'clean' setting.
2725
2726 * src/helpfile.c: Added nickserv 'style' stetting back.
2727
2728 * src/nickserv.help: Added help for set style.
2729
2730 * src/mod-helpserv.c: make style affect table outputs.
2731
2732 * src/nickserv.c: Added nickserv 'style' setting back.
2733
2734 * src/nickserv.h: Added nickserve 'style' setting back.
2735
2736 2006-03-17 Alex Schumann <rubin@afternet.org>
2737
2738 * src/proto-p10.c: Added conf setting for extended_accounts for
2739 backward compatability with stock undernet ircd.
2740
2741 * x3.conf.example: Added conf setting for extended_accounts for
2742 backward compatability with stock undernet ircd.
2743
2744 2006-03-06 Alex Schumann <rubin@afternet.org>
2745
2746 * src/opserv.help: Added missing trace criteria to help,
2747 and fixed up a few other bits of help around that topic.
2748
2749 2006-01-16 Alex Schumann <rubin@afternet.org>
2750
2751 * src/tools.c: created an email valididty function
2752
2753 * src/nickserv.c: check valididty of email better
2754
2755 * src/sendmail.c: check validity of email better
2756
2757 2006-01-06 Alex Schumann <rubin@afternet.org>
2758
2759 * src/opserv.c: fix gtrace, trace, csearch and alerts to work when aliased
2760 to a different bot, eg chanserv, and to reply from the correct nickname.
2761 also a bunch of whitespace changes
2762
2763 * src/nickserv.c: begin work on making nickserv commands bind without
2764 responding from the wrong nick. also a bunch of whitespace changes
2765
2766 * src/hash.h: whitespace
2767
2768 * src/opserv.help: improved QUERY helpfile. (though command itself still
2769 has bugs)
2770
2771 2005-12-14 Alex Schumann <rubin@afternet.org>
2772
2773 * src/chanserv.help: added set bantimeout help
2774
2775 2005-11-08 Alex Schumann <rubin@afternet.org>
2776
2777 * src/modcmd.c: cleaned up tabs, added hack to display help on JOINER
2778 aliases properly.
2779
2780 * src/modcmd.help: Added note about escaping spaces to modcmd help.
2781
2782 * src/nickserv.help: Improved help files
2783
2784 * src/chanserv.help: Improved help files
2785
2786 2005-10-13 Alex Schumann <rubin@afternet.org>
2787
2788 * src/proto-p10.c: ignore remote /lusers
2789
2790 2005-09-13 Alex Schumann <rubin@afternet.org>
2791
2792 * src/global.c: Changed motd header style
2793
2794 * src/nickserv.help: Improved directions for getting and using
2795 accounts.
2796
2797 * src/chanserv.help: Improved directions for getting and using
2798 accounts.
2799
2800 2005-08-13 Alex Schumann <rubin@afternet.org>
2801
2802 * src/chanserv.c: Fixed a bug i created using masks in ,kick. Restored
2803 some *@* protection.
2804
2805 * src/tools.c: added function to detect an overmask (too general)
2806
2807 * src/common.h: added function to detect an overmask (too general)
2808
2809 2005-08-12 Alex Schumann <rubin@afternet.org>
2810
2811 * src/chanserv.c: Modified resync to work accourding to automode
2812 setting, and fixed a buffer overflow problem.
2813
2814 * src/chanserv.help: updated set automode and rsync help.
2815
2816 * src/nickserv.h: Added an autohide setting to nickserv/authserv that
2817 sets +x on AUTH.
2818
2819 * src/nickserv.c: Added an autohide setting to nickserv/authserv that
2820 sets +x on AUTH.
2821
2822 2005-08-12 Alex Schumann <rubin@afternet.org>
2823
2824 * src/chanserv.c: Cleanup. Added 'automode' channel setting in place
2825 of 'voice' setting. + Rewording setting help
2826
2827 * src/chanserv.h: Cleanup. Added 'automode' channel setting in place
2828 of 'voice' setting.
2829
2830 * src/chanserv.help: Added help for automode. + Rewording setting help
2831
2832 2005-08-11 Alex Schumann <rubin@afternet.org>
2833
2834 * src/proto-p10.c: added irc_umode() to send usermodes (Life4Christ)
2835
2836 * src/proto-bahumit.c: added irc_umode() to send usermodes, untested..
2837
2838 * src/proto.h: added irc_umode() to send usermodes (Life4Christ)
2839
2840 * src/nickserv.c: Added option to have authserv oper/admin people with
2841 opserv access. (Life4Christ)
2842
2843 * src/opserv.c: Added admin_level config option
2844
2845 * src/opserv.h: Added admin_level config option
2846
2847 2005-08-11 Alex Schumann <rubin@afternet.org>
2848
2849 * src/proto-p10.c: Avoid duplicating an oper in curr_opers (,staff
2850 command) when nef* bug sends the +o twice. ++fix bug in patch
2851
2852 2005-08-09 Alex Schumann <rubin@afternet.org>
2853
2854 * src/chanserv.c: Fixed banTimeout to actually remove the bans :)
2855
2856 2005-08-08 Alex Schumann <rubin@afternet.org>
2857
2858 * src/chanserv.c: Added banTimeout feature to .set
2859
2860 * src/chanserv.h: added banTimeout feature to .set
2861
2862 * src/recdb.c: Added some better error catching in database_get_data()
2863
2864 * src/proto-common.h: tabs
2865
2866 * x3.conf.example: added bantimeout to default set list, and ban
2867 timeout frequency config setting.
2868
2869 2005-08-04 Alex Schumann <rubin@afternet.org>
2870
2871 * src/chanserv.c: Changed kick protected message to one without %s or
2872 $b because the kick function doesnt support replacements.
2873
2874 * src/tools.c: fixed spelling error in comment.
2875
2876 2005-07-28 Alex Schumann <rubin@afternet.org>
2877
2878 * src/chanserv.c: fixed crash bug in 8ball (required params was off by
2879 one)
2880
2881 * src/proto-p10.c: Ignore wallusers (WU) tokens from server without
2882 whining.
2883
2884 2005-07-26 Alex Schumann <rubin@afternet.org>
2885
2886 * x3.conf.example: Updated from live afternet file and improved help
2887 and layout. Added vim directive to set syntax type.
2888
2889 * src/chanserv.c: ported x2's 8ball in, and improved it.
2890
2891 * src/math.c: Added osiris' hack to do_math for supporting
2892 2(10) and 2pi etc. Improved it to handle pi2 also.
2893
2894 * src/chanserv.help: updated 8ball help and added 'myaccess' to
2895 information help index.
2896
2897 2005-07-18 Alex Schumann <rubin@afternet.org>
2898
2899 * src/proto-p10.c: added +L awareness
2900
2901 * src/hash.h: added +L awareness
2902
2903 * src/chanserv.help: changed set ctcpreaction help
2904
2905 2005-07-18 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2906
2907 * src/modcmd.h: Lets make some functions global.
2908
2909 * src/modcmd.c: Log hostmasks no matter what.
2910
2911 * src/log.c: Lookup commands if they are from OpServ in the log.
2912 If they match channel specific commands like OP, DEOP, etc then
2913 we will display them in a LAST command (assuming the person doing
2914 the LAST is an oper). Normal clients wont see commands that have
2915 been performed by OpServ.
2916
2917 2005-07-15 Alex Schumann <rubin@afternet.org>
2918
2919 * src/chanserv.c: Changed around ctcpreaction setting so it:
2920 a) doesnt crash.
2921 b) doesnt kick userlist members ever
2922 c) has only 1 setting needed to control it
2923 * src/chanserv.h: removed some old oplevel stuff.
2924
2925 2005-07-14 Alex Schumann <rubin@afternet.org>
2926
2927 * src/proto-p10.c: made it ignore EX, MK and PRIV tokens to
2928 remove errors from log. Fixed problem with missing break; in
2929 channel mode c parsing (reed).
2930
2931 * src/mod-memoserv.c: Improved memoserv 'you have notes' message.
2932
2933 * src/log.c: Changed channel log target to send PRIVMSG instead of
2934 NOTICE. (Ghozer)
2935
2936 2005-05-07 Neil Spierling <sirvulcan@sirvulcan.co.nz>
2937
2938 * configure: Regenerated.
2939
2940 * configure.in: Added checks for tgmath.h.
2941
2942 * src/chanserv.c: Added new command LAST, from X2. Similar to
2943 EVENTS except its file based. Bear in mind you dont have to use
2944 both. You can bind what you want to use. Commented out zoot_list
2945 as its not in use, just a warning fix.
2946
2947 * src/hash.c: Warning fix.
2948
2949 * src/log.h: Misc defines.
2950
2951 * src/log.c: Logging functions from X2.
2952
2953 * src/math.c: If tgmath.h doesnt exist then include some other
2954 files that contain the functions we require.
2955
2956 * src/modcmd.c: Added a small ctcp reply, gender.. like gnuworld X.
2957
2958 * src/proto-p10.c: Added chanserv.h #include to squash a small
2959 compile error. Made X3 understand MARK's to a small point. Fixed
2960 a small parsing bug with exempts.
2961
2962 2005-07-06 Alex Schumann <rubin@afternet.org>
2963
2964 * src/chanserv.c: Fixed a couple awkward looking outputs with userlist
2965
2966 * src/opserv.c: Fixed an awkward output of trace count etc.
2967
2968 2005-06-22 Alex Schumann <rubin@afternet.org>
2969 * src/chanserv.help: Improved DURATION help
2970
2971 * src/tools.c: Changed 'M' duration to 30 days (not 31) as its
2972 a better average.
2973
2974 2005-05-27 Alex Schumann <rubin@afternet.org>
2975
2976 * src/chanserv.c: Improved usability of register command, fixed
2977 unregister reply.
2978
2979 * src/chanserv.help: Improved usability of register command
2980
2981 2005-05-27 Alex Schumann <rubin@afternet.org>
2982
2983 * src/chanserv.c: Resync working now
2984
2985 2005-05-27 Reed Loden <reed@reedloden.com>
2986
2987 * src/chanserv.c: Fixed an incorrectly named message. Fixed some
2988 grammar issues in the message send to pending users. Fixed a
2989 problem with some of the resync code.
2990
2991 2005-05-27 Alex Schumann <rubin@afternet.org>
2992
2993 * src/chanserv.c: make pending add check if the person is already on
2994 the userlist before re-adding them (thx exec & reed for noticing this)
2995 Fix capitalisation of I in pending notice.
2996
2997 2005-05-18 Alex Schumann <rubin@afternet.org>
2998
2999 * src/modcmd.c: reed pointed out that modcmd non-command help wasnt
3000 working, and pointed me to the opserv helpfiles command, which shows
3001 what services search what help files. This fixes the help command to
3002 search that list as it should. Still need to modify the 'default'
3003 helpfile search bindigs because I dont think chanserv should respond
3004 to help from opserv's db, etc. See opserv's 'helpfiles' command.
3005
3006 * src/modcmd.help: clarified 'helpfiles' help.
3007
3008 2005-05-18 Alex Schumann <rubin@afternet.org>
3009
3010 * src/helpfile.c: make send_help() return true/false and not send
3011 errors so svccmd_send_help can 'take control' of things.
3012
3013 * src/modcmd.c: Fixed up the help system (again) / find aliased
3014 commands help if none exists. / Display no help for that command on
3015 commands (instead of topic)
3016
3017 * src/modcmd.h: Fixed up the help system (again)
3018
3019 * src/global.c: Fixed syntax display
3020
3021 * src/chanserv.help: Removed =---= formatting, fixed a few things.
3022 *spelling ++more spelling (thx reed)
3023
3024 * src/nickserv.help: Removed =---= formatting, fixed a few things.
3025 *spelling ++more spelling (thx reed)
3026
3027 * src/opserv.help: Removed =---= formatting, fixed a few things.
3028 ++spelling (thx reed)
3029
3030 * src/global.help: simplified index
3031
3032 * src/nickserv.c: Changed message users get when their email is
3033 already used for an account, fixed syntax help
3034
3035 * src/opserv.c: fixed syntax help
3036
3037 2005-05-16 Alex Schumann <rubin@afternet.org>
3038
3039 * src/chanserv.help: Fixed a couple ban/lamer conversions i missed in
3040 the help file.
3041
3042 2005-05-04 Alex Schumann <rubin@afternet.org>
3043
3044 * src/modcmd.c: added a 'rebindall' command to assist with
3045 upgrades and changes which change command bindings.
3046
3047 * src/modcmd.help: modified help to reflect above
3048
3049 * src/opserv.help: modified help to reflect above
3050
3051 * src/chanserv.c: changed addban, addtimedban, delban, bans etc
3052 to addlamer, dellamer, addtimedlamer, lamers to reduce confusion
3053 between channel bans (+b) and x3 remembered bans (lamers)
3054
3055 * src/chanserv.help: modified help to reflect above
3056
3057 * UPGRADE: added use of rebindall to upgrade instructions
3058
3059 2005-05-04 Alex Schumann <rubin@afternet.org>
3060
3061 * src/chanserv.c: added an 'adduser pending' feature, where if
3062 someone isn't authed x3 will ask them to /auth or register, and then
3063 automatically finish adding them to the channel when they do.
3064 Fixed email bug with adduser pending
3065
3066 * src/chanserv.h: adduser pending
3067
3068 * src/hash.c: adduser pending
3069
3070 * src/hash.h: adduser pending, and increased maxbans to 128 from 45.
3071
3072 * src/nickserv.c: adduser pending cleanup and activation code,
3073 Arch sync (Avoid losing channel information when
3074 replacing an account using the mergedb command.)
3075
3076 * src/proto-p10.c: adduser pending cleanup code
3077
3078 * src/nickserv.help: improved set and register help
3079
3080 2005-05-04 Alex Schumann <rubin@afternet.org>
3081
3082 * src/chanserv.c: changed uset noautoop to uset autoop (removed double
3083 negitive). Added set voice to provide control over use of voice.
3084 Implimented a basic chanserv db version control system for upgrading
3085 seamlessly.
3086
3087 * src/chanserv.help: adjusted help to reflect voice and uset autoop
3088 changes.
3089
3090 * src/hash.h: updated ssz comment from z to Z
3091
3092 * src/modcmd.help: rewrote BIND help
3093
3094 * src/proto-p10.c: Added Z (sslonly) support back in
3095
3096 * UPGRADE: created file to document upgrading procedures
3097
3098 2005-04-23 Alex Schumann <rubin@afternet.org>
3099 * src/chanserv.c: removed settings: oplevel, halfoplevel, and
3100 voicelevel, hard coding them to OP, HALFOP, and PEON. Changed
3101 topicmask to be an on or off setting, uninfluenced by enftopic.
3102 Added feature to use mask on /topic in addition to ,topic sets.
3103 Removed special consideration for ircops in protect_user()
3104
3105 * src/chanserv.help: updated documentation to reflect the new and
3106 much simpler topicmask feature, and removed op/voice levels.
3107
3108 * src/nickserv.c: added tailing 'end of' line for accountinfo
3109 for non-opers too.
3110
3111 * src/modcmd.c: tweaked alias notification for help and breef help.
3112
3113 2005-04-20 Alex Schumann <rubin@afternet.org>
3114
3115 * src/proto-common.c: removing +d. needs to be a config option
3116 or something.
3117
3118 * src/nickserv.help: modified main help reply of authserv
3119
3120 * src/nickserv.c: added title, epithet, and fakehost to oset listing
3121
3122 * src/modcmd.c: fixed up auto-help & alias command handling. Needs
3123 totally redesigned though.
3124
3125 2005-04-15 Alex Schumann <rubin@afternet.org>
3126
3127 * src/proto-common.c: Temp fix for x3 not seeing -hv modes being set
3128 at the same time. The whole block needs to be if/else instead of
3129 switch though, to be cleaner.
3130
3131 * src/nickserv.help: added fakehost and title options to help oset.
3132
3133 * src/nickserv.c: removed 'style' setting. (was not being used in
3134 code anyway)
3135
3136 2005-04-04 Neil Spierling <sirvulcan@sirvulcan.co.nz>
3137
3138 * src/proto-p10.c: Reinstated +d usermode.
3139
3140 2005-03-30 Alex Schumann <rubin@afternet.org>
3141
3142 * src/chanserv.c: Fixed unban.
3143
3144 * x3.conf.example: added note in snoop config that improper
3145 setting for bots nick will cause segfault.
3146
3147 2005-03-22 Alex Schumann <rubin@afternet.org>
3148
3149 * x3.conf.example: added sethost/fakehost settings to conf
3150
3151 2005-03-19 Alex Schumann <rubin@afternet.org>
3152
3153 * chanserv.c: Changed style of command outputs, added userlevel back
3154 to users list.
3155
3156 * opserv.c: Changed style of command outputs, removed warn feature
3157
3158 * tools.c: shortened duration string lengths
3159
3160 * main.c: shortened duration string lengths
3161
3162 * sendmail.c: Changed style of stats email
3163
3164 2005-03-18 Alex Schumann <rubin@afternet.org>
3165
3166 * Changed breef to brief...
3167
3168 * chanserv.c: Changed to access level names instead of numbers.
3169
3170 2005-03-17 Alex Schumann <rubin@afternet.org>
3171
3172
3173 * src/opserv.c: Improved readability of trace print output
3174
3175 * src/chanserv.c: Improved cmd_list_users output & cleaned it up
3176 a little.
3177
3178 * src/helpfile.c: Improved table_send readability (used in lots
3179 of listings including users and stats network etc)
3180
3181 2005-03-15 Alex Schumann <rubin@afternet.org>
3182
3183 * src/chanserv.c: Improved some syntax error reporting for commands
3184
3185 * src/helpfile.c: Added a 'breef' help function
3186
3187 * src/helpfile.h: Added a 'breef' help function
3188
3189 * src/main.c: Improved some syntax error reporting for commands
3190
3191 * src/modcmd.c: Improved some syntax error reporting for commands
3192
3193 * src/modcmd.h: Improved some syntax error reporting for commands
3194
3195 2005-03-15 Reed Loden <reed@reedloden.com>
3196
3197 * Synchronization with srvx--devo--1.3--patch-19.
3198
3199 2005-03-12 Alex Schumann <rubin@afternet.org>
3200
3201 * src/common.h, src/opserv.h: more SRVX->X3 fixes
3202
3203 * opserv.c: fixed SRVX defines to X3
3204
3205 * src/nickserv.c: Applied patch to bring up to date with
3206 local uncommitted changes on afternets srvx2 tree. improved
3207 cookie gen code and removed /play from cookie messages.
3208
3209 * src/all, src/Makefile*, Makefile.in: changed srvx to x3 in a
3210 bunch more places.
3211
3212 2005-03-07 Neil Spierling <sirvulcan@sirvulcan.co.nz>
3213
3214 * nickserv.help: Added odelcookie section.
3215
3216 * src/nickserv.c: Added odelcookie for deleting auth cookies and email
3217 cookies.
3218
3219 * src/md5.c: Cleaned up compile warnings.
3220
3221 * src/nickserv.help: Added odelcookie section.
3222
3223 ***********************************************************************/
3224
3225 #define CVS_VERSION "$Id$"
3226