forked from mortenbpost/eservices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1382 lines (1257 loc) · 51.4 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Exiled.net IRC Services.
ChangeLog ($Id: ChangeLog,v 1.62 2004/08/06 17:59:44 mr Exp $)
06/08/2004 Michael Rasmussen <[email protected]>
* src/parser.c
include/setup.h
Added option for limiting service use to
opers only, by defining SERVICES_OPER_ONLY.
05/08/2004 Michael Rasmussen <[email protected]>
* src/operserv/killchan.c
include/operserv.h
include/msg.h
help/operserv/killchan
Added KILLCHAN command.
Restricted SQL command to DCC only.
* Makefile.in
src/Makefile.in
src/operserv/Makefile.in
src/chanserv/Makefile.in
src/nickserv/Makefile.in
src/multiserv/Makefile.in
Added removal of Makefile in distclean.
01/08/2004 Michael Rasmussen <[email protected]>
* src/operserv/gline.c
include/operserv.h
help/operserv/gline
Added option for specifying a nick instead of
user@host in GLINE command.
Nick for opers are not valid.
27/04/2004 Morten Post <[email protected]>
* src/operserv/ignores.c
include/msg.h
include/operserv.h
Added IGNORES command to show who is currently
ignored by services.
* src/nickserv/grep.c
src/chanserv/grep.c
src/chanserv/info.c
Style-fix and added compatability to the
half-finished SET command.
23/03/2004 Michael Rasmussen <[email protected]>
* src/errors.c
src/server.c
include/errors.h
Added error code and message for ping timout.
19/03/2004 Michael Rasmussen <[email protected]>
* src/server.c
Decreased the timeout for select()
* src/p10.c
src/chanserv.c
include/chanserv.h
Implemented checking of strict ops and strict topic,
when mode changes, topic is changed and on burst.
* src/p10.c
src/server.c
include/setup.h
include/msg.h
include/p10.h
Implemented ping/pong, for detection lost connection.
17/03/2004 Michael Rasmussen <[email protected]>
* INSTALL
Minor changes to the wording.
* dbase-structure
Fixed a compatibility issue with mysql 3.23.
* src/nickserv/unreg.c
Fixed bug preventing acocunts to be removed with unreg.
* src/misc_func.c
src/nickserv.c
src/nickserv/noexpire.c
src/nickserv/set.c
include/nickserv.h
include/misc_func.h
Renamed and moved function to check on/off parameter
from nickserv.c to misc_func.c.
* src/chanserv/topic.c
src/chanserv/set.c
include/dbase.h
Implemented a set command for chanserv, currently
with strict topic and strict ops.
* src/p10.c
include/setup.h
Added #define, for disabling on-connect welcome
message.
22/01/2004 Michael Rasmussen <[email protected]>
* src/log.c
Fixed core-dump bug, when starting services and
config-file failed to load / didn't exists.
17/01/2004 Michael Rasmussen <[email protected]>
* dbase-structure
Added a generic admin-account.
* src/chanserv/chowner.c
src/chanserv/drop.c
src/chanserv/removeme.c
src/nickserv/drop.c
Updated commands to use the updated password functions.
17/01/2004 Morten Post <[email protected]>
* include/msg.h
include/operserv.h
include/setup.h
src/Makefile.in
src/main.c
src/parser.c
src/server.c
src/operserv/Makefile.in
src/operserv/sql.c
Added new sql queue system and a SQL command.
* include/chanserv.h
include/dbase.h
src/chanserv/Makefile.in
src/chanserv/info.c
src/chanserv/set.c
Fixed a bug in INFO command and added prototypes for
the SET command in chanserv.
16/01/2004 Michael Rasmussen <[email protected]>
* src/nickserv/chpass.c
src/nickserv/ghost.c
src/nickserv/pass.c
Updated commands to use the updated password functions.
* src/nickserv/chnick.c
Updated incorrect confirmation-string.
* Makefile.in
src/Makefile.in
src/nickserv/Makefile.in
src/chanserv/Makefile.in
src/operserv/Makefile.in
src/multiserv/Makefile.in
Updated for support for older versions of make.
16/01/2004 Morten Post <[email protected]>
* src/chanserv/chowner.c
src/operserv/netinfo.c
src/operserv/gline.c
Introduced format_time() function and fixed a bug
in CHOWNER.
14/01/2004 Michael Rasmussen <[email protected]>
* src/nickserv/chnick.c
Fixed bug so the nick would actually be changed, and
mysql would be updated correctly.
* Makefile.in
src/Makefile.in
src/nickserv/Makefile.in
src/chanserv/Makefile.in
src/operserv/Makefile.in
src/multiserv/Makefile.in
Added better support for systems with exec-suffixes
and object suffixes other than .o
Fixed make error complaining about missing version.c
09/01/2004 Morten Post <[email protected]>
* src/misc_func.c
include/misc_func.c
Added a function to convert a x secs into a readable
time format.
* src/p10.c
src/operserv/netinfo.c
src/operserv/Makefile.in
include/operserv.h
include/msg.h
Added a new command NETINFO to operserv.
* src/chanserv/list.c
Added a counter to the function.
09/01/2004 Michael Rasmussen <[email protected]>
* services.conf-dist
Added BIND to the example-conf.
* src/misc_func.c
src/nickserv.c
Fixed registration of nicks to generate
SHA1 passwords, if SHA1 activated.
* src/nickserv/unreg.c
Added block for forcefully unregging
and oper, remoper should be used first.
* src/operserv/remoper.c
Added block for removing opers with
higher access.
* src/operserv/operlist.c
Added (DCC) field for opers with P-flag.
* TODO
Removed BIND from todo.
Added IPv6 support as low priority.
08/01/2004 Michael Rasmussen <[email protected]>
* configure.ac
defines.h.in
src/misc_func.c
src/nickserv.c
Added SHA1 password rutine using OpenSSL libs.
Using SHA1 by default if include file exists.
* src/chanserv/unban.c
Fixing crash-bug, using a pointer after it's
been freed.
07/01/2004 Morten Post <[email protected]>
* include/msg.h
Removed all non-administrative commands from the dcc
interface.
* src/chanserv/banlist.c
Made it prettier.
* src/chanserv/autoop.c
Fixed bug when no nickname was given.
22/12/2003 Michael Rasmussen <[email protected]>
* src/nickserv/set.c
Fixed bug with escaping info text before saving in
internal database, so ex ' would be prepended with a \.
* src/chanserv.c
Fixed ! bug in chanserv_dbase_burst_join.
20/10/2003 Morten Post <[email protected]>
* src/nicks.c
src/channels.c
src/misc_func.c
include/misc_func.h
Fixed some conflicting types with the mysql API and
LIST* types.
* src/nickserv/comment.c
Fixed a typo: if (smd) -> if (cmd)
10/09/2003 Michael Rasmussen <[email protected]>
* src/operserv.c
include/operserv.c
Changed operserv_valid_gline to actually check for a
valid gline. Lowered required non-wildcard chars. to 3.
02/09/2003 Michael Rasmussen <[email protected]>
* src/chanserv.c
Fixed a bug in the chanserv_dbase_resync_channel
where chanserv wouldn't part unregged channels after
resynching due to it sending wrong P10 code.
* src/chanserv/comment.c
* src/nickserv/comment.c
Fixed core-dump bug when not specifying 2nd parameter.
Defaulting to LIST if 2nd parameter is not specified.
19/08/2003 Michael Rasmussen <[email protected]>
* src/chanserv/access.c
Fixed display bug when changing access level for
users with autoop in that channel.
27/07/2003 Michael Rasmussen <[email protected]>
* src/multiserv/stats.c
Added the mising code for the stats command, which
apparently was forgotten when the function was moved
to seperate files.
22/07/2003 Michael Rasmussen <[email protected]>
* src/operserv/broadcast.c
include/operserv.h
help/operserv/broadcast
Added an option for broadcasting anonymously.
Added helpfile for broadcast.
19/07/2003 Michael Rasmussen <[email protected]>
* help/nickserv/drop
Fixed a typo.
* src/nickserv/forbid.c
Fixed a typo in a string.
Changed to start with an access check.
* src/nickserv/whois.c
Added missing parameter to a com_message-statement.
* src/nickserv/unreg.c
src/nickserv/Makefile.in
include/nickserv.h
include/msg.h
help/nickserv/unreg
Added function to forcefully remove a registered nick.
16/07/2003 Michael Rasmussen <[email protected]>
* src/nickserv/noexpire.c
src/nickserv/chnick.c
src/nickserv/Makefile.in
include/nickserv.h
include/msg.h
help/nickserv/noexpire
help/nickserv/chnick
Added the noexpire and chnick NickServ commands.
* src/db_server.c
src/help.c
src/log.c
src/nickserv.c
src/p10.c
src/parser.c
src/server.c
include/db_server.h
include/help.h
include/nickserv.h
include/p10.h
include/parser.h
include/server.h
Added some "const" keywords
15/06/2003 Michael Rasmussen <[email protected]>
* src/misc_func.c
include/misc_func.h
include/setup.h
Added some list_* functions, which are used to create
the arrays used various places, and to add, remove items
from the lists, aswell as resising them.
The list preallocates 1024 elements in the list - can be
changed in a define in setup.h
* src/nicks.c
src/channels.c
src/db_server.c
src/main.c
include/nicks.h
Implemented the use of list_*.
* src/chanserv.c
Changed the userdata for ChanServ, as it is represented
in the enternal database (no longer reads "This is me", but
now the correct nick instead)
28/05/2003 Michael Rasmussen <[email protected]>
* src/chanserv/op.c
* src/chanserv/deop.c
* src/chanserv/voice.c
* src/chanserv/devoice.c
Changed the use on snprintf to strncat, to make
it work probably on systems, which doesn't support
that dest and parameters are the same.
* src/log.c
Added test for HAVE_TM_ZONE (defined by configure).
id TM_ZONE is not found, uses GMT and gmtime.
* include/server.h
* src/server.c
* src/main.c
* src/dcc.c
Changed the implementation of com_create to accept
a second parameter, specifying whether or not the
newly created sock_info should be added to the array
of sock_info or not. Added the function com_sock_attach
to add a sock_info to the array later.
* configure.ac
* defines.h.in
* src/misc_func.c
Added test for header file crypt.h, for systems which
defines crypt() in crypt.h instead of unistd.h.
Added test for libz, which mysql requires on some systems.
* src/queue.c
Added include of sys/time.h, which some systems require.
* src/help.c
Changed help file loading rutine to use stat() instead of
dp->d_type, which hopefully should be more portable.
01/04/2003 Morten Post <[email protected]>
* src/chanserv/grep.c
* src/nickserv/grep.c
* src/nickserv/Makefile.in
Changed the existing GREP command in chanserv. Now
exists both in nickserv and chanserv. Added the new
grep.c in nickserv to Makefile.
* ./*
We're in a new year now. Updated copyright info.
01/03/2003 Michael Rasmussen <[email protected]>
* src/dbase.c
Added loading of notices on startup.
* src/nickserv.c
Fixed mior problem in notices, missing a strcpy.
01/03/2003 Morten Post <[email protected]>
* src/*
Finished the checkup after the move and new structure of
the new source map. Adapted code to gcc 3.2.1
* src/misc_func.c
include/misc_func.h
Added uppercase function to make things easier for
ourselves.
28/02/2003 Michael Rasmussen <[email protected]>
* src/server.c
src/main.c
Added mutex to the socket-array, to prevent simultanious
access to the list during a DCC connect.
src/queue.c
Added missing mutex init.
27/02/2003 Michael Rasmussen <[email protected]>
* src/nickserv/register.c
Fixed bug when trying to register an already regged nick,
or if you were authed when trying to register another nick.
26/02/2003 Michael Rasmussen <[email protected]>
* src/nickserv/whois.c
Fixed whois to show the channel for the user selected.
25/02/2003 Morten Post <[email protected]>
* src/nickserv/*
src/chanserv/*
src/multiserv/*
src/operserv/*
include/nickserv.h
include/chanserv.h
include/multiserv.h
include/operserv.h
Did the final checkups after the move and new
structure of source map.
25/02/2003 Michael Rasmussen <[email protected]>
* src/nickserv.c
include/nickserv.h
Changed the notice to new nicks to not include when
bursting, or if a authed user changes nick to a not
regged nick. Changed the text displayed if a authed user
changes nick to another regged nick (not the nick the
user is authed as).
* src/misc_func.c
include/misc_func.h
Added a new struct, string_chain, which is a linked list
of strings (char *).
Also added 2 function to be used with string_chain and
timers:
- string_chain_traverse() which loops through the
entire list, and sends the string to the server as a
P10 command - no checking to ensure it is.
- string_chain_free() which loops through the entire
list and frees the char* and the struct itself.
* src/chanserv.c
include/chanserv.h
src/p10.c
Services will now try to automatically reop ChanServ and
those users who were deopped due to a net-join, where the
other part had a channel with lower timestamp than the
part services are on.
* include/setup.h
configure.ac
defines.h.in
Added check for sizeof(char) to configure.
Made setup.h #include the configure-generated defines.h.
Fixed the debug_out macro if NDEBUG was defines.
Added a MAX_NICK_LEN #define, currently only used as
bufferlength.
* src/queue.c
include/queue.h
Added a new escape function, queue_escape_string_buf, which
takes a buffer as a second parameter, in which the result is
stored (use of queue_escape_string is now deprecated).
Added logging of failed queries. Now both the mysql_error and
the query that caused the error is logged.
* dbase-structure
src/nickserv.c
src/chanserv.c
src/nickserv/auth.c
src/chanserv/access.c
src/chanserv/chowner.c
include/nickserv.h
include/dbase.h
Started implementing on-connect notices.
Added notices to access and chowner, and added a check for
noticed when the users auths.
Added notice to the owner when a channel expires.
Changed instances of sizeof(...) to the SIZEOF_??? defines.
* src/chanserv.c
ChanServ will now not try to part an expired or disabled
channel when the channels is dropped (ie part a channel
it isn't currently on).
21/02/2003 Michael Rasmussen <[email protected]>
* src/chanserv.c
src/nickserv.c
src/operserv.c
src/multiserv.c
src/chanserv/*
src/nickserv/*
src/operserv/*
src/multiserv/*
All functions now have their own seperate file. Look in
the chanserv, nickserv, operserv and multiserv subdirs
in the src directory.
* include/msg.h
include/chanserv.h
Renamed UNDISABLE to ENABLE.
* configure.ac
Makefile.in
defines.h.in
config.guess
config.sub
.cvsignore
src/Makefile.in
src/.cvsignore
src/nickserv/Makefile.in
src/operserv/Makefile.in
src/chanserv/Makefile.in
src/multiserv/Makefile.in
src/nickserv/.cvsignore
src/operserv/.cvsignore
src/chanserv/.cvsignore
src/multiserv/.cvsignore
Created/updated autoconf files and .cvsignore.
18/02/2003 Morten Post <[email protected]>
* src/chanserv.c
Fixed bug in chanserv_dbase_check_enforced_ban_kick which
caused everyone NOT matching the ban to be banned *oops*.
* src/dcc.c
Fixed bug in dcc_console_text which caused a coredump in
some cases.
* src/nickserv.c
Fixed bug in nickserv_info caused by an incorrect if statement.
* src/operserv.c
Fixed a wrong use of wildcard_compare() in operserv_trace.
14/02/2003 Michael Rasmussen <[email protected]>
* src/chanserv.c
Fixed some missing escapes, which prevented channels with
' or \ in them, to be corectly registered.
* src/db_server.c
Minor cleanup in debug output
* src/dcc.c
include/dcc.h
src/parser.c
DCC connection are now in a thread, so services are not
blocked while trying to connect to the remote host.
* src/p10.c
Fixed JOIN 0, which was not parse as leave all channels.
14/02/2003 Morten Post <[email protected]>
* src/nickserv.c
src/dcc.c
Removed console mode e from services.
14/02/2003 Morten Post <[email protected]>
* src/chanserv.c
Addapted GREP command to use command_info structure.
* src/dcc.c All dcc functions are now using command_info strcuture
as well.
* src/operserv.c
Fixed a bug in BROADCAST command causing broadcasts to be
sent to the wrong socket.
* TODO
Sorted out things that are already fixed. Moved all ideas
to the end of the file.
12/02/2003 Morten Post <[email protected]>
* src/chanserv.c
Fixed a minor bug in GREP command. Added extra
functionality.
Fixed bug in chanserv_commnet causing nickserv to
respond instead of chanserv.
* src/operserv.c
include/operserv.h
include/msg.h
Added BROADCAST command.
Style fixups on TRACE command.
Beefed up OPERLIST command.
* help/operserv/*
Finished writing operserv help files.
08/02/2003 Morten Post <[email protected]>
* help/* Finished writing help files!
src/*
include/*
A lot of style fixups.
Removed LISTACCESS command completely and added
channel information to nickserv_info.
command_info[] has been implemented in nickserv.c,
chanserv.c and operserv.c.
19/01/2003 Michael Rasmusen <[email protected]>
* src/server.c
src/config.c
include/config.h
Added ability to bind to a specific IP. The IP to bind to
is set in services.conf using the BIND token.
17/01/2003 Michael Rasmussen <[email protected]>
* src/p10.c
Fixed bug in dcc console mode +m, where nicks would be
shown as numerics when setting channel modes v and o.
* src/channels.c
src/chanserv.c
src/db_server.c
src/help.c
src/main.c
src/nicks.c
src/nickserv.c
src/queue.c
src/server.c
include/setup.h
Changed all instances of printf to the macro debug_out,
which is #defined in setup.h.
15/01/2002 Michael Rasmussen <[email protected]>
* src/nicks.c
src/parser.c
include/setup.h
include/parser.h
include/dbase.h
Added a simple flood-protection. NS admins, CS admins and
above are not checked. Standard setting, 5 or more lines
from the same person within 15 second => 120 sec ignore.
15/01/2002 Michael Rasmussen <[email protected]>
* src/chanserv.c
include/chanserv.h
Changed ACCESS LIST, so a @ is preceeded to the level
if the user has autoop in the channel.
13/01/2003 Michael Rasmussen <[email protected]>
* src/parser.c
include/parser.h
Changed FUNC_COMMAND, so the info in msg.h is available to
the function through the variable command_info which is
now passed on to the function.
* include/msg.h
Added some comments to msg.h, to what the different coloumns
do in the different sets. Also made the sets more alike.
* src/nickserv.c
Did some minor code cleanup.
Changed all the commands to use the command_info variable
(especially command_info->syntax vs. the SYNTAX #defines).
Added a LOT of comments, too many perhaps.
13/01/2003 Morten Post <[email protected]>
* src/operserv.c
Added TRACE command.
* src/chanserv.c
Added GREP command.
Changed the output of chanserv_info a bit.
* include/operserv.h
Added prototypes and defines for TRACE command.
Same for GREP.
* include/chanserv.h
Added prototypes and defines for GREP.
* include/msg.h
Added TRACE command.
NINFO and CINFO to DCC Interface.
12/01/2003 Morten Post <[email protected]>
* src/chanserv.c
Removed the chanserv_listexpire and added a chanserv_lister
function that handles the new LIST command.
* include/chanserv.h
Fixed prototypes changes.
* include/msg.h
Removed old LISTNOEXPIRE and added new LIST command in
chanserv and dcc interface.
11/01/2003 Morten Post <[email protected]>
* src/nickserv.c
Fixed bug in nickserv_comment causing services to core
if no args were given to ADD.
* src/chanserv.c
Fixed the exact same bug in chanserv_comment.
Added UNBAN command.
* include/chanserv.h
Added prototype and defines used in UNBAN.
Added prototype for chanserv_dbase_check_enforce_ban_kick.
Changed DISABLE syntax. No args to DISABLE will list all
disabled channels.
* src/p10.c
Now calling chanserv_dbase_check_enforce_ban_kick when a
user joins a channel to make sure to enforce bans.
* src/errors.c
Added missing error.
11/01/2003 Morten Post <[email protected]>
* Moved the current repository to sunsite.dk.
24/12/2002 Michael Rasmussen <[email protected]>
* src/operserv.c
Fixed a bug in operserv_mode, where modes
i, m, p, s and t all would set/remove l (ell).
Added parser for +n.
11/11/2002 Michael Rasmussen <[email protected]>
* src/chanserv.c
src/misc_func.c
src/multiserv.c
src/nickserv.c
include/misc_func.h
Added gtime() function to misc_func, to output the time
in GMT, and changed all places where ctime() was used.
Added missing log_command in some functions, including
multiserv stats.
09/11/2002 Michael Rasmussen <[email protected]>
* src/chanserv.c
Fixed bug in noexpire, where the noexpire-flag wasn't
saved in the mysql-database.
26/10/2002 Michael Rasmussen <[email protected]>
* src/dbase.c
Fixed core-dump bug, when a error occured while loading
the nickdata database during boot.
* src/channels.c
Fixed core-dump bug, when a user joined a expired/disabled
channel he or her had autoop access in.
Tried to access data from a NULL pointer.
07/10/2002 Morten Post <[email protected]>
* src/chanserv.c
Removed the limit on the NOEXPIRE command.
It is now possible to retrieve noexpire list via msg.
06/10/2002 Michael Rasmussen <[email protected]>
* src/help.c
Removed some unused vars.
Fixed the load function, so the files are closed after use.
Changed some strings to fixed length buffers.
* src/chanserv.c
Fixed bug in chanserv_dbase_join where ChanServ wouldn't
join a channel on burst, if the channel didn't exists
due to a error in the P10 command.
* src/operserv.c
include/operserv.h
Changes operserv_str_to_flags and access so the parser
should be more intelligent now.
05/10/2002 Morten Post <[email protected]>
* include/chanserv.h
* include/chanserv.c
* include/msg.h
Added BANLIST command, and initial stage to UNBAN
* include/nickserv.c
* include/nickserv.h
Fixed a bug in nickserv_new_nick_notice().
05/10/2002 Michael Rasmussen <[email protected]>
* src/misc_func.c
src/parser.c
Fixed core-dump bug when commands starting with whitespace.
* src/channels.c
Fixed bug in channels user-list
- note to self, numeric is case sensetive ;)
* src/dcc.c
src/p10.c
src/log.c
src/server.c
src/nickserv.c
include/dcc.h
include/msg.h
Implemented console settings to DCC interface.
* src/chanserv.c
include/chanserv.h
Added chanserv_dbase_join and chanserv_dbase_part, to
keep track of which channels chanserv is on, and which
it's not.
* src/server.c
src/operserv.c
include/server.h
Added com_wallops, changed all places where wallops were
sent (besides in signal-handler) to use com_wallops.
04/10/2002 Morten Post <[email protected]>
* include/nickserv.h
Fixed wrong syntax in NCOMMENT. Rewrote a few defines as well.
Added prototype of nickserv_new_nick_notice.
* src/nickserv.c
Added nickserv_new_nick_notice that welcomes the user on
connect.
* src/p10.c
Added a few statements to p10_nick that calls
nickserv_new_nick_notice.
* include/msg.h
Added REMOPER and DIE commanda to the DCC interface.
26/08/2002 Michael Rasmussen <[email protected]>
* src/server.c
Added reset of nfds on every loop.
20/08/2002 Michael Rasmussen <[email protected]>
* src/chanserv.c
include/chanserv.h
Added +nt as default mode, on regged channels
that doest not exist when chanserv joins.
Fixed REMOVEME, so you can remove yourself
from disabled channels.
Edited the reply returned if you were trying
to access commands on a disabled channel.
18/08/2002 Michael Rasmussen <[email protected]>
* src/nickserv.c
include/nickserv.h
Fixed GHOST command, not allowing to ghost yourself.
Fixed FORBID.
* src/chanserv.c
Fixed logging in OP, DEOP, VOICE and DEVOICE
to include the channel the command is done in.
Fixed UNREG.
* src/misc_func.c
include/misc_func.h
Started implementing MD5 passwords.
* src/chanserv.c
include/chanserv.h
include/msg.h
Added REMOVEME command to ChanServ.
* src/dcc.c
include/dcc.h
include/msg.h
Added WHO command.
Added dcc_to_all(), which sends a message to all
users online in the DCC Interface.
Added connect / disconnect broadcast.
Added compile information to on-connnect message.
18/08/2002 Morten Post <[email protected]>
* include/nickserv.h
include/chanserv.h
include/msg.h
src/nickserv.c
src/chanserv.c
Changed various output formats, in an attempt to
make the same style throughout the service.
Fixed a few syntaxs.
Renamed EUNREG to UNREG.
17/08/2002 Michael Rasmussen <[email protected]>
* src/chanserv.c
Fixed bug in chowner, which would make both new
owner and prevoius owner have level 500.
16/08/2002 Michael Rasmussen <[email protected]>
* src/nickserv.c
Fixed out-of-range bug in nickserv_forbid
* src/operserv.c
Fixed a small/stupid bug in operserv_gline,
did a strcmp where a strcpy should have been.
15/08/2002 Various
* help/*
Added/edited a lot of help-files.
15/08/2002 Michael Rasmussen <[email protected]>
* include/nickserv.h
include/operserv.h
include/chanserv.h
include/multiserv.h
include/setup.h
src/multiserv.c
src/nickserv.c
src/p10.c
src/parser.c
src/server.c
Create a NETWORK_NAME define in setup.h and
edited all network-specific strings to use
the NETWORK_NAME define instead.
* src/operserv.c
include/operserv.h
Fixed bug in operserv_mode, where strings
wouldn't be zero-terminated.
Changes operserv_mode and operserv_op to
test if the person we are changing mode for
is on the channel, and giving an errormessage
if he is not.
14/08/2002 Michael Rasmussen <[email protected]>
* src/Makefile
src/misc_func.c
include/misc_func.h
src/chanserv.c
src/nickserv.c
Changes crypt to ircd_crypt, and added
a ircd_crypt command to misc_func.
Reason: make services compile under Linux.
* src/operserv.c
Fixed bug in remoper
* src/server.c
added test if sock == NULL in com_send
* src/Makefile
src/dcc.c
src/parser.c
src/p10.c
Fixed version.c info
* src/dcc.c
Added compile-time to welcome-message
Fixed HELP
* dbase-structure
Added bans table
* src/chanserv.c
src/channels.c
src/dbase.c
include/dbase.h
include/chanserv.h
include/channels.h
Added chanserv_ban
Added enforce bans.
Added load of enforce bans at load.
14/08/2002 Morten Post <[email protected]>
* include/msg.h
include/operserv.h
src/operserv.c
Fixed remove +O flag bug by adding REMOPER, that removes
a user's 0 flag and thereby all priviliges from the user.
Added OPERLIST command.
* include/msg.h
include/chanserv.h
src/chanserv.c
Added EXPIRELIST command.
Added NOEXPIRE command, and noexpire info to the info chan
command.
10/08/2002 Michael Rasmussen <[email protected]>
* src/dcc.c
Fixed bug in dcc_say, sending to self instead of the other
open dcc connections.
* include/dcc.c
src/dcc.c
src/nicks.c
Added automatical closing of DCC session, when the user
quits the network, by implementing dcc_free() and calling
it from nicks_del().
This means a DCC connection will be terminated if
a net-split occures, when the user is on the wrong side
of the split.
01/08/2002 Michael Rasmussen <[email protected]>
* include/errors.h
src/parser.c
src/nickserv.c
src/operserv.c
src/chanserv.c
src/multiserv.c
src/dcc.c
Changes return-value of commands, if the user doesn't have
sufficient access to use the command, so the user will get
an "Unknown command." message.
* include/dbase.h
src/operserv.c
src/nickserv.c
src/operserv.c
Changed operserv flags: NS_ADMIN to NS_OPER and
CS_ADMIN to CS_OPER
Added operserv flags: DCC, NS_ADMIN, CS_ADMIN
Added nickserv flags: NS_HELPER, CS_HELPER
Changed flags chars for NS_* and CS_*, so lowercase
is _OPER, and uppercase is _ADMIN.
* src/operserv.c
Changed the WALLOPS, services sends when someone issues a GLINE.
Changes ACCESS, so you can't give higher access then your own,
ie. sub-admins can't set admin or developer flag,
admins can't set developer flag.
* src/nickserv.c
Fixed forbid bug, when forbidding an already forbidden nick.
* src/chanserv.c
Fixed the comment for case-sensetive LIST.
03/08/2002 Rob Something (Guus)
* help/chanserv/*
help/nickserv/*
Wrote a lot of help-files
01/08/2002 Michael Rasmussen <[email protected]>
* src/dcc.c
src/server.c
src/nickserv.c
include/dcc.h
include/msg.h
include/dbase.h
Added a lot of commands to dcc_parser_commands[].
Added dcc_say command.
Changed the nickserv_dbase_date *ns field in sock_info
to a dbase_nicks *from.
Changed dcc_parser, so the from field is passed on to
the called command, so if calling non-dcc command
directly, they can rely on a valid from (not NULL).
* src/nickserv.c
src/chanserv.c
Fixed COMMENT DEL (memmove bug, forgot &).
31/07/2002 Michael Rasmussen <[email protected]>
* src/nickserv.c
src/chanserv.c
src/dbase.c
include/nickserv.h
include/chanserv.h
include/dbase.h
Implemented multiple comments for channels and nicks.
26/07/2002 Michael Rasmussen <[email protected]>
* src/server.c
src/config.c