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