Add 'tell' command; update copyright message.
[srvx.git] / ChangeLog
1 # do not edit -- automatically generated by arch changelog
2 # arch-tag: automatic-ChangeLog--srvx@srvx.net--2006/srvx--devo--1.3
3 #
4
5 2006-10-21 16:04:19 GMT Michael Poole <mdpoole@troilus.org>     patch-59
6
7     Summary:
8       Add 'tell' command; update copyright message.
9     Revision:
10       srvx--devo--1.3--patch-59
11
12     src/modcmd.c (cmd_version): Update copyright years.  Move the multi-line
13         credits to a separate message and make it actually send properly.
14       (cmd_tell): New command.
15       (modcmd_init): Register cmd_tell.
16
17     modified files:
18      ChangeLog src/modcmd.c
19
20
21 2006-10-07 00:03:52 GMT Michael Poole <mdpoole@troilus.org>     patch-58
22
23     Summary:
24       Fix a (tiny) memory leak in mod-sockcheck.c.
25     Revision:
26       srvx--devo--1.3--patch-58
27
28     src/mod-sockcheck.c (sockcheck_begin_test): Make io_fd assignment
29         clearer.
30       (sockcheck_read_conf): Free the addrinfo we get.
31
32     modified files:
33      ChangeLog src/mod-sockcheck.c
34
35
36 2006-10-06 23:18:58 GMT Michael Poole <mdpoole@troilus.org>     patch-57
37
38     Summary:
39       Fix sending P10 bursts with many bans.
40     Revision:
41       srvx--devo--1.3--patch-57
42
43     src/proto-p10.c (irc_burst): Only send modes and user list once.
44
45     modified files:
46      ChangeLog src/proto-p10.c
47
48
49 2006-10-06 23:16:58 GMT Michael Poole <mdpoole@troilus.org>     patch-56
50
51     Summary:
52       Remove "wants_reads" field from struct io_fd.
53     Revision:
54       srvx--devo--1.3--patch-56
55
56     Everybody wants read information, so give it to them!
57     
58     src/ioset-epoll.c (ioset_epoll_events): Make EPOLLIN unconditional.
59     
60     src/ioset-impl.h (fd_wants_reads): Delete.
61     
62     src/ioset-select.c (ioset_select_loop): Unconditionally set read bit for fd.
63     
64     src/ioset.c (ioset_add): Add fd to engine after marking it non-blocking.
65       (ioset_buffered_reads): Remove check for fd->wants_reads.
66     
67     src/ioset.h (struct io_fd): Delete "wants_reads" field.
68     
69     src/mod-qserver.c (qserver_readable): Add missing newline.
70       (qserver_accept): Delete assignment to fd->wants_reads.
71     
72     src/mod-sockcheck.c (sockcheck_connected): Delete assignment to
73         fd->wants_reads.
74     
75     src/proto-common.c (create_socket_client): Delete assignment to
76         fd->wants_reads.
77
78     modified files:
79      ChangeLog src/ioset-epoll.c src/ioset-impl.h
80      src/ioset-select.c src/ioset.c src/ioset.h src/mod-qserver.c
81      src/mod-sockcheck.c src/proto-common.c
82
83
84 2006-10-06 23:12:20 GMT Michael Poole <mdpoole@troilus.org>     patch-55
85
86     Summary:
87       Fix detection of gettimeofday().
88     Revision:
89       srvx--devo--1.3--patch-55
90
91     configure.in: Since we have a fallback for gettimeofday, move it in with
92         the functions for which we do.
93
94     modified files:
95      ChangeLog configure.in
96
97
98 2006-10-04 01:41:05 GMT Michael Poole <mdpoole@troilus.org>     patch-54
99
100     Summary:
101       Make timeq_init() automatic.
102     Revision:
103       srvx--devo--1.3--patch-54
104
105     src/main.c (main): Remove call to timeq_init().
106     
107     src/timeq.h (timeq_init): Remove declaration.
108     
109     src/timeq.c (timeq_cleanup): Assign NULL to timeq to handle late timeq_del() calls.
110       (timeq_init): Make static.
111       (timeq_next): If timeq is NULL, return a large positive number.
112       (timeq_add): If timeq is NULL, initialize it.
113       (timeq_del): If timeq is NULL, do nothing.
114
115     modified files:
116      ChangeLog src/main.c src/timeq.c src/timeq.h
117
118
119 2006-10-04 01:37:40 GMT Michael Poole <mdpoole@troilus.org>     patch-53
120
121     Summary:
122       Allow log_module() to NULL log types.
123     Revision:
124       srvx--devo--1.3--patch-53
125
126     src/log.c (log_module): To make cleanup easier, allow NULL log types.
127
128     modified files:
129      ChangeLog src/log.c
130
131
132 2006-10-04 01:32:57 GMT Michael Poole <mdpoole@troilus.org>     patch-52
133
134     Summary:
135       Fix some startup-related glitches.
136     Revision:
137       srvx--devo--1.3--patch-52
138
139     src/ioset.h (ioset_update): Declare new function.
140     
141     src/ioset.c (ioset_init): If we have an engine, return early.
142       (ioset_add): If no engine, try to initialize.
143       (ioset_update): New function.
144
145     modified files:
146      ChangeLog src/ioset.c src/ioset.h
147
148
149 2006-10-04 01:23:10 GMT Michael Poole <mdpoole@troilus.org>     patch-51
150
151     Summary:
152       Update time for ioset backend.
153     Revision:
154       srvx--devo--1.3--patch-51
155
156     src/ioset-epoll.c (ioset_epoll_loop): Set now after epoll_wait() returns.
157
158     modified files:
159      ChangeLog src/ioset-epoll.c
160
161
162 2006-10-03 23:18:25 GMT Michael Poole <mdpoole@troilus.org>     patch-50
163
164     Summary:
165       I18n'ize the staff descriptors in !access.
166     Revision:
167       srvx--devo--1.3--patch-50
168
169     src/chanserv.c (msgtab): Add new entries for staff descriptors.
170       (cmd_access): Use them.
171
172     modified files:
173      ChangeLog src/chanserv.c
174
175
176 2006-09-23 01:14:35 GMT Michael Poole <mdpoole@troilus.org>     patch-49
177
178     Summary:
179       ioset event handling fixups
180     Revision:
181       srvx--devo--1.3--patch-49
182
183     src/ioset.c (ioset_connect): Properly handle the situation if the connect
184         handler closes the fd.
185       (ioset_accept): Rename "old_active_fd" to "old_active" for consistency.
186       (ioset_buffered_read): Make sure we bail if the fd is closed.
187       (ioset_events): Handle 'readable' on a connecting fd as an error.
188
189     modified files:
190      ChangeLog src/ioset.c
191
192
193 2006-09-23 01:03:08 GMT Michael Poole <mdpoole@troilus.org>     patch-48
194
195     Summary:
196       Dummy handling fixes.
197     Revision:
198       srvx--devo--1.3--patch-48
199
200     src/proto-p10.c (irc_notice): Fix the conditions for sending message to
201         IRC.
202       (irc_privmsg): Likewise.
203       (parse_cleanup): Zero num_*_funcs when freeing the corresponding
204         arrays, so that DelUser() doesn't read after free.
205
206     modified files:
207      ChangeLog src/proto-p10.c
208
209
210 2006-09-23 00:58:27 GMT Michael Poole <mdpoole@troilus.org>     patch-47
211
212     Summary:
213       Fix hostmask generation for hostnames without dots.
214     Revision:
215       srvx--devo--1.3--patch-47
216
217     src/proto-common.c (generate_hostmask): Keep no-dot hostnames as the
218         mask -- mod-qserver can generate hostnames like "localhost".
219
220     modified files:
221      ChangeLog src/proto-common.c
222
223
224 2006-09-23 00:55:02 GMT Michael Poole <mdpoole@troilus.org>     patch-46
225
226     Summary:
227       Default qserver clients to being opers.
228     Revision:
229       srvx--devo--1.3--patch-46
230
231     src/mod-qserver.c (qserver_accept): Default dummy client to having
232         usermode +o, so they can use privileged services.
233
234     modified files:
235      ChangeLog src/mod-qserver.c
236
237
238 2006-09-23 00:52:48 GMT Michael Poole <mdpoole@troilus.org>     patch-45
239
240     Summary:
241       Further giveownership confirmation fixes.
242     Revision:
243       srvx--devo--1.3--patch-45
244
245     src/chanserv.c (CSMSG_CONFIRM_GIVEOWNERSHIP): Prepend * to account name.
246       (cmd_giveownership): Check invoker access to determine need for confirmation.
247
248     modified files:
249      ChangeLog src/chanserv.c
250
251
252 2006-09-22 03:33:25 GMT Michael Poole <mdpoole@troilus.org>     patch-44
253
254     Summary:
255       Fix comment about +O vs +o.
256     Revision:
257       srvx--devo--1.3--patch-44
258
259     src/hash.h (FLAGS_OPER): The user mode is actually +o, not +O.
260
261     modified files:
262      ChangeLog src/hash.h
263
264
265 2006-09-22 03:28:08 GMT Michael Poole <mdpoole@troilus.org>     patch-43
266
267     Summary:
268       Fix license notice for mod-qserver.c
269     Revision:
270       srvx--devo--1.3--patch-43
271
272     src/mod-qserver.c: Since this was for public distribution, use the
273         standard GPL header notice.
274
275     modified files:
276      ChangeLog src/mod-qserver.c
277
278
279 2006-09-22 03:05:54 GMT Michael Poole <mdpoole@troilus.org>     patch-42
280
281     Summary:
282       Add win32 specific files to tarballs.
283     Revision:
284       srvx--devo--1.3--patch-42
285
286     Makefile.am (EXTRA_DIST): Include Makefile.win32.
287     
288     src/Makefile.am (EXTRA_srvx_SOURCES): Include config.h.win32 and ioset-win32.c.
289
290     modified files:
291      ChangeLog Makefile.am src/Makefile.am
292
293
294 2006-09-22 03:02:07 GMT Michael Poole <mdpoole@troilus.org>     patch-41
295
296     Summary:
297       First pass at native Win32 support (does not compile).
298     Revision:
299       srvx--devo--1.3--patch-41
300
301     src/compat.h: Handle Windows Sockets 2 headers.
302     
303     src/mod-memoserv.c (KEY_READ): #undef'ine to avoid its registry access
304         meaning on Windows.
305     
306     Makefile.win32: New Makefile for native or cross builds targeting Win32.
307     
308     src/config.h.win32: Pregenerated config.h for Win32.
309     
310     src/ioset-win32.c: First attempt at a Win32 ioset backend.
311
312     new files:
313      .arch-ids/Makefile.win32.id Makefile.win32
314      src/.arch-ids/config.h.win32.id src/.arch-ids/ioset-win32.c.id
315      src/config.h.win32 src/ioset-win32.c
316
317     modified files:
318      ChangeLog src/compat.h src/mod-memoserv.c
319
320
321 2006-09-22 02:51:50 GMT Michael Poole <mdpoole@troilus.org>     patch-40
322
323     Summary:
324       Add direct query server module.
325     Revision:
326       srvx--devo--1.3--patch-40
327
328     srvx.conf.example: Document qserver configuration.
329     
330     src/Makefile.am (EXTRA_srvx_SOURCES): Add mod-qserver.c.
331     
332     src/mod-qserver.c: New file.
333
334     new files:
335      src/.arch-ids/mod-qserver.c.id src/mod-qserver.c
336
337     modified files:
338      ChangeLog src/Makefile.am src/ioset-epoll.c srvx.conf.example
339
340
341 2006-09-22 02:45:20 GMT Michael Poole <mdpoole@troilus.org>     patch-39
342
343     Summary:
344       Add epoll_* ioset backend.
345     Revision:
346       srvx--devo--1.3--patch-39
347
348     configure.in: Check for epoll_create(); demote select() from being required.
349     
350     src/Makefile.am (EXTRA_srvx_SOURCES): Add ioset-epoll.c.
351     
352     src/ioset-epoll.c: New file.
353
354     new files:
355      src/.arch-ids/ioset-epoll.c.id src/ioset-epoll.c
356
357     modified files:
358      ChangeLog configure.in src/Makefile.am
359
360
361 2006-09-22 02:38:21 GMT Michael Poole <mdpoole@troilus.org>     patch-38
362
363     Summary:
364       Allow multiple ioset backends.
365     Revision:
366       srvx--devo--1.3--patch-38
367
368     configure.in: Add framework to check for ioset backends.
369     
370     src/Makefile.am (noinst_DATA): Reorganize for easier patching.
371       (checkversion): Avoid spurious error message if $(GNU_ARCH) is missing.
372       (EXTRA_srvx_SOURCES): Reorganize for easier patching; add ioset-select.c.
373       (srvx_SOURCES): Add ioset-impl.h.
374     
375     src/ioset.c (ioset.h): #include "ioset-impl.h" instead.
376       (clock_skew): Make non-static for backends.
377       (engine): New variable.
378       (active_fd): New variable (kind of kludgy).
379       (io_engine_*): New variables, only one exists so far.
380       (ioset_init): New function.
381       (ioset_cleanup): Call engine's cleanup function.
382       (ioset_add): Call engine's add function.
383       (ioset_listen): New function.
384       (ioset_connect): Call engine's update functions at appropriate points.
385       (ioset_try_write): Call engine's update function on success.
386       (ioset_close): Change signature; check against active_fd; call engine's
387         remove function.
388       (ioset_accept): New function.
389       (ioset_buffered_read): Update fd->state instead of fd->eof and call
390         engine's update function as appropriate.  Use active_fd.
391       (ioset_line_read): Check fd->state instead of fd->eof.
392       (debug_fdsets): Move to ioset-select.c.
393       (ioset_events): New function.
394       (ioset_run): Move most of the logic into ioset-select loop function;
395         call it.  Rename "select_timeout" to "timeout" to match.
396       (ioset_write): Call engine->update function.
397       (ioset_printf): New function.
398     
399     src/ioset.h (common.h): #include this header to get PRINTF_LIKE macro.
400       (struct io_fd): Replace 'connected' and 'eof' fields with 'state' field.
401       (ioset_init): Declare new function.
402       (ioset_listen): Declare new function.
403       (ioset_printf): Declare new function.
404       (ioset_close): Update signature.
405     
406     src/main.c (main): Call ioset_init().
407     
408     src/mod-sockcheck.c (sockcheck_free_client): Can unconditionally call
409         ioset_close() now.
410       (expand_var): Always use C99 type names.
411       (sockcheck_begin_test): Can unconditionally call ioset_close() now.
412       (sockcheck_read_conf): Only warn about unknown host if the user set
413         one; it is silly to arn about unknown host `(null)'.
414     
415     src/proto-common.c (socket_destroyed): Check fd->state rather than
416         fd->eof.
417       (close_socket): Update signature for ioset_close().
418
419     new files:
420      src/.arch-ids/ioset-impl.h.id src/.arch-ids/ioset-select.c.id
421      src/ioset-impl.h src/ioset-select.c
422
423     modified files:
424      ChangeLog configure.in src/Makefile.am src/ioset.c src/ioset.h
425      src/main.c src/mod-sockcheck.c src/proto-common.c
426
427
428 2006-09-22 02:15:55 GMT Michael Poole <mdpoole@troilus.org>     patch-37
429
430     Summary:
431       Add "dummy client" support.
432     Revision:
433       srvx--devo--1.3--patch-37
434
435     src/hash.h (FLAGS_DUMMY): New flag for non-propagated clients.
436       (IsDummy): Check it.
437     
438     src/helpfile.c (send_message): Allow sending to dummy clients.
439       (send_message_type): Likewise.
440     
441     src/proto-bahamut.c (irc_user): Bail if user is NULL or has a dummy nickname.
442       (deliver_to_dummy): New function.
443       (irc_privmsg): Try to deliver via dummy method before sending to IRC.
444       (irc_notice): Likewise.
445       (irc_notice_user): Likewise.
446       (AddUser): If the first user mode character is '*', mark as a dummy.
447       (DelUser): Unregister callback functions when destroying local clients.
448     
449     src/proto-p10.c (irc_user): Bail if user is NULL or has a dummy nickname.
450       (deliver_to_dummy): New function.
451       (irc_notice): Try to deliver via dummy method before sending to IRC.
452       (irc_notice_user): Likewise.
453       (irc_privmsg): Likewise.
454       (AddUser): If the first user mode character is '*', mark as a dummy.
455       (DelUser): Unregister callback functions when destroying local clients.
456
457     modified files:
458      ChangeLog src/hash.h src/helpfile.c src/proto-bahamut.c
459      src/proto-p10.c
460
461
462 2006-09-22 01:56:07 GMT Michael Poole <mdpoole@troilus.org>     patch-36
463
464     Summary:
465       Delete obsolete and non-propagated user modes.
466     Revision:
467       srvx--devo--1.3--patch-36
468
469     src/hash.h (FLAGS_LOCOP): Delete.
470       (FLAGS_SERVNOTICE): Delete.
471       (FLAGS_HELPER): Delete.
472       (IsServNotice): Delete.
473       (IsHelperIrcu): Delete.
474     
475     src/opserv.c (cmd_whois): Remove IsServNotice() or IsHelperIrcu().
476     
477     src/proto-bahamut.c (mod_usermode): Do not handle +O/+s/+h, we never see them.
478     
479     src/proto-p10.c (irc_user): Do not emit +s or +h, we never set them..
480       (mod_usermode): Do not handle +O/+s/+h, we never see them.
481
482     modified files:
483      ChangeLog src/hash.h src/opserv.c src/proto-bahamut.c
484      src/proto-p10.c
485
486
487 2006-09-22 01:48:00 GMT Michael Poole <mdpoole@troilus.org>     patch-35
488
489     Summary:
490       Merge AddService(), AddClone() into AddLocalUser()
491     Revision:
492       srvx--devo--1.3--patch-35
493
494     src/chanserv.c (init_chanserv): Convert AddService() call to AddLocalUser().
495     
496     src/global.c (init_global): Likewise.
497     
498     src/mod-helpserv.c (register_helpserv): Likewise.
499     
500     src/modcmd.c (cmd_service_add): Likewise.
501       (modcmd_load_bots): Likewise.
502     
503     src/nickserv.c (regex.h): Fall back to rxposix.h from local rx package.
504       (init_nickserv): Convert AddService() call to AddLocalUser().
505     
506     src/opserv.c (opserv_add_reserve): Convert AddClone() call to AddLocalUser().
507       (cmd_clone): Likewise.
508       (add_reserved): Likewise.
509       (init_opserv): Convert AddService() call to AddLocalUser().
510     
511     src/proto-bahamut.c (AddService): Convert into AddLocalUser().
512       (AddClone): Delete.
513     
514     src/proto-p10.c (AddService): Convert into AddLocalUser().
515       (AddClone): Delete.
516     
517     src/proto.h (AddService): Convert into AddLocalUser().
518       (AddClone): Delete.
519
520     modified files:
521      ChangeLog src/chanserv.c src/global.c src/mod-helpserv.c
522      src/modcmd.c src/nickserv.c src/opserv.c src/proto-bahamut.c
523      src/proto-p10.c src/proto.h
524
525
526 2006-09-22 01:35:03 GMT Michael Poole <mdpoole@troilus.org>     patch-34
527
528     Summary:
529       Make IRC message handler 'text' const.
530     Revision:
531       srvx--devo--1.3--patch-34
532
533     src/chanserv.c (chanserv_ctcp_check): Make 'text' parameter const.
534     
535     src/mod-helpserv.c (helpserv_usermsg): Likewise.
536       (helpserv_botmsg): Likewise.
537     
538     src/modcmd.c (svccmd_invoke): Likewise.
539       (modcmd_privmsg): Likewise.
540       (modcmd_chanmsg): Likewise.
541     
542     src/modcmd.h (SVCMSG_HOOK): Likewise.
543     
544     src/proto.h (chanmsg_func_t): Likewise.
545       (privmsg_func_t): Likewise.
546
547     modified files:
548      ChangeLog src/chanserv.c src/mod-helpserv.c src/modcmd.c
549      src/modcmd.h src/proto.h
550
551
552 2006-09-22 01:23:43 GMT Michael Poole <mdpoole@troilus.org>     patch-33
553
554     Summary:
555       Add autogen.sh to distribution tarball.
556     Revision:
557       srvx--devo--1.3--patch-33
558
559     Makefile.am: Add autogen.sh to the "extra" distributed files.
560
561     modified files:
562      ChangeLog Makefile.am
563
564
565 2006-09-11 01:03:14 GMT Michael Poole <mdpoole@troilus.org>     patch-32
566
567     Summary:
568       Support and use G-line lastmod timestamp.
569     Revision:
570       srvx--devo--1.3--patch-32
571
572     src/gline.c (KEY_LASTMOD): New key string.
573       (gline_add): Use new parameter to set lastmod.
574       (gline_add_record): Look for KEY_LASTMOD values.
575       (gline_write_entry): Set KEY_LASTMOD if lastmod is set.
576       (gline_discrim_create): Allow specification of lastmod criteria.
577       (gline_discrim_match): Check lastmod if appropriate.
578     
579     src/gline.h (struct gline): Add lastmod field.
580       (struct gline_discrim): Add lastmod fields.
581       (gline_add): New parameter.
582     
583     src/mod-sockcheck.c (sockcheck_issue_gline): Set lastmod.
584     
585     src/opserv.c (OSMSG_NO_GLINE): New format string.
586       (opserv_block): Set lastmod.
587       (cmd_gline): Set lastmod.
588       (cmd_stats_glines): Allow searching for a particular G-line (just like
589         gtrace).
590       (opserv_new_user_check): Set lastmod.
591       (gtrace_print_func): Use intervals rather than fixed dates and show
592         lastmod.
593     
594     src/opserv.help (GTRACE CRITERIA): Mention lastmod criteria.
595     
596     src/proto-p10.c (irc_gline): Send lastmod if it is set.
597       (cmd_num_gline): Parse out lastmod if it is set.
598       (cmd_gline): Parse out lastmod if it is set.
599
600     modified files:
601      ChangeLog src/gline.c src/gline.h src/mod-sockcheck.c
602      src/opserv.c src/opserv.help src/proto-p10.c
603
604
605 2006-09-09 21:37:28 GMT Michael Poole <mdpoole@troilus.org>     patch-31
606
607     Summary:
608       Network event handler fixup when ChanServ is disabled.
609     Revision:
610       srvx--devo--1.3--patch-31
611
612     src/chanserv.c (init_chanserv): Do not register network event handlers if
613         ChanServ is disabled.
614
615     modified files:
616      ChangeLog src/chanserv.c
617
618
619 2006-09-03 15:24:48 GMT Michael Poole <mdpoole@troilus.org>     patch-30
620
621     Summary:
622       Make srvx compile on cygwin again.
623     Revision:
624       srvx--devo--1.3--patch-30
625
626     configure.in (AC_CHECK_HEADERS): Look for <arpa/inet.h>.
627       (AC_CHECK_FUNCS): Look for inet_aton().
628     
629     src/compat.c: Try to include <arpa/inet.h> so we get inet_addr().
630       (getaddrinfo): If inet_aton() is not provided, use inet_addr() instead.
631     
632     src/compat.h (AI_NUMERICHOST): Define this too.
633     
634     src/tools.c (irc_pton): Use the pedantically correct type for ip4.
635
636     modified files:
637      ChangeLog configure.in src/compat.c src/compat.h src/tools.c
638
639
640 2006-09-03 15:21:10 GMT Michael Poole <mdpoole@troilus.org>     patch-29
641
642     Summary:
643       DelChannelUser call and semantic fixups
644     Revision:
645       srvx--devo--1.3--patch-29
646
647     src/hash.c (DelChannel): Fix type of 'reason' arg to DelChannelUser().
648       (DelChannelUser): Only send part message if user is local.
649     
650     src/proto-bahamut.c (DelUser): Unswap arguments to DelChannelUser().
651       (cmd_part): Move to proto-common.c.
652     
653     src/proto-common.c (part_desc): New structure type.
654       (part_helper): Use it to capture user and reason.
655       (cmd_part): New common function.
656     
657     src/proto-p10.c (cmd_part): Move to proto-common.c.
658       (DelUser): Unswap arguments to DelChannelUser().
659
660     modified files:
661      ChangeLog src/hash.c src/proto-bahamut.c src/proto-common.c
662      src/proto-p10.c
663
664
665 2006-09-03 15:17:05 GMT Michael Poole <mdpoole@troilus.org>     patch-28
666
667     Summary:
668       Do not try to moderate join-flood channels with no OpServ.
669     Revision:
670       srvx--devo--1.3--patch-28
671
672     src/opserv.c (opserv_join_check): As feigling points out, it is bad for a
673         service that does not exist to join a channel and hack modes.
674
675     modified files:
676      ChangeLog src/opserv.c
677
678
679 2006-09-03 15:13:31 GMT Michael Poole <mdpoole@troilus.org>     patch-27
680
681     Summary:
682       Fix ounregnick access check.
683     Revision:
684       srvx--devo--1.3--patch-27
685
686     src/nickserv.c (cmd_ounregnick): Use the standard rank-checking function.
687
688     modified files:
689      ChangeLog src/nickserv.c
690
691
692 2006-09-03 15:11:29 GMT Michael Poole <mdpoole@troilus.org>     patch-26
693
694     Summary:
695       Fix giveownership to how it should be
696     Revision:
697       srvx--devo--1.3--patch-26
698
699     src/chanserv.c (cmd_giveownership): Only require confirmation code if the
700       user has real (normal) access and is not forcing the giveownership.
701
702     modified files:
703      ChangeLog
704
705
706 2006-09-03 15:10:58 GMT Michael Poole <mdpoole@troilus.org>     patch-25
707
708     Summary:
709       Fix giveownership to how it should be
710     Revision:
711       srvx--devo--1.3--patch-25
712
713     src/chanserv.c (cmd_giveownership): Only require confirmation code if the
714       user has real (normal) access and is not forcing the giveownership.
715
716     modified files:
717      ChangeLog src/chanserv.c
718
719
720 2006-08-19 13:31:08 GMT Michael Poole <mdpoole@troilus.org>     patch-24
721
722     Summary:
723       Mark channels as visited when high-level users leave.
724     Revision:
725       srvx--devo--1.3--patch-24
726
727     src/chanserv.c (handle_part): At ThiefMaster's suggestion, update a
728       channel's visited time when a high-level user leaves (parts, gets
729       kicked, or quits).
730
731     modified files:
732      ChangeLog src/chanserv.c
733
734
735 2006-08-07 03:11:10 GMT Michael Poole <mdpoole@troilus.org>     patch-23
736
737     Summary:
738       Require confirmation cookie for giveownership.
739     Revision:
740       srvx--devo--1.3--patch-23
741
742     src/chanserv.c (CSMSG_CONFIRM_GIVEOWNERSHIP): New translation string.
743       (cmd_giveownership): Fail for non-force unconfirmed giveownerships.
744
745     modified files:
746      ChangeLog src/chanserv.c
747
748
749 2006-07-29 01:36:39 GMT Michael Poole <mdpoole@troilus.org>     patch-22
750
751     Summary:
752       Add CSMSG_INVALID_CFLAG string.
753     Revision:
754       srvx--devo--1.3--patch-22
755
756     src/chanserv.c (msgtab): Add entry for "CSMSG_INVALID_CFLAG".
757
758     modified files:
759      ChangeLog src/chanserv.c
760
761
762 2006-07-29 01:34:17 GMT Michael Poole <mdpoole@troilus.org>     patch-21
763
764     Summary:
765       Fix ?csearch max timestamp default value.
766     Revision:
767       srvx--devo--1.3--patch-21
768
769     src/opserv.c (opserv_cdiscrim_create): Fix default value for max_ts.
770         (With an expression only a coder could love.  Improvements wanted.)
771
772     modified files:
773      ChangeLog src/opserv.c
774
775
776 2006-07-18 03:13:31 GMT Michael Poole <mdpoole@troilus.org>     patch-20
777
778     Summary:
779       Update arch-inventory files for in-tree builds.
780     Revision:
781       srvx--devo--1.3--patch-20
782
783     .arch-inventory: Add "libtool" as a preserved file.
784     
785     src/.arch-inventory: Add ".libs" as a preserved directory.  Put a \
786         before the . in .cvsignore to avoid capturing too much.
787
788     modified files:
789      .arch-inventory ChangeLog src/.arch-inventory
790
791
792 2006-07-18 02:48:32 GMT Michael Poole <mdpoole@troilus.org>     patch-19
793
794     Summary:
795       Make !bans searching more flexible
796     Revision:
797       srvx--devo--1.3--patch-19
798
799     src/chanserv.c (cmd_bans): Allow specifying a complete hostmask or a
800         nickname when searching bans.
801     
802     src/chanserv.help (BANS): Document the searching functions.
803
804     modified files:
805      ChangeLog src/chanserv.c src/chanserv.help
806
807
808 2006-07-18 01:49:56 GMT Michael Poole <mdpoole@troilus.org>     patch-18
809
810     Summary:
811       Simplify cdiscrim_match() max tests.
812     Revision:
813       srvx--devo--1.3--patch-18
814
815     src/opserv.c (opserv_cdiscrim_create): Explicitly initialize max_users
816         and max_ts.
817       (cdiscrim_match): Simplify the bounds tests for timestamp and users.
818
819     modified files:
820      ChangeLog src/opserv.c
821
822
823 2006-07-18 01:46:10 GMT Michael Poole <mdpoole@troilus.org>     patch-17
824
825     Summary:
826       Fix reclaim KILL behavior.
827     Revision:
828       srvx--devo--1.3--patch-17
829
830     src/nickserv.c (nickserv_reclaim): Use DelUser() instead of irc_kill(),
831         so that srvx's databases are appropriately updated.
832
833     modified files:
834      ChangeLog src/nickserv.c
835
836
837 2006-07-18 01:12:16 GMT Michael Poole <mdpoole@troilus.org>     patch-16
838
839     Summary:
840       Fix typo in English error message text.
841     Revision:
842       srvx--devo--1.3--patch-16
843
844     src/chanserv.c (CSMSG_TOPICMASK_CONFLICT2): Add missing "is".  Reported
845       by Harm, by way of Byte.
846
847     modified files:
848      ChangeLog src/chanserv.c
849
850
851 2006-05-14 02:54:24 GMT Michael Poole <mdpoole@troilus.org>     patch-15
852
853     Summary:
854       Update version tag for 1.3.1 release.
855     Revision:
856       srvx--devo--1.3--patch-15
857
858     configure.in: Update version tag for 1.3.1 release.
859
860     modified files:
861      ChangeLog configure.in
862
863
864 2006-05-02 02:46:39 GMT Michael Poole <mdpoole@troilus.org>     patch-14
865
866     Summary:
867       Make some ChanServ ban checks see through hidden hosts.
868     Revision:
869       srvx--devo--1.3--patch-14
870
871     src/chanserv.c (handle_join): Make this function see through hidden
872         hosts when matching users against bans.  Add comment before the
873         non-burst section; remove a redundant burst check there.
874       (handle_auth): See through hidden hosts when checking against active
875         bans.  Inactive ban check keeps MATCH_VISIBLE since bans on the true
876         hostname should have already been applied.
877       (handle_nick_change): Same as handle_auth.
878
879     modified files:
880      ChangeLog src/chanserv.c
881
882
883 2006-04-29 03:11:35 GMT Michael Poole <mdpoole@troilus.org>     patch-13
884
885     Summary:
886       Fix visible matching for fake and +x-hidden hosts.
887     Revision:
888       srvx--devo--1.3--patch-13
889
890     src/tools.c (user_matches_glob): Use correct test to determine whether
891         the user's host is hidden.
892
893     modified files:
894      ChangeLog src/tools.c
895
896
897 2006-04-07 00:56:38 GMT Michael Poole <mdpoole@troilus.org>     patch-12
898
899     Summary:
900       Fix a +o mode parsing error.
901     Revision:
902       srvx--devo--1.3--patch-12
903
904     src/proto-p10.c (mod_chanmode_parse): Check that the input argument after
905         +o is a valid one.
906
907     modified files:
908      ChangeLog src/proto-p10.c
909
910
911 2006-04-06 02:19:47 GMT Michael Poole <mdpoole@troilus.org>     patch-11
912
913     Summary:
914       Fix some IPv6 address compatibility issues.
915     Revision:
916       srvx--devo--1.3--patch-11
917
918     src/proto-p10.c (irc_p10_pton): Mark valid IPv4 addresses as v4-mapped.
919       (irc_p10_ntop): Emit invalid IPs as AAAAAA (but it could be _ for +6
920         flagged hubs).
921
922     modified files:
923      ChangeLog src/proto-p10.c
924
925
926 2006-04-05 02:07:30 GMT Michael Poole <mdpoole@troilus.org>     patch-10
927
928     Summary:
929       Fix a possible warning without debugging.
930     Revision:
931       srvx--devo--1.3--patch-10
932
933     src/alloc-slab.c (slab_unalloc): If assert() is #define'd to be empty,
934         then size is unused.  Include a (void)size to quash a warning.
935
936     modified files:
937      ChangeLog src/alloc-slab.c
938
939
940 2006-04-05 02:02:21 GMT Michael Poole <mdpoole@troilus.org>     patch-9
941
942     Summary:
943       Fix hostmask error from last year's patch-28.
944     Revision:
945       srvx--devo--1.3--patch-9
946
947     src/proto-common.c (generate_hostmask): When generating a strict hostmask
948         not by IP, we should keep the original hostname.
949
950     modified files:
951      ChangeLog src/proto-common.c
952
953
954 2006-04-05 01:59:54 GMT Michael Poole <mdpoole@troilus.org>     patch-8
955
956     Summary:
957       Fix compilation error with slab allocator and no debugging.
958     Revision:
959       srvx--devo--1.3--patch-8
960
961     src/alloc-slab.c (verify): Undefine as a macro before defining as a
962         function.
963
964     modified files:
965      ChangeLog src/alloc-slab.c
966
967
968 2006-04-05 00:24:50 GMT Michael Poole <mdpoole@troilus.org>     patch-7
969
970     Summary:
971       Fix backtracking bug after an escaped character.
972     Revision:
973       srvx--devo--1.3--patch-7
974
975     src/tools.c (match_ircglob): Fix backtracking behavior when an escaped
976         character did not match.
977
978     modified files:
979      ChangeLog src/tools.c
980
981
982 2006-04-05 00:11:31 GMT Michael Poole <mdpoole@troilus.org>     patch-6
983
984     Summary:
985       Advise the kernel that we will scan DB files sequentially.
986     Revision:
987       srvx--devo--1.3--patch-6
988
989     src/recdb.c (parse_database): Advise the kernel that we will scan the
990         recdb file sequentially, just in case it cannot notice the access
991         pattern on its own.
992
993     modified files:
994      ChangeLog src/recdb.c
995
996
997 2006-04-05 00:09:48 GMT Michael Poole <mdpoole@troilus.org>     patch-5
998
999     Summary:
1000       Correctly implement AsLL pong.
1001     Revision:
1002       srvx--devo--1.3--patch-5
1003
1004     src/proto-p10.c (irc_pong_asll): New function.
1005       (cmd_ping): Use it.
1006
1007     modified files:
1008      ChangeLog src/proto-p10.c
1009
1010
1011 2006-04-05 00:08:04 GMT Michael Poole <mdpoole@troilus.org>     patch-4
1012
1013     Summary:
1014       Add missing underscore in translation key string.
1015     Revision:
1016       srvx--devo--1.3--patch-4
1017
1018     src/mod-helpserv.c (helpserv_usermsg): Add a missing underscore between
1019         REQUEST and NOT.
1020
1021     modified files:
1022      ChangeLog src/mod-helpserv.c
1023
1024
1025 2006-04-05 00:05:59 GMT Michael Poole <mdpoole@troilus.org>     patch-3
1026
1027     Summary:
1028       Update configure.in; support both baz and tla; avoid using dirent.
1029     Revision:
1030       srvx--devo--1.3--patch-3
1031
1032     configure.in: Remove AC_PROG_RANLIB since we never use ranlib.  Add
1033         AC_PROG_LIBTOOL since we do use libtool.  Set GNU_ARCH and
1034         HAS_GNU_ARCH based on whether the system has baz or tla.  Do not
1035         check for dirent.d_type.
1036     
1037     src/Makefile.am: Make the "checkversion" target conditional on
1038         HAS_GNU_ARCH, and use the detected $(GNU_ARCH).
1039     
1040     src/helpfile.c (language_read): Report error text when unable to open a
1041         language directory.
1042       (language_read_list): Always stat the language entry to determine
1043         whether it is a directory; Cygwin has no dirent.d_type and ReiserFS
1044         has a broken one.
1045
1046     modified files:
1047      ChangeLog configure.in src/Makefile.am src/helpfile.c
1048
1049
1050 2006-04-05 00:00:57 GMT Michael Poole <mdpoole@troilus.org>     patch-2
1051
1052     Summary:
1053       Update ChangeLog (again?!), ltmain.sh and rx/Makefile.in
1054     Revision:
1055       srvx--devo--1.3--patch-2
1056
1057     ChangeLog: Update again (it didn't take, for some strange reason).
1058     
1059     ltmain.sh: Update to current version.
1060     
1061     rx/Makefile.in: Regenerate to match.
1062
1063     modified files:
1064      ChangeLog ltmain.sh rx/Makefile.in
1065
1066
1067 2006-04-04 23:58:31 GMT Michael Poole <mdpoole@troilus.org>     patch-1
1068
1069     Summary:
1070       Rotate ChangeLog for the new year's archive.
1071     Revision:
1072       srvx--devo--1.3--patch-1
1073
1074     ChangeLog: Update for the new year's archive.
1075
1076     modified files:
1077      .arch-ids/ChangeLog.id ChangeLog
1078
1079
1080 2006-04-04 23:42:39 GMT Michael Poole <mdpoole@troilus.org>     base-0
1081
1082     Summary:
1083       tag of srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-36
1084     Revision:
1085       srvx--devo--1.3--base-0
1086
1087     (automatically generated log message)
1088
1089     new patches:
1090      sp@gamesurge.net--2005/srvx--sp--1.3--patch-1
1091      sp@gamesurge.net--2005/srvx--sp--1.3--patch-2
1092      srvx@srvx.net--2004-srvx/srvx--devo--1.3--base-0
1093      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-1
1094      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-2
1095      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-3
1096      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-4
1097      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-5
1098      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-6
1099      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-7
1100      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-8
1101      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-9
1102      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-10
1103      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-11
1104      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-12
1105      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-13
1106      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-14
1107      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-15
1108      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-16
1109      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-17
1110      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-18
1111      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-19
1112      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-20
1113      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-21
1114      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-22
1115      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-23
1116      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-24
1117      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-25
1118      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-26
1119      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-27
1120      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-28
1121      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-29
1122      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-30
1123      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-31
1124      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-32
1125      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-33
1126      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-34
1127      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-35
1128      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-36
1129      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-37
1130      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-38
1131      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-39
1132      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-40
1133      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-41
1134      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-42
1135      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-43
1136      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-44
1137      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-45
1138      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-46
1139      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-47
1140      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-48
1141      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-49
1142      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-50
1143      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-51
1144      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-52
1145      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-53
1146      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-54
1147      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-55
1148      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-56
1149      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-57
1150      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-58
1151      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-59
1152      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-60
1153      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-61
1154      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-62
1155      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-63
1156      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-64
1157      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-65
1158      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-66
1159      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-67
1160      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-68
1161      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-69
1162      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-70
1163      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-71
1164      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-72
1165      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-73
1166      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-74
1167      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-75
1168      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-76
1169      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-77
1170      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-78
1171      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-79
1172      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-80
1173      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-81
1174      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-82
1175      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-83
1176      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-84
1177      srvx@srvx.net--2005-srvx/srvx--devo--1.3--base-0
1178      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-1
1179      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-2
1180      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-3
1181      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-4
1182      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-5
1183      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-6
1184      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-7
1185      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-8
1186      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-9
1187      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-10
1188      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-11
1189      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-12
1190      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-13
1191      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-14
1192      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-15
1193      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-16
1194      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-17
1195      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-18
1196      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-19
1197      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-20
1198      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-21
1199      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-22
1200      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-23
1201      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-24
1202      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-25
1203      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-26
1204      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-27
1205      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-28
1206      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-29
1207      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-30
1208      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-31
1209      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-32
1210      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-33
1211      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-34
1212      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-35
1213      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-36
1214
1215