]> jfr.im git - irc/evilnet/x3.git/blob - ChangeLog
fixing pubcmd reply inconsistancy
[irc/evilnet/x3.git] / ChangeLog
1 /***********************************************************************
2 X3 ChangeLog
3
4 2006-07-11 Alex Schumann <rubin@afternet.org>
5
6 * src/modcmd.c: if pubcmd is set higher than your level, only respond
7 with the denied msg if the command was actually found. this closes bug
8 number 1509382.
9
10 2006-07-10 Alex Schumann <rubin@afternet.org>
11
12 * src/chanserv.c: fixed crash bug trying to deref the handleinfo of a
13 non-logged-in user (null pointer)
14
15 2006-07-09 Alex Schumann <rubin@afternet.org>
16
17 * src/nickserv.c: fixed bug where unignores were getting sent to the
18 user multiple times, instead of to each online nick once.
19
20 2006-07-09 Alex Schumann <rubin@afternet.org>
21
22 * src/nickserv.c: Fixes for addignore/delignore corruption +missed a
23 spot. Ugh, messed up the fix. Trying again :)
24
25 2006-07-10 Neil Spierling <sirvulcan@gmail.com>
26
27 * src/chanserv.c: INVITE now checks the targets ignore/silence list.
28 If the target is ignoring the person inviting them then the invite
29 is denied.
30
31 2006-07-07 Alex Schumann <rubin@afternet.org>
32
33 * src/mod-memoserv.c: pLaYa reported a crash/corruption bug in
34 memoserv most easily seen when sending short memos. Rewrote the flag
35 handling part of memo send to correct it.
36
37 2006-07-05 Alex Schumann <rubin@afternet.org>
38
39 * src/helpfile.c: pLaYa pointed out the table code row count is off by
40 one. Fixed.
41
42 2006-06-27 Neil Spierling <sirvulcan@gmail.com>
43
44 * configure: Regenerated.
45
46 * configure.in: Make use of TRE regexp library. Its more powerful
47 than the standard library (http://laurikari.net/tre/index.html).
48 Im also pondering adding services side regexp bans, X3 would
49 probably required a channel flag called say advanced that can
50 only be set by the owner. If enabled then regexp bans can be
51 used. I also added an output saying what modules are enabled,
52 what protocol is enabled, what malloc is choosen and if debugging
53 is enabled. Just a bit of a message as the user will of seen
54 programs just finish compiling and he/she/it may think it
55 was X3 compiling, but it was just TRE compiling. They still need
56 to compile X3.
57
58 * src/config.h.in: Regenerated.
59
60 * src/Makefile.am: Tweak for TRE.
61
62 * src/Makefile.in: Regenerated.
63
64 * src/nickserv.c: Use the new regex.h Im sure -I includes get
65 called before system includes like /usr/include.
66
67 * src/opserv.c: Use the new regex.h Im sure -I includes get
68 called before system includes like /usr/include.
69
70 * src/tools/tre.tar.gz: TRE 0.7.4. Configure will untar and
71 compile this just before configure finishes up. Sits around
72 470KB, rather than another 2.5MB if i TRE untarred. I suppose
73 i could get it down a bit more using Bzip but there are some
74 boxes out there still without bzip.
75
76 2006-06-25 Neil Spierling <sirvulcan@gmail.com>
77
78 * src/mod-memoserv.c: Better history implementation. A seperate
79 table is used for history entries. Entries contain the same
80 fields as the memo table except for the message, read, and flags.
81 Entries are only removed from the history db when they get
82 expired by do_expire (older than message_expire). Also fixed
83 up a issue with STATUS. On AfterNET we were getting huge large
84 for the amount of memos. I now realise it was reading the amount
85 of users. It now reads the proper amount of memos. I also a count
86 for history entries.
87
88 * src/mod-memoserv.help: EXPIRE handles history and memos now.
89
90 2006-06-25 Neil Spierling <sirvulcan@gmail.com>
91
92 * src/mod-memoserv.c: Make use of ignore lists when trying to
93 send memos.
94
95 2006-06-25 Neil Spierling <sirvulcan@gmail.com>
96
97 * src/spamserv.c: Crash fix (finally). Been meaning to do this
98 for a while now.
99
100 2006-06-23 Alex Schumann <rubin@afternet.org>
101
102 * src/modcmd.help, src/opserv.help, src/helpfile.c, src/helpfile.h,
103 src/modcmd.c, src/nickserv.c: Improvements to
104 table output and help display.
105
106 * src/mod-memoserv.c: fix segfault
107
108 2006-06-23 Alex Schumann <rubin@afternet.org>
109
110 * src/chanserv.c: Backing out the bantype patch because it sucks _bad_.
111 fix it and re-apply if you want it..
112
113 * src/chanserv.h: Backing out the bantype patch.
114
115 * src/chanserv.help: Backing out the bantype patch.
116
117 2006-06-20 Neil Spierling <sirvulcan@gmail.com>
118
119 * src/mod-memoserv.c: Fixed a bug.
120
121 2006-06-20 Neil Spierling <sirvulcan@gmail.com>
122
123 * src/mod-memoserv.c: Added basic HISTORY command. At the moment
124 if the recipient deletes the memo it will not be listed in the
125 HISTORY list.
126
127 * src/mod-memoserv.help: HISTORY entry.
128
129 2006-06-20 Neil Spierling <sirvulcan@gmail.com>
130
131 * src/mod-memoserv.c: Added new flags, see below.
132
133 * src/mod-memoserv.help: Opps forgot the read reciept stuff. Also
134 added flags for always ignoring read reciepts and always sending
135 read reciepts.
136
137 2006-06-20 Neil Spierling <sirvulcan@gmail.com>
138
139 * src/mod-memoserv.c: Added CANCEL command for cancelling memos
140 that you have sent, aslong as they have not been read yet.
141
142 * src/mod-memoserv.help: CANCEL entry plus tweaked some read
143 recipient to read reciept stuff.
144
145 2006-06-20 Neil Spierling <sirvulcan@gmail.com>
146
147 * src/mod-memoserv.c: Redid the db stuff, it now writes users
148 settings and memos to the memoserv database.
149
150 2006-06-20 Neil Spierling <sirvulcan@gmail.com>
151
152 * src/mod-memoserv.c: Small bug fix.
153
154 2006-06-20 Neil Spierling <sirvulcan@gmail.com>
155
156 * src/mod-memoserv.c: Added read recipient support via SEND using
157 -r as a flag. Messages with requested read recipients have a (r)
158 shown beside the sender nick in LIST. People can ignore a read
159 recipient using -i when reading the message via READ. Its all
160 in the help file.
161
162 * src/mod-memoserv.help: Added read recipient relevent bits.
163
164 * src/opserv.help: Added halfopping functions.
165
166 2006-06-19 Neil Spierling <sirvulcan@gmail.com>
167
168 * src/x3.conf.example: Forgot a ;.
169
170 2006-06-19 Neil Spierling <sirvulcan@gmail.com>
171
172 * src/mod-memoserv.c: Make use of SET LIMIT.
173
174 2006-06-19 Neil Spierling <sirvulcan@gmail.com>
175
176 * src/mod-memoserv.c: Fixed SET bugs and renabled LIMIT now.
177
178 2006-06-19 Neil Spierling <sirvulcan@gmail.com>
179
180 * src/mod-memoserv.c: On Second thoughts dont enable LIMIT now.
181
182 2006-06-19 Neil Spierling <sirvulcan@gmail.com>
183
184 * x3.conf.example: Max limit for Memoserv LIMIT option.
185
186 * src/hash.h: Fixed halfops issue.
187
188 * src/mod-memoserv.c: Added SET LIMIT option for the maximum
189 amount of memos you can have. This does not do anything yet as
190 im committing the half ops fix now. This code is fine it just
191 allows you to adjust the limit for now.
192
193 2006-06-12 Neil Spierling <sirvulcan@gmail.com>
194
195 * x3.conf.example: Commented out SpamServ module as there are bugs
196 and i cant give a definate date as to when i can fix it. Im not
197 home much these days.
198
199 * src/mod-memoserv.c: Redid the SET code using some whatnet code
200 by wasted. Tweaked here and there. Also added some formatting in
201 LIST and SET like chanserv SET. Oh and MemoServ will join
202 autojoin_channels if MemoServ is in a seperate nickname.
203
204 * src/mod-memoserv.help: Added OSET and done some tweaking.
205
206 * src/nickserv.c: Allow the use of get_victim_oper outside of
207 nickserv.c.
208
209 * src/nickserv.h: Allow the use of get_victim_oper outside of
210 nickserv.c.
211
212 2006-06-07 Alex Schumann <rubin@afternet.org>
213
214 * src/chanserv.help: Added a couple set helps that were missing.
215
216 * src/helpfile.c: fix missing space in multi-column table output such
217 as /msg opserv commands * (with nickserv tablewidth setting >60)
218
219 2006-06-06 Alex Schumann <rubin@afternet.org>
220
221 * src/opserv.c: Change how addalert silence works, so that its a
222 parameter instead of an action, and also works with trace now.
223
224 * x3.conf.example: Added a config setting of level needed to use
225 'silent yes' in trace/addalert.
226
227 2006-06-04 Alex Schumann <rubin@afternet.org>
228
229 * src/nickserv.c: Fix oregister
230
231 * src/nickserv.help: Update help for oregister
232
233 2006-06-05 Neil Spierling <sirvulcan@gmail.com>
234
235 * src/proto-p10.c: Properly handle incomming manual silences.
236
237 2006-06-05 Neil Spierling <sirvulcan@gmail.com>
238
239 * src/common.h: pretty_mask etc declerations.
240
241 * src/nickserv.c: Parse the mask through pretty_mask before adding
242 it. Normal ircd side silences go through this, this just keeps
243 things looking the same and if a user tries to remove a silence
244 added by ADDIGNORE they will be able to. Oh and I HATE GLIBC :P
245
246 * src/proto-p10.c: Send a + if adding a silence.
247
248 * src/tools.c: pretty_mask and one other function for reformatting
249 a hostname so its pretty :) from IRCu.
250
251 2006-06-04 Alex Schumann <rubin@afternet.org>
252
253 * src/nickserv.c: Send silences to every nick of a handle, not the
254 nick that did the command.
255
256 2006-06-04 Neil Spierling <sirvulcan@gmail.com>
257
258 * src/main.c: Moved spamserv initilization to after chanserv.
259
260 * src/spamserv.c: Read the db earlier.
261
262 2006-05-30 Neil Spierling <sirvulcan@gmail.com>
263
264 * configure: Regenerated.
265
266 * configure.in: Bumped version and changed list email.
267
268 * x3.example.conf: Added SpamServ options.
269
270 * src/chanserv.c: Join SpamServ if enabled when chanserv joins.
271
272 * src/chanserv.h: Declerations
273
274 * src/main.c: Init the new SpamServ service.
275
276 * src/Makefile.am: Added SpamServ files.
277
278 * src/Makefile.in: Regenerated
279
280 * src/modcmd.c: Added SpamServ to REBINDALL.
281
282 * src/opserv.c: Slab/X3 malloc STATS MEMORY updates.
283
284 * src/proto-common.c: Make sure SpamServ gets notices.
285
286 * src/spamserv.c: New service that checks for spamming, floods etc.
287 Requires an oper to register it to a channel for it to work.
288
289 * src/spamserv.h: Decelerations.
290
291 * src/spamserv.help: Help entries for SpamServ.
292
293 2006-05-29 Neil Spierling <sirvulcan@gmail.com>
294
295 * Below functions by Wasted (Martijn Smit) <wasted@lostdomain.org>
296
297 * src/chanserv.c: Added selectable bantypes.
298
299 * src/chanserv.h: Added selectable bantypes.
300
301 * src/chanserv.help: Added help entries.
302
303 2006-05-29 Neil Spierling <sirvulcan@gmail.com>
304
305 * src/nickserv.c: Added user option ADVANCED, when we add more
306 advanced commands users will need to set this to see the options
307 in help. Further work in helpfile is still needed afaik. This is
308 just the basics.
309
310 * src/nickserv.h: Advanced option declerations.
311
312 * src/nickserv.help: Added option ADVANCED, also added AUTOHIDE.
313 Seems no one added that when they added the AUTOHIDE option.
314
315 2006-05-28 Neil Spierling <sirvulcan@gmail.com>
316
317 * Below functions by Wasted (Martijn Smit) <wasted@lostdomain.org>
318
319 * x3.example.conf: Added new options- god_timeout, autojoin_channels,
320 and denied_fakehost_words. Also dropped refresh_period for chanserv
321 set resync.
322
323 * src/chanserv.c: Added god_timeout, disable god mode automatically
324 when the period times out. Also added a new set option- resync, auto
325 resyncs the userlist every 3, 6, 9, or 12 hours (or not at all).
326
327 * src/chanserv.help: Added entry for SET RESYNC.
328
329 * src/global.c: Join global into autojoin_channels if enabled.
330
331 * src/main.c: Some tweaking for autojoin_channels.
332
333 * src/mod-memoserv.c: If a user has memos and notify on login
334 enabled then only display the notify notice on login and not
335 during a netburst.
336
337 * src/mod-track.c: Quashed a warning.
338
339 * src/modcmd.c: Added functions for god_timeout. Also added wasted
340 to VERSION output for credits for these features.
341
342 * src/nickserv.c: Added denied_fakehost_words, deny the words set
343 there if an oper trys to use them in a fakehost. Also autojoin
344 chanserv if enabled into autojoin_channels.
345
346 * src/opserv.c: Added REFRESHMAX to reset the max count, ie for
347 after a drone attack. Also join opserv and reserved nicks into
348 autojoin_channels if opserv/reserved is enabled.
349
350 * src/opserv.help: Added entry for REFRESHMAX.
351
352 2006-05-25 Alex Schumann <rubin@afternet.org>
353
354 * src/proto-p10.c: make non-existant server type setting not crash x3.
355
356 * src/nickserv.help: Added newby tip to authserv registration
357 help (about < and >)
358
359 * src/mod-track.c: Fixed crash when a server kicks a person (tried to
360 deref null kicker)
361
362 2006-05-23 Neil Spierling <sirvulcan@gmail.com>
363
364 * src/chanserv.c: Set SWHOIS's when a user auths.
365
366 * src/hosthiding.c: Fixed a segfault.
367
368 * src/nickserv.c: Epithets now use SWHOIS.
369
370 * src/proto.h: Declerations for irc_swhois.
371
372 * src/proto-p10.c: Handle SWHOIS's.
373
374 2006-05-23 Neil Spierling <sirvulcan@gmail.com>
375
376 * src/hash.h: Bumped SOCKIPLEN
377
378 * src/hosthiding.c: Functions to crypt IPv6 addresses.
379
380 * src/hosthiding.h: IPv6 function declerations.
381
382 * src/proto-p10.c: If the users ip address is IPv6 then crypt it
383 with the ipv6 crypting function.
384
385 2006-05-23 Neil Spierling <sirvulcan@gmail.com>
386
387 * src/hash.h: Bits needed for other type of host hiding.
388
389 * src/hosthiding.h: Nefarious style 2 host hiding declerations.
390
391 * src/hosthiding.c: This will generated crypted style 2 Nefarious
392 hidden hosts and ips. Currently they are just displayed in O3
393 WHOIS. Im yet to expand this.
394
395 * src/Makefile.am: Added hosthiding.c and hosthiding.h.
396
397 * src/Makefile.in: Regenerated.
398
399 * src/opserv.c: Display crypted hosts n ips in WHOIS.
400
401 * src/proto-p10.c: Generate crypted hosts n ips on everyone and
402 save them in user->crypthost user->cryptip.
403
404 2006-05-22 Neil Spierling <sirvulcan@gmail.com>
405
406 * src/chanserv.c: Set ignores when you authenticate.
407
408 * src/nickserv.c: Added ADDIGNORE, OADDIGNORE, DELIGNORE ODELIGNORE.
409 Used for centralized silence list management. Currently set ignores
410 can be viewed in ACCOUNTINFO for via ircd SILENCE.
411
412 * src/nickserv.h: Declerations.
413
414 * src/nickserv.help: Added help entries for above commands.
415
416 * src/proto.h: Declerations.
417
418 * src/proto-p10.c: Functions to handle silences
419
420 2006-05-18 Alex Schumann <rubin@afternet.org>
421
422 * src/proto-p10.c: Fixed up the track module a bit more
423
424 * src/hash.c: Fixed up the track module a bit more, including
425 reporting correctly when X3 kicks someone. This should affect mrsnoopy
426 as well, hopefully wont cause any bugs.
427
428 * src/mod-track.c: Fixed up the track module a bit more - made track
429 all/none work
430
431 2006-05-18 Alex Schumann <rubin@afternet.org>
432
433 * src/chanserv.c: adding 'classic' view, via patch submitted by pLaYa
434
435 * src/nickserv.c: adding 'classic' view, via patch submitted by pLaYa
436
437 * src/nickserv.h: adding 'classic' view, via patch submitted by pLaYa
438
439 * src/nickserv.help: adding 'classic' view, via patch submitted by pLaYa
440
441 2006-05-18 Alex Schumann <rubin@afternet.org>
442
443 * src/chanserv.c: re-disabled netrider kicking. Somehow this got included back
444 in.
445
446 * src/mod-track.c: some cleanups and textual changes, to make the commands
447 slightly more user friendly.
448
449 2006-05-16 Neil Spierling <sirvulcan@gmail.com>
450
451 * src/proto-p10.c: Changed 050 specfic topic stuff to a conf setting
452
453 * src/x3.conf.example.: adding 050 'type' to server config (rubin
454 fixed missing ';' and changelog entries)
455
456 2006-05-16 Neil Spierling <sirvulcan@gmail.com>
457
458 * Most files: Heh i cant be bothered listing all files, see websvn
459 if you want specific files. I just added a new tracking module, its
460 just like snoop except it targets specified users. The actual
461 commit is in the previous revision, i just forgot to update this to
462 tick over the svn version in version output.
463
464 2006-05-15 Neil Spierling <sirvulcan@gmail.com>
465
466 * Most files: Major update off the new release of srvx 1.3.1. Also
467 seeing as the new updates dont all have changelog entries ive dropped
468 the 2 srvx Changelog files and renamed the X3 one to ChangeLog.
469
470 2006-03-20 Alex Schumann <rubin@afternet.org>
471
472 * src/chanserv.c: core fix; check if theres a handle_info before looking
473 at style...
474
475 * src/helpfile.c: core fix; check if theres a handle_info before looking
476 at style...
477
478 2006-03-17 Alex Schumann <rubin@afternet.org>
479
480 * src/chanserv.c: more clean style changes
481
482 2006-03-17 Alex Schumann <rubin@afternet.org>
483
484 * src/chanserv.c: Added nickserv 'style' setting back. (HomeDawg
485 and dhp1080 made me do it) Needs lots of work to remove ----
486 headers for 'clean' setting.
487
488 * src/helpfile.c: Added nickserv 'style' stetting back.
489
490 * src/nickserv.help: Added help for set style.
491
492 * src/mod-helpserv.c: make style affect table outputs.
493
494 * src/nickserv.c: Added nickserv 'style' setting back.
495
496 * src/nickserv.h: Added nickserve 'style' setting back.
497
498 2006-03-17 Alex Schumann <rubin@afternet.org>
499
500 * src/proto-p10.c: Added conf setting for extended_accounts for
501 backward compatability with stock undernet ircd.
502
503 * x3.conf.example: Added conf setting for extended_accounts for
504 backward compatability with stock undernet ircd.
505
506 2006-03-06 Alex Schumann <rubin@afternet.org>
507
508 * src/opserv.help: Added missing trace criteria to help,
509 and fixed up a few other bits of help around that topic.
510
511 2006-01-16 Alex Schumann <rubin@afternet.org>
512
513 * src/tools.c: created an email valididty function
514
515 * src/nickserv.c: check valididty of email better
516
517 * src/sendmail.c: check validity of email better
518
519 2006-01-06 Alex Schumann <rubin@afternet.org>
520
521 * src/opserv.c: fix gtrace, trace, csearch and alerts to work when aliased
522 to a different bot, eg chanserv, and to reply from the correct nickname.
523 also a bunch of whitespace changes
524
525 * src/nickserv.c: begin work on making nickserv commands bind without
526 responding from the wrong nick. also a bunch of whitespace changes
527
528 * src/hash.h: whitespace
529
530 * src/opserv.help: improved QUERY helpfile. (though command itself still
531 has bugs)
532
533 2005-12-14 Alex Schumann <rubin@afternet.org>
534
535 * src/chanserv.help: added set bantimeout help
536
537 2005-11-08 Alex Schumann <rubin@afternet.org>
538
539 * src/modcmd.c: cleaned up tabs, added hack to display help on JOINER
540 aliases properly.
541
542 * src/modcmd.help: Added note about escaping spaces to modcmd help.
543
544 * src/nickserv.help: Improved help files
545
546 * src/chanserv.help: Improved help files
547
548 2005-10-13 Alex Schumann <rubin@afternet.org>
549
550 * src/proto-p10.c: ignore remote /lusers
551
552 2005-09-13 Alex Schumann <rubin@afternet.org>
553
554 * src/global.c: Changed motd header style
555
556 * src/nickserv.help: Improved directions for getting and using
557 accounts.
558
559 * src/chanserv.help: Improved directions for getting and using
560 accounts.
561
562 2005-08-13 Alex Schumann <rubin@afternet.org>
563
564 * src/chanserv.c: Fixed a bug i created using masks in ,kick. Restored
565 some *@* protection.
566
567 * src/tools.c: added function to detect an overmask (too general)
568
569 * src/common.h: added function to detect an overmask (too general)
570
571 2005-08-12 Alex Schumann <rubin@afternet.org>
572
573 * src/chanserv.c: Modified resync to work accourding to automode
574 setting, and fixed a buffer overflow problem.
575
576 * src/chanserv.help: updated set automode and rsync help.
577
578 * src/nickserv.h: Added an autohide setting to nickserv/authserv that
579 sets +x on AUTH.
580
581 * src/nickserv.c: Added an autohide setting to nickserv/authserv that
582 sets +x on AUTH.
583
584 2005-08-12 Alex Schumann <rubin@afternet.org>
585
586 * src/chanserv.c: Cleanup. Added 'automode' channel setting in place
587 of 'voice' setting. + Rewording setting help
588
589 * src/chanserv.h: Cleanup. Added 'automode' channel setting in place
590 of 'voice' setting.
591
592 * src/chanserv.help: Added help for automode. + Rewording setting help
593
594 2005-08-11 Alex Schumann <rubin@afternet.org>
595
596 * src/proto-p10.c: added irc_umode() to send usermodes (Life4Christ)
597
598 * src/proto-bahumit.c: added irc_umode() to send usermodes, untested..
599
600 * src/proto.h: added irc_umode() to send usermodes (Life4Christ)
601
602 * src/nickserv.c: Added option to have authserv oper/admin people with
603 opserv access. (Life4Christ)
604
605 * src/opserv.c: Added admin_level config option
606
607 * src/opserv.h: Added admin_level config option
608
609 2005-08-11 Alex Schumann <rubin@afternet.org>
610
611 * src/proto-p10.c: Avoid duplicating an oper in curr_opers (,staff
612 command) when nef* bug sends the +o twice. ++fix bug in patch
613
614 2005-08-09 Alex Schumann <rubin@afternet.org>
615
616 * src/chanserv.c: Fixed banTimeout to actually remove the bans :)
617
618 2005-08-08 Alex Schumann <rubin@afternet.org>
619
620 * src/chanserv.c: Added banTimeout feature to .set
621
622 * src/chanserv.h: added banTimeout feature to .set
623
624 * src/recdb.c: Added some better error catching in database_get_data()
625
626 * src/proto-common.h: tabs
627
628 * x3.conf.example: added bantimeout to default set list, and ban
629 timeout frequency config setting.
630
631 2005-08-04 Alex Schumann <rubin@afternet.org>
632
633 * src/chanserv.c: Changed kick protected message to one without %s or
634 $b because the kick function doesnt support replacements.
635
636 * src/tools.c: fixed spelling error in comment.
637
638 2005-07-28 Alex Schumann <rubin@afternet.org>
639
640 * src/chanserv.c: fixed crash bug in 8ball (required params was off by
641 one)
642
643 * src/proto-p10.c: Ignore wallusers (WU) tokens from server without
644 whining.
645
646 2005-07-26 Alex Schumann <rubin@afternet.org>
647
648 * x3.conf.example: Updated from live afternet file and improved help
649 and layout. Added vim directive to set syntax type.
650
651 * src/chanserv.c: ported x2's 8ball in, and improved it.
652
653 * src/math.c: Added osiris' hack to do_math for supporting
654 2(10) and 2pi etc. Improved it to handle pi2 also.
655
656 * src/chanserv.help: updated 8ball help and added 'myaccess' to
657 information help index.
658
659 2005-07-18 Alex Schumann <rubin@afternet.org>
660
661 * src/proto-p10.c: added +L awareness
662
663 * src/hash.h: added +L awareness
664
665 * src/chanserv.help: changed set ctcpreaction help
666
667 2005-07-18 Neil Spierling <sirvulcan@gmail.com>
668
669 * src/modcmd.h: Lets make some functions global.
670
671 * src/modcmd.c: Log hostmasks no matter what.
672
673 * src/log.c: Lookup commands if they are from OpServ in the log.
674 If they match channel specific commands like OP, DEOP, etc then
675 we will display them in a LAST command (assuming the person doing
676 the LAST is an oper). Normal clients wont see commands that have
677 been performed by OpServ.
678
679 2005-07-15 Alex Schumann <rubin@afternet.org>
680
681 * src/chanserv.c: Changed around ctcpreaction setting so it:
682 a) doesnt crash.
683 b) doesnt kick userlist members ever
684 c) has only 1 setting needed to control it
685 * src/chanserv.h: removed some old oplevel stuff.
686
687 2005-07-14 Alex Schumann <rubin@afternet.org>
688
689 * src/proto-p10.c: made it ignore EX, MK and PRIV tokens to
690 remove errors from log. Fixed problem with missing break; in
691 channel mode c parsing (reed).
692
693 * src/mod-memoserv.c: Improved memoserv 'you have notes' message.
694
695 * src/log.c: Changed channel log target to send PRIVMSG instead of
696 NOTICE. (Ghozer)
697
698 2005-05-07 Neil Spierling <sirvulcan@gmail.com>
699
700 * configure: Regenerated.
701
702 * configure.in: Added checks for tgmath.h.
703
704 * src/chanserv.c: Added new command LAST, from X2. Similar to
705 EVENTS except its file based. Bear in mind you dont have to use
706 both. You can bind what you want to use. Commented out zoot_list
707 as its not in use, just a warning fix.
708
709 * src/hash.c: Warning fix.
710
711 * src/log.h: Misc defines.
712
713 * src/log.c: Logging functions from X2.
714
715 * src/math.c: If tgmath.h doesnt exist then include some other
716 files that contain the functions we require.
717
718 * src/modcmd.c: Added a small ctcp reply, gender.. like gnuworld X.
719
720 * src/proto-p10.c: Added chanserv.h #include to squash a small
721 compile error. Made X3 understand MARK's to a small point. Fixed
722 a small parsing bug with exempts.
723
724 2005-07-06 Alex Schumann <rubin@afternet.org>
725
726 * src/chanserv.c: Fixed a couple awkward looking outputs with userlist
727
728 * src/opserv.c: Fixed an awkward output of trace count etc.
729
730 2005-06-22 Alex Schumann <rubin@afternet.org>
731 * src/chanserv.help: Improved DURATION help
732
733 * src/tools.c: Changed 'M' duration to 30 days (not 31) as its
734 a better average.
735
736 2005-05-27 Alex Schumann <rubin@afternet.org>
737
738 * src/chanserv.c: Improved usability of register command, fixed
739 unregister reply.
740
741 * src/chanserv.help: Improved usability of register command
742
743 2005-05-27 Alex Schumann <rubin@afternet.org>
744
745 * src/chanserv.c: Resync working now
746
747 2005-05-27 Reed Loden <reed@reedloden.com>
748
749 * src/chanserv.c: Fixed an incorrectly named message. Fixed some
750 grammar issues in the message send to pending users. Fixed a
751 problem with some of the resync code.
752
753 2005-05-27 Alex Schumann <rubin@afternet.org>
754
755 * src/chanserv.c: make pending add check if the person is already on
756 the userlist before re-adding them (thx exec & reed for noticing this)
757 Fix capitalisation of I in pending notice.
758
759 2005-05-18 Alex Schumann <rubin@afternet.org>
760
761 * src/modcmd.c: reed pointed out that modcmd non-command help wasnt
762 working, and pointed me to the opserv helpfiles command, which shows
763 what services search what help files. This fixes the help command to
764 search that list as it should. Still need to modify the 'default'
765 helpfile search bindigs because I dont think chanserv should respond
766 to help from opserv's db, etc. See opserv's 'helpfiles' command.
767
768 * src/modcmd.help: clarified 'helpfiles' help.
769
770 2005-05-18 Alex Schumann <rubin@afternet.org>
771
772 * src/helpfile.c: make send_help() return true/false and not send
773 errors so svccmd_send_help can 'take control' of things.
774
775 * src/modcmd.c: Fixed up the help system (again) / find aliased
776 commands help if none exists. / Display no help for that command on
777 commands (instead of topic)
778
779 * src/modcmd.h: Fixed up the help system (again)
780
781 * src/global.c: Fixed syntax display
782
783 * src/chanserv.help: Removed =---= formatting, fixed a few things.
784 *spelling ++more spelling (thx reed)
785
786 * src/nickserv.help: Removed =---= formatting, fixed a few things.
787 *spelling ++more spelling (thx reed)
788
789 * src/opserv.help: Removed =---= formatting, fixed a few things.
790 ++spelling (thx reed)
791
792 * src/global.help: simplified index
793
794 * src/nickserv.c: Changed message users get when their email is
795 already used for an account, fixed syntax help
796
797 * src/opserv.c: fixed syntax help
798
799 2005-05-16 Alex Schumann <rubin@afternet.org>
800
801 * src/chanserv.help: Fixed a couple ban/lamer conversions i missed in
802 the help file.
803
804 2005-05-04 Alex Schumann <rubin@afternet.org>
805
806 * src/modcmd.c: added a 'rebindall' command to assist with
807 upgrades and changes which change command bindings.
808
809 * src/modcmd.help: modified help to reflect above
810
811 * src/opserv.help: modified help to reflect above
812
813 * src/chanserv.c: changed addban, addtimedban, delban, bans etc
814 to addlamer, dellamer, addtimedlamer, lamers to reduce confusion
815 between channel bans (+b) and x3 remembered bans (lamers)
816
817 * src/chanserv.help: modified help to reflect above
818
819 * UPGRADE: added use of rebindall to upgrade instructions
820
821 2005-05-04 Alex Schumann <rubin@afternet.org>
822
823 * src/chanserv.c: added an 'adduser pending' feature, where if
824 someone isn't authed x3 will ask them to /auth or register, and then
825 automatically finish adding them to the channel when they do.
826 Fixed email bug with adduser pending
827
828 * src/chanserv.h: adduser pending
829
830 * src/hash.c: adduser pending
831
832 * src/hash.h: adduser pending, and increased maxbans to 128 from 45.
833
834 * src/nickserv.c: adduser pending cleanup and activation code,
835 Arch sync (Avoid losing channel information when
836 replacing an account using the mergedb command.)
837
838 * src/proto-p10.c: adduser pending cleanup code
839
840 * src/nickserv.help: improved set and register help
841
842 2005-05-04 Alex Schumann <rubin@afternet.org>
843
844 * src/chanserv.c: changed uset noautoop to uset autoop (removed double
845 negitive). Added set voice to provide control over use of voice.
846 Implimented a basic chanserv db version control system for upgrading
847 seamlessly.
848
849 * src/chanserv.help: adjusted help to reflect voice and uset autoop
850 changes.
851
852 * src/hash.h: updated ssz comment from z to Z
853
854 * src/modcmd.help: rewrote BIND help
855
856 * src/proto-p10.c: Added Z (sslonly) support back in
857
858 * UPGRADE: created file to document upgrading procedures
859
860 2005-04-23 Alex Schumann <rubin@afternet.org>
861 * src/chanserv.c: removed settings: oplevel, halfoplevel, and
862 voicelevel, hard coding them to OP, HALFOP, and PEON. Changed
863 topicmask to be an on or off setting, uninfluenced by enftopic.
864 Added feature to use mask on /topic in addition to ,topic sets.
865 Removed special consideration for ircops in protect_user()
866
867 * src/chanserv.help: updated documentation to reflect the new and
868 much simpler topicmask feature, and removed op/voice levels.
869
870 * src/nickserv.c: added tailing 'end of' line for accountinfo
871 for non-opers too.
872
873 * src/modcmd.c: tweaked alias notification for help and breef help.
874
875 2005-04-20 Alex Schumann <rubin@afternet.org>
876
877 * src/proto-common.c: removing +d. needs to be a config option
878 or something.
879
880 * src/nickserv.help: modified main help reply of authserv
881
882 * src/nickserv.c: added title, epithet, and fakehost to oset listing
883
884 * src/modcmd.c: fixed up auto-help & alias command handling. Needs
885 totally redesigned though.
886
887 2005-04-15 Alex Schumann <rubin@afternet.org>
888
889 * src/proto-common.c: Temp fix for x3 not seeing -hv modes being set
890 at the same time. The whole block needs to be if/else instead of
891 switch though, to be cleaner.
892
893 * src/nickserv.help: added fakehost and title options to help oset.
894
895 * src/nickserv.c: removed 'style' setting. (was not being used in
896 code anyway)
897
898 2005-04-04 Neil Spierling <sirvulcan@gmail.com>
899
900 * src/proto-p10.c: Reinstated +d usermode.
901
902 2005-03-30 Alex Schumann <rubin@afternet.org>
903
904 * src/chanserv.c: Fixed unban.
905
906 * x3.conf.example: added note in snoop config that improper
907 setting for bots nick will cause segfault.
908
909 2005-03-22 Alex Schumann <rubin@afternet.org>
910
911 * x3.conf.example: added sethost/fakehost settings to conf
912
913 2005-03-19 Alex Schumann <rubin@afternet.org>
914
915 * chanserv.c: Changed style of command outputs, added userlevel back
916 to users list.
917
918 * opserv.c: Changed style of command outputs, removed warn feature
919
920 * tools.c: shortened duration string lengths
921
922 * main.c: shortened duration string lengths
923
924 * sendmail.c: Changed style of stats email
925
926 2005-03-18 Alex Schumann <rubin@afternet.org>
927
928 * Changed breef to brief...
929
930 * chanserv.c: Changed to access level names instead of numbers.
931
932 2005-03-17 Alex Schumann <rubin@afternet.org>
933
934
935 * src/opserv.c: Improved readability of trace print output
936
937 * src/chanserv.c: Improved cmd_list_users output & cleaned it up
938 a little.
939
940 * src/helpfile.c: Improved table_send readability (used in lots
941 of listings including users and stats network etc)
942
943 2005-03-15 Alex Schumann <rubin@afternet.org>
944
945 * src/chanserv.c: Improved some syntax error reporting for commands
946
947 * src/helpfile.c: Added a 'breef' help function
948
949 * src/helpfile.h: Added a 'breef' help function
950
951 * src/main.c: Improved some syntax error reporting for commands
952
953 * src/modcmd.c: Improved some syntax error reporting for commands
954
955 * src/modcmd.h: Improved some syntax error reporting for commands
956
957 2005-03-15 Reed Loden <reed@reedloden.com>
958
959 * Synchronization with srvx--devo--1.3--patch-19.
960
961 2005-03-12 Alex Schumann <rubin@afternet.org>
962
963 * src/common.h, src/opserv.h: more SRVX->X3 fixes
964
965 * opserv.c: fixed SRVX defines to X3
966
967 * src/nickserv.c: Applied patch to bring up to date with
968 local uncommitted changes on afternets srvx2 tree. improved
969 cookie gen code and removed /play from cookie messages.
970
971 * src/all, src/Makefile*, Makefile.in: changed srvx to x3 in a
972 bunch more places.
973
974 2005-03-07 Neil Spierling <sirvulcan@gmail.com>
975
976 * nickserv.help: Added odelcookie section.
977
978 * src/nickserv.c: Added odelcookie for deleting auth cookies and email
979 cookies.
980
981 * src/md5.c: Cleaned up compile warnings.
982
983 * src/nickserv.help: Added odelcookie section.
984
985 ***********************************************************************/
986
987 #define CVS_VERSION "$Id$"
988