PasteSite.Com

Recent Pastes

Sign Up!

PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...

Change the theme

If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
[Jan 29 19:58:32 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 19:58:32 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 19:58:32 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:32 2009] Loading Encryption Module: [enc_none]
[Jan 29 19:58:32 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:32 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up
[Jan 29 19:58:32 2009] ms_rsend requested unload...
[Jan 29 19:58:32 2009] debug: trying to load core module [ms_rsend]
[Jan 29 19:58:32 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 19:58:32 2009] Databases loaded
[Jan 29 19:58:32 2009] Info: Reflecting database records.
[Jan 29 19:58:32 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 19:58:32 2009] trying to load [cs_appendtopic]
[Jan 29 19:58:32 2009] [cs_appendtopic] Loaded successfully
[Jan 29 19:58:32 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:32 2009] trying to load [cs_enforce]
[Jan 29 19:58:32 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:32 2009] trying to load [ns_maxemail]
[Jan 29 19:58:32 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:32 2009] trying to load [os_info]
[Jan 29 19:58:32 2009] os_info: Loading configuration directives...
[Jan 29 19:58:32 2009] os_info: OSInfoDBName is not defined in Services configuration file, using default os_info.db
[Jan 29 19:58:32 2009] os_info: Directive OSInfoDBName loaded (os_info.db)...
[Jan 29 19:58:32 2009] os_info: WARNING: can not open the database file! (it might not exist, this is not fatal)
[Jan 29 19:58:32 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:32 2009] trying to load [hs_request]
[Jan 29 19:58:32 2009] [hs_request] Unable to open database ('hs_request.db') for reading
[Jan 29 19:58:32 2009] hs_request loaded
[Jan 29 19:58:32 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:33 2009] user: New maximum user count: 1
[Jan 29 19:58:33 2009] Server irc.uswave.net is done syncing
[Jan 29 19:58:41 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 19:58:41 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 19:58:41 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:41 2009] Loading Encryption Module: [enc_none]
[Jan 29 19:58:41 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.366344 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up (options: debug)
[Jan 29 19:58:41.366727 2009] debug: Loading language 10 from file `languages/cat'
[Jan 29 19:58:41.376282 2009] debug: Loading language 9 from file `languages/de'
[Jan 29 19:58:41.386788 2009] debug: Loading language 0 from file `languages/en_us'
[Jan 29 19:58:41.396114 2009] debug: Loading language 4 from file `languages/es'
[Jan 29 19:58:41.406330 2009] debug: Loading language 6 from file `languages/fr'
[Jan 29 19:58:41.416204 2009] debug: Loading language 11 from file `languages/gr'
[Jan 29 19:58:41.426593 2009] debug: Loading language 5 from file `languages/pt'
[Jan 29 19:58:41.435877 2009] debug: Loading language 7 from file `languages/tr'
[Jan 29 19:58:41.445647 2009] debug: Loading language 8 from file `languages/it'
[Jan 29 19:58:41.455376 2009] debug: Loading language 12 from file `languages/nl'
[Jan 29 19:58:41.465034 2009] debug: Loading language 13 from file `languages/ru'
[Jan 29 19:58:41.474681 2009] debug: Loading language 14 from file `languages/hun'
[Jan 29 19:58:41.484319 2009] debug: Loading language 15 from file `languages/pl'
[Jan 29 19:58:41.505203 2009] debug: Loaded languages
[Jan 29 19:58:41.505587 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_help.so.e9HPAc
[Jan 29 19:58:41.507181 2009] Module ns_help compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.507473 2009] debug: trying to load core module [ns_help]
[Jan 29 19:58:41.507706 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.508029 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_register.so.h7nav5
[Jan 29 19:58:41.510738 2009] Module ns_register compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.511051 2009] debug: trying to load core module [ns_register]
[Jan 29 19:58:41.511295 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.511619 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_group.so.UZ87pY
[Jan 29 19:58:41.514000 2009] Module ns_group compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.514295 2009] debug: trying to load core module [ns_group]
[Jan 29 19:58:41.514536 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.514876 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_identify.so.x8rFlR
[Jan 29 19:58:41.517055 2009] Module ns_identify compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.517347 2009] debug: trying to load core module [ns_identify]
[Jan 29 19:58:41.517589 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.517938 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_access.so.wmPJhK
[Jan 29 19:58:41.519669 2009] Module ns_access compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.519962 2009] debug: trying to load core module [ns_access]
[Jan 29 19:58:41.520204 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.520545 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_set.so.t5EgeD
[Jan 29 19:58:41.523008 2009] Module ns_set compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.523322 2009] debug: trying to load core module [ns_set]
[Jan 29 19:58:41.523566 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.523889 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_saset.so.Uj0nbw
[Jan 29 19:58:41.526919 2009] Module ns_saset compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.527252 2009] debug: trying to load core module [ns_saset]
[Jan 29 19:58:41.527495 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.527833 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_drop.so.VKdc9o
[Jan 29 19:58:41.529675 2009] Module ns_drop compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.529965 2009] debug: trying to load core module [ns_drop]
[Jan 29 19:58:41.530208 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.530546 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_recover.so.YqLt7h
[Jan 29 19:58:41.532295 2009] Module ns_recover compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.532589 2009] debug: trying to load core module [ns_recover]
[Jan 29 19:58:41.532828 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.533169 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_release.so.nu1d6a
[Jan 29 19:58:41.534867 2009] Module ns_release compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.535188 2009] debug: trying to load core module [ns_release]
[Jan 29 19:58:41.535430 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.535819 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_sendpass.so.YrXq53
[Jan 29 19:58:41.537813 2009] Module ns_sendpass compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.538109 2009] debug: trying to load core module [ns_sendpass]
[Jan 29 19:58:41.538349 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.538695 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_ghost.so.pIh94W
[Jan 29 19:58:41.540347 2009] Module ns_ghost compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.540650 2009] debug: trying to load core module [ns_ghost]
[Jan 29 19:58:41.540889 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.541291 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_alist.so.26Bj5P
[Jan 29 19:58:41.543060 2009] Module ns_alist compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.543345 2009] debug: trying to load core module [ns_alist]
[Jan 29 19:58:41.543583 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.543929 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_info.so.N9QW5I
[Jan 29 19:58:41.546292 2009] Module ns_info compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.546585 2009] debug: trying to load core module [ns_info]
[Jan 29 19:58:41.546827 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.547191 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_list.so.cjh96B
[Jan 29 19:58:41.549057 2009] Module ns_list compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.549351 2009] debug: trying to load core module [ns_list]
[Jan 29 19:58:41.549587 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.550065 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_logout.so.vDDP8u
[Jan 29 19:58:41.551875 2009] Module ns_logout compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.552184 2009] debug: trying to load core module [ns_logout]
[Jan 29 19:58:41.552424 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.552818 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_status.so.Olm1ao
[Jan 29 19:58:41.554645 2009] Module ns_status compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.554959 2009] debug: trying to load core module [ns_status]
[Jan 29 19:58:41.555235 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.555587 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_update.so.ZjcHdh
[Jan 29 19:58:41.557527 2009] Module ns_update compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.557816 2009] debug: trying to load core module [ns_update]
[Jan 29 19:58:41.558054 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.558400 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_getpass.so.OgGRga
[Jan 29 19:58:41.560320 2009] Module ns_getpass compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.560632 2009] debug: trying to load core module [ns_getpass]
[Jan 29 19:58:41.560871 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.561218 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_getemail.so.XFPwk3
[Jan 29 19:58:41.562881 2009] Module ns_getemail compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.563176 2009] debug: trying to load core module [ns_getemail]
[Jan 29 19:58:41.563414 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.563782 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_forbid.so.WlLDoW
[Jan 29 19:58:41.565719 2009] Module ns_forbid compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.566018 2009] debug: trying to load core module [ns_forbid]
[Jan 29 19:58:41.566257 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.566609 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_suspend.so.DqtftP
[Jan 29 19:58:41.568417 2009] Module ns_suspend compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.568714 2009] debug: trying to load core module [ns_suspend]
[Jan 29 19:58:41.568950 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.569298 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_help.so.sVvkyI
[Jan 29 19:58:41.571360 2009] Module cs_help compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.571702 2009] debug: trying to load core module [cs_help]
[Jan 29 19:58:41.571942 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.572277 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_register.so.hc2VDB
[Jan 29 19:58:41.574631 2009] Module cs_register compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.574930 2009] debug: trying to load core module [cs_register]
[Jan 29 19:58:41.575205 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.575546 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_identify.so.skW6Ju
[Jan 29 19:58:41.577524 2009] Module cs_identify compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.577809 2009] debug: trying to load core module [cs_identify]
[Jan 29 19:58:41.578048 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.578389 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_set.so.v0LMQn
[Jan 29 19:58:41.581960 2009] Module cs_set compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.582324 2009] debug: trying to load core module [cs_set]
[Jan 29 19:58:41.582571 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.582903 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_xop.so.aiUfYg
[Jan 29 19:58:41.585699 2009] Module cs_xop compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.586011 2009] debug: trying to load core module [cs_xop]
[Jan 29 19:58:41.586254 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.586595 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_access.so.T3Zm69
[Jan 29 19:58:41.589527 2009] Module cs_access compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.589823 2009] debug: trying to load core module [cs_access]
[Jan 29 19:58:41.590066 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.590412 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_akick.so.kyr9e3
[Jan 29 19:58:41.593594 2009] Module cs_akick compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.593880 2009] debug: trying to load core module [cs_akick]
[Jan 29 19:58:41.594119 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.594460 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_drop.so.fQ3DoW
[Jan 29 19:58:41.596530 2009] Module cs_drop compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.596817 2009] debug: trying to load core module [cs_drop]
[Jan 29 19:58:41.597057 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.597398 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_sendpass.so.WcMEyP
[Jan 29 19:58:41.599302 2009] Module cs_sendpass compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.599590 2009] debug: trying to load core module [cs_sendpass]
[Jan 29 19:58:41.599833 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.600173 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_ban.so.J8w9II
[Jan 29 19:58:41.602565 2009] Module cs_ban compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.602870 2009] debug: trying to load core module [cs_ban]
[Jan 29 19:58:41.603117 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.603465 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_clear.so.AueeUB
[Jan 29 19:58:41.606376 2009] Module cs_clear compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.606660 2009] debug: trying to load core module [cs_clear]
[Jan 29 19:58:41.606899 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.607237 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_modes.so.JxSX5u
[Jan 29 19:58:41.609861 2009] Module cs_modes compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.610179 2009] debug: trying to load core module [cs_modes]
[Jan 29 19:58:41.610423 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.610796 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_getkey.so.Gi8jio
[Jan 29 19:58:41.612650 2009] Module cs_getkey compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.612932 2009] debug: trying to load core module [cs_getkey]
[Jan 29 19:58:41.613170 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.613507 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_invite.so.7AX9uh
[Jan 29 19:58:41.615429 2009] Module cs_invite compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.615720 2009] debug: trying to load core module [cs_invite]
[Jan 29 19:58:41.615960 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.616313 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_kick.so.MqauIa
[Jan 29 19:58:41.618368 2009] Module cs_kick compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.618653 2009] debug: trying to load core module [cs_kick]
[Jan 29 19:58:41.618891 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.619231 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_list.so.xN4jW3
[Jan 29 19:58:41.621349 2009] Module cs_list compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.621635 2009] debug: trying to load core module [cs_list]
[Jan 29 19:58:41.621875 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.622219 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_logout.so.2FGGaX
[Jan 29 19:58:41.624311 2009] Module cs_logout compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.624597 2009] debug: trying to load core module [cs_logout]
[Jan 29 19:58:41.624835 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.625232 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_topic.so.tE0zpQ
[Jan 29 19:58:41.627416 2009] Module cs_topic compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.627700 2009] debug: trying to load core module [cs_topic]
[Jan 29 19:58:41.627937 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.628286 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_info.so.0Vm0EJ
[Jan 29 19:58:41.630580 2009] Module cs_info compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.630871 2009] debug: trying to load core module [cs_info]
[Jan 29 19:58:41.631109 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.631449 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_getpass.so.xDlZUC
[Jan 29 19:58:41.633278 2009] Module cs_getpass compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.633567 2009] debug: trying to load core module [cs_getpass]
[Jan 29 19:58:41.633806 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.634146 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_forbid.so.8qwrbw
[Jan 29 19:58:41.636246 2009] Module cs_forbid compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.636534 2009] debug: trying to load core module [cs_forbid]
[Jan 29 19:58:41.636775 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.637121 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_suspend.so.XVYpsp
[Jan 29 19:58:41.639140 2009] Module cs_suspend compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.639430 2009] debug: trying to load core module [cs_suspend]
[Jan 29 19:58:41.639714 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.640069 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_status.so.cQxUJi
[Jan 29 19:58:41.641909 2009] Module cs_status compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.642199 2009] debug: trying to load core module [cs_status]
[Jan 29 19:58:41.642438 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.642810 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ms_send.so.BxUS1b
[Jan 29 19:58:41.644781 2009] Module ms_send compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.645095 2009] debug: trying to load core module [ms_send]
[Jan 29 19:58:41.645343 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.645701 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ms_cancel.so.w9rmk5
[Jan 29 19:58:41.647546 2009] Module ms_cancel compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.647833 2009] debug: trying to load core module [ms_cancel]
[Jan 29 19:58:41.648069 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.648416 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ms_list.so.5VIjDY
[Jan 29 19:58:41.650532 2009] Module ms_list compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.650818 2009] debug: trying to load core module [ms_list]
[Jan 29 19:58:41.651056 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.651399 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ms_read.so.mbENWR
[Jan 29 19:58:41.653705 2009] Module ms_read compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.653990 2009] debug: trying to load core module [ms_read]
[Jan 29 19:58:41.654232 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.654576 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ms_del.so.FX0PgL
[Jan 29 19:58:41.656776 2009] Module ms_del compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.657082 2009] debug: trying to load core module [ms_del]
[Jan 29 19:58:41.657323 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.657655 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ms_set.so.Mz0pBE
[Jan 29 19:58:41.659831 2009] Module ms_set compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.660115 2009] debug: trying to load core module [ms_set]
[Jan 29 19:58:41.660354 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.660691 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ms_info.so.dA0wWx
[Jan 29 19:58:41.662742 2009] Module ms_info compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.663027 2009] debug: trying to load core module [ms_info]
[Jan 29 19:58:41.663265 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.663615 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ms_rsend.so.Glx9hr
[Jan 29 19:58:41.665682 2009] Module ms_rsend compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.665965 2009] ms_rsend requested unload...
[Jan 29 19:58:41.666449 2009] debug: trying to load core module [ms_rsend]
[Jan 29 19:58:41.666709 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 19:58:41.667136 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ms_check.so.nQMoEk
[Jan 29 19:58:41.669182 2009] Module ms_check compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.669470 2009] debug: trying to load core module [ms_check]
[Jan 29 19:58:41.669711 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.670050 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ms_staff.so.Ylw90d
[Jan 29 19:58:41.671985 2009] Module ms_staff compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.672271 2009] debug: trying to load core module [ms_staff]
[Jan 29 19:58:41.672509 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.672856 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ms_sendall.so.Xzwoo7
[Jan 29 19:58:41.674776 2009] Module ms_sendall compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.675088 2009] debug: trying to load core module [ms_sendall]
[Jan 29 19:58:41.675338 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.675685 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ms_help.so.SZm8L0
[Jan 29 19:58:41.677495 2009] Module ms_help compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.677777 2009] debug: trying to load core module [ms_help]
[Jan 29 19:58:41.678018 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.678363 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_help.so.BrjlaU
[Jan 29 19:58:41.680159 2009] Module bs_help compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.680438 2009] debug: trying to load core module [bs_help]
[Jan 29 19:58:41.680676 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.681009 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_botlist.so.6pf1yN
[Jan 29 19:58:41.682856 2009] Module bs_botlist compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.683145 2009] debug: trying to load core module [bs_botlist]
[Jan 29 19:58:41.683383 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.683766 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_assign.so.NM8aYG
[Jan 29 19:58:41.685810 2009] Module bs_assign compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.686095 2009] debug: trying to load core module [bs_assign]
[Jan 29 19:58:41.686333 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.686670 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_set.so.yzrQnA
[Jan 29 19:58:41.688700 2009] Module bs_set compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.689009 2009] debug: trying to load core module [bs_set]
[Jan 29 19:58:41.689251 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.689599 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_kick.so.Psx1Nt
[Jan 29 19:58:41.691907 2009] Module bs_kick compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.692212 2009] debug: trying to load core module [bs_kick]
[Jan 29 19:58:41.692454 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.692795 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_badwords.so.yOCLen
[Jan 29 19:58:41.695245 2009] Module bs_badwords compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.695533 2009] debug: trying to load core module [bs_badwords]
[Jan 29 19:58:41.695770 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.696110 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_act.so.XpE5Fg
[Jan 29 19:58:41.698000 2009] Module bs_act compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.698284 2009] debug: trying to load core module [bs_act]
[Jan 29 19:58:41.698523 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.698867 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_info.so.KfGT79
[Jan 29 19:58:41.701184 2009] Module bs_info compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.701467 2009] debug: trying to load core module [bs_info]
[Jan 29 19:58:41.701705 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.702088 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_say.so.biLgA3
[Jan 29 19:58:41.704034 2009] Module bs_say compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.704321 2009] debug: trying to load core module [bs_say]
[Jan 29 19:58:41.704562 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.704948 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_unassign.so.auW82W
[Jan 29 19:58:41.708382 2009] Module bs_unassign compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.708665 2009] debug: trying to load core module [bs_unassign]
[Jan 29 19:58:41.708905 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.709251 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_bot.so.nBPLwQ
[Jan 29 19:58:41.711834 2009] Module bs_bot compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.712122 2009] debug: trying to load core module [bs_bot]
[Jan 29 19:58:41.712359 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.712705 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_fantasy.so.C9r00J
[Jan 29 19:58:41.714689 2009] Module bs_fantasy compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.714968 2009] Displaying message list for bot_command
[Jan 29 19:58:41.715245 2009] 1: 0x0x837f4f8
[Jan 29 19:58:41.715471 2009] end
[Jan 29 19:58:41.715700 2009] debug: trying to load core module [bs_fantasy]
[Jan 29 19:58:41.715934 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.716279 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_fantasy_kick.so.vcQRvD
[Jan 29 19:58:41.718135 2009] Module bs_fantasy_kick compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.718413 2009] debug: existing msg: (0x0x837f4f8), new msg (0x0x8380aa8)
[Jan 29 19:58:41.718654 2009] Displaying message list for bot_command
[Jan 29 19:58:41.718886 2009] 1: 0x0x8380aa8
[Jan 29 19:58:41.719113 2009] 2: 0x0x837f4f8
[Jan 29 19:58:41.719336 2009] end
[Jan 29 19:58:41.719571 2009] debug: trying to load core module [bs_fantasy_kick]
[Jan 29 19:58:41.719860 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.720204 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_fantasy_kickban.so.o5Yp1w
[Jan 29 19:58:41.722008 2009] Module bs_fantasy_kickban compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.722308 2009] debug: existing msg: (0x0x8380aa8), new msg (0x0x8382048)
[Jan 29 19:58:41.722549 2009] Displaying message list for bot_command
[Jan 29 19:58:41.722779 2009] 1: 0x0x8382048
[Jan 29 19:58:41.723006 2009] 2: 0x0x8380aa8
[Jan 29 19:58:41.723230 2009] 3: 0x0x837f4f8
[Jan 29 19:58:41.723449 2009] end
[Jan 29 19:58:41.723726 2009] debug: trying to load core module [bs_fantasy_kickban]
[Jan 29 19:58:41.723965 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.724307 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_fantasy_owner.so.vVBGxq
[Jan 29 19:58:41.726414 2009] Module bs_fantasy_owner compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.726698 2009] debug: existing msg: (0x0x8382048), new msg (0x0x83835e8)
[Jan 29 19:58:41.726940 2009] Displaying message list for bot_command
[Jan 29 19:58:41.727170 2009] 1: 0x0x83835e8
[Jan 29 19:58:41.727395 2009] 2: 0x0x8382048
[Jan 29 19:58:41.727676 2009] 3: 0x0x8380aa8
[Jan 29 19:58:41.727911 2009] 4: 0x0x837f4f8
[Jan 29 19:58:41.728133 2009] end
[Jan 29 19:58:41.728364 2009] debug: trying to load core module [bs_fantasy_owner]
[Jan 29 19:58:41.728594 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.728969 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/bs_fantasy_seen.so.26ZL4j
[Jan 29 19:58:41.730926 2009] Module bs_fantasy_seen compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.731259 2009] debug: existing msg: (0x0x83835e8), new msg (0x0x8384b98)
[Jan 29 19:58:41.731497 2009] Displaying message list for bot_command
[Jan 29 19:58:41.731728 2009] 1: 0x0x8384b98
[Jan 29 19:58:41.731956 2009] 2: 0x0x83835e8
[Jan 29 19:58:41.732180 2009] 3: 0x0x8382048
[Jan 29 19:58:41.732403 2009] 4: 0x0x8380aa8
[Jan 29 19:58:41.732626 2009] 5: 0x0x837f4f8
[Jan 29 19:58:41.732901 2009] end
[Jan 29 19:58:41.733144 2009] debug: trying to load core module [bs_fantasy_seen]
[Jan 29 19:58:41.733383 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.733770 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_help.so.HKqHCd
[Jan 29 19:58:41.735484 2009] Module os_help compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.735770 2009] debug: trying to load core module [os_help]
[Jan 29 19:58:41.736007 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.736346 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_global.so.eU94a7
[Jan 29 19:58:41.738271 2009] Module os_global compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.738561 2009] debug: trying to load core module [os_global]
[Jan 29 19:58:41.738800 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.739137 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_stats.so.FI4WJ0
[Jan 29 19:58:41.741557 2009] Module os_stats compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.741846 2009] debug: trying to load core module [os_stats]
[Jan 29 19:58:41.742084 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.742421 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_oper.so.yLLojU
[Jan 29 19:58:41.744807 2009] Module os_oper compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.745119 2009] debug: trying to load core module [os_oper]
[Jan 29 19:58:41.745363 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.745727 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_admin.so.jIaqTN
[Jan 29 19:58:41.747690 2009] Module os_admin compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.747976 2009] debug: trying to load core module [os_admin]
[Jan 29 19:58:41.748215 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.748554 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_staff.so.SIyWtH
[Jan 29 19:58:41.750523 2009] Module os_staff compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.750805 2009] debug: trying to load core module [os_staff]
[Jan 29 19:58:41.751038 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.751408 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_mode.so.dMMX4A
[Jan 29 19:58:41.753462 2009] Module os_mode compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.753747 2009] debug: trying to load core module [os_mode]
[Jan 29 19:58:41.753985 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.754323 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_kick.so.E8RuGu
[Jan 29 19:58:41.756095 2009] Module os_kick compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.756381 2009] debug: trying to load core module [os_kick]
[Jan 29 19:58:41.756621 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.756961 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_clearmodes.so.JdJuio
[Jan 29 19:58:41.759425 2009] Module os_clearmodes compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.759713 2009] debug: trying to load core module [os_clearmodes]
[Jan 29 19:58:41.759953 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.760339 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_akill.so.eWc5Uh
[Jan 29 19:58:41.762675 2009] Module os_akill compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.762971 2009] debug: trying to load core module [os_akill]
[Jan 29 19:58:41.763213 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.763557 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_sgline.so.lQPeyb
[Jan 29 19:58:41.766216 2009] Module os_sgline compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.766505 2009] debug: trying to load core module [os_sgline]
[Jan 29 19:58:41.766738 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.767079 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_sqline.so.26B0b5
[Jan 29 19:58:41.769734 2009] Module os_sqline compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.770022 2009] debug: trying to load core module [os_sqline]
[Jan 29 19:58:41.770260 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.770611 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_szline.so.f8OoQY
[Jan 29 19:58:41.773058 2009] Module os_szline compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.773343 2009] debug: trying to load core module [os_szline]
[Jan 29 19:58:41.773585 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.773929 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_chanlist.so.e29mvS
[Jan 29 19:58:41.775699 2009] Module os_chanlist compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.775985 2009] debug: trying to load core module [os_chanlist]
[Jan 29 19:58:41.776227 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.776573 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_userlist.so.XVcOaM
[Jan 29 19:58:41.778437 2009] Module os_userlist compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.778724 2009] debug: trying to load core module [os_userlist]
[Jan 29 19:58:41.778962 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.779307 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_logonnews.so.EaWIQF
[Jan 29 19:58:41.781073 2009] Module os_logonnews compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.781370 2009] Displaying message list for reload
[Jan 29 19:58:41.781610 2009] 1: 0x0x839aae0
[Jan 29 19:58:41.781834 2009] end
[Jan 29 19:58:41.782071 2009] debug: trying to load core module [os_logonnews]
[Jan 29 19:58:41.782302 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.782638 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_randomnews.so.l9Ydxz
[Jan 29 19:58:41.784347 2009] Module os_randomnews compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.784636 2009] debug: trying to load core module [os_randomnews]
[Jan 29 19:58:41.784878 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.785249 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_opernews.so.4ilbet
[Jan 29 19:58:41.787031 2009] Module os_opernews compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.787328 2009] debug: existing msg: (0x0x839aae0), new msg (0x0x839d740)
[Jan 29 19:58:41.787565 2009] Displaying message list for reload
[Jan 29 19:58:41.787794 2009] 1: 0x0x839d740
[Jan 29 19:58:41.788022 2009] 2: 0x0x839aae0
[Jan 29 19:58:41.788240 2009] end
[Jan 29 19:58:41.788476 2009] debug: trying to load core module [os_opernews]
[Jan 29 19:58:41.788755 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.789103 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_session.so.haFOVm
[Jan 29 19:58:41.790807 2009] Module os_session compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.791097 2009] debug: trying to load core module [os_session]
[Jan 29 19:58:41.791340 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.791693 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_noop.so.qXXTDg
[Jan 29 19:58:41.793525 2009] Module os_noop compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.793813 2009] debug: trying to load core module [os_noop]
[Jan 29 19:58:41.794052 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.794401 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_jupe.so.D6Fsma
[Jan 29 19:58:41.796135 2009] Module os_jupe compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.796423 2009] debug: trying to load core module [os_jupe]
[Jan 29 19:58:41.796662 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.797003 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_ignore.so.6lYt53
[Jan 29 19:58:41.798756 2009] Module os_ignore compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.799045 2009] debug: trying to load core module [os_ignore]
[Jan 29 19:58:41.799287 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.799635 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_set.so.9JOXOX
[Jan 29 19:58:41.801835 2009] Module os_set compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.802129 2009] debug: trying to load core module [os_set]
[Jan 29 19:58:41.802370 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.802717 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_reload.so.GnfZyR
[Jan 29 19:58:41.804577 2009] Module os_reload compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.804867 2009] debug: trying to load core module [os_reload]
[Jan 29 19:58:41.805139 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.805504 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_update.so.HYTujL
[Jan 29 19:58:41.807547 2009] Module os_update compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.807833 2009] debug: trying to load core module [os_update]
[Jan 29 19:58:41.808070 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.808415 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_restart.so.qwkw4E
[Jan 29 19:58:41.810280 2009] Module os_restart compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.810573 2009] debug: trying to load core module [os_restart]
[Jan 29 19:58:41.810810 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.811150 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_quit.so.NCq1Py
[Jan 29 19:58:41.812887 2009] Module os_quit compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.813177 2009] debug: trying to load core module [os_quit]
[Jan 29 19:58:41.813416 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.813805 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_shutdown.so.unqZBs
[Jan 29 19:58:41.815579 2009] Module os_shutdown compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.815868 2009] debug: trying to load core module [os_shutdown]
[Jan 29 19:58:41.816108 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.816460 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_defcon.so.b26pom
[Jan 29 19:58:41.818315 2009] Module os_defcon compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.818604 2009] debug: trying to load core module [os_defcon]
[Jan 29 19:58:41.818843 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.819233 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_chankill.so.oV1kbg
[Jan 29 19:58:41.821094 2009] Module os_chankill compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.821383 2009] debug: trying to load core module [os_chankill]
[Jan 29 19:58:41.821626 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.821969 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_svsnick.so.x0RJY9
[Jan 29 19:58:41.823891 2009] Module os_svsnick compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.824178 2009] debug: trying to load core module [os_svsnick]
[Jan 29 19:58:41.824418 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.824764 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_oline.so.Kv4CM3
[Jan 29 19:58:41.826840 2009] Module os_oline compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.827131 2009] debug: trying to load core module [os_oline]
[Jan 29 19:58:41.827369 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.827719 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_umode.so.xTf2AX
[Jan 29 19:58:41.829614 2009] Module os_umode compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.829903 2009] debug: trying to load core module [os_umode]
[Jan 29 19:58:41.830140 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.830491 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_modload.so.QhKVpR
[Jan 29 19:58:41.832190 2009] Module os_modload compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.832479 2009] debug: trying to load core module [os_modload]
[Jan 29 19:58:41.832718 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.833081 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_modunload.so.lkihfL
[Jan 29 19:58:41.834793 2009] Module os_modunload compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.835127 2009] debug: trying to load core module [os_modunload]
[Jan 29 19:58:41.835377 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.835723 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_modlist.so.EGv54E
[Jan 29 19:58:41.837673 2009] Module os_modlist compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.837962 2009] debug: trying to load core module [os_modlist]
[Jan 29 19:58:41.838199 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.838570 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_modinfo.so.BXyoVy
[Jan 29 19:58:41.841643 2009] Module os_modinfo compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.841934 2009] debug: trying to load core module [os_modinfo]
[Jan 29 19:58:41.842170 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.842520 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/hs_help.so.ILOoMs
[Jan 29 19:58:41.844365 2009] Module hs_help compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.844648 2009] debug: trying to load core module [hs_help]
[Jan 29 19:58:41.844885 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.845272 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/hs_on.so.liISDm
[Jan 29 19:58:41.847454 2009] Module hs_on compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.847736 2009] debug: trying to load core module [hs_on]
[Jan 29 19:58:41.847978 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.848323 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/hs_off.so.S72Tvg
[Jan 29 19:58:41.850199 2009] Module hs_off compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.850536 2009] debug: trying to load core module [hs_off]
[Jan 29 19:58:41.850772 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.851116 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/hs_group.so.dhNpoa
[Jan 29 19:58:41.853097 2009] Module hs_group compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.853378 2009] debug: trying to load core module [hs_group]
[Jan 29 19:58:41.853618 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.853967 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/hs_list.so.EJqqh4
[Jan 29 19:58:41.856151 2009] Module hs_list compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.856437 2009] debug: trying to load core module [hs_list]
[Jan 29 19:58:41.856675 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.857011 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/hs_set.so.ROaYaY
[Jan 29 19:58:41.859215 2009] Module hs_set compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.859498 2009] debug: trying to load core module [hs_set]
[Jan 29 19:58:41.859733 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.860074 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/hs_setall.so.UC824R
[Jan 29 19:58:41.862215 2009] Module hs_setall compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.862497 2009] debug: trying to load core module [hs_setall]
[Jan 29 19:58:41.862733 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.863082 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/hs_del.so.NxTEZL
[Jan 29 19:58:41.864969 2009] Module hs_del compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.865277 2009] debug: trying to load core module [hs_del]
[Jan 29 19:58:41.865514 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.865855 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/hs_delall.so.0KUKUF
[Jan 29 19:58:41.867982 2009] Module hs_delall compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.868286 2009] debug: trying to load core module [hs_delall]
[Jan 29 19:58:41.868527 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.868877 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/he_help.so.vHznQz
[Jan 29 19:58:41.870833 2009] Module he_help compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.871114 2009] debug: trying to load core module [he_help]
[Jan 29 19:58:41.871353 2009] debug: status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.871942 2009] debug: Loaded NickServ database (1/7)
[Jan 29 19:58:41.872303 2009] debug: Loaded HostServ database (2/7)
[Jan 29 19:58:41.872664 2009] debug: Loaded BotServ database (3/7)
[Jan 29 19:58:41.873097 2009] debug: Loaded ChanServ database (4/7)
[Jan 29 19:58:41.873468 2009] debug: Loaded OperServ database (5/7)
[Jan 29 19:58:41.873868 2009] debug: Loaded news database (6/7)
[Jan 29 19:58:41.874236 2009] debug: Loaded exception database (7/7)
[Jan 29 19:58:41.874475 2009] Databases loaded
[Jan 29 19:58:41.874734 2009] Info: Reflecting database records.
[Jan 29 19:58:41.874973 2009] debug: Emitting event "db_saving" (1 args)
[Jan 29 19:58:41.875249 2009] debug: Saving FFF databases
[Jan 29 19:58:41.877363 2009] debug: Emitting event "db_saving" (1 args)
[Jan 29 19:58:41.877627 2009] debug: Emitting event "connect" (1 args)
[Jan 29 19:58:41.878437 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 19:58:41.878900 2009] debug: Sent: PROTOCTL NICKv2 VHP UMODE2 NICKIP SJOIN SJOIN2 SJ3 NOQUIT TKLEXT SJB64
[Jan 29 19:58:41.879245 2009] debug: Sent: PASS :services
[Jan 29 19:58:41.879576 2009] debug: Sent: SERVER services.uswave.net 1 :WaveNET Services
[Jan 29 19:58:41.879870 2009] debug: Emitting event "connect" (1 args)
[Jan 29 19:58:41.880352 2009] debug: Sent: NICK OperServ 1 1233287921 service uswave.net services.uswave.net 0 +ioS uswave.net * :Operator Server
[Jan 29 19:58:41.880657 2009] debug: Sent: SQLINE OperServ :Reserved for services
[Jan 29 19:58:41.880969 2009] debug: Sent: NICK NickServ 1 1233287921 service uswave.net services.uswave.net 0 +oS uswave.net * :Nickname Server
[Jan 29 19:58:41.881242 2009] debug: Sent: SQLINE NickServ :Reserved for services
[Jan 29 19:58:41.881513 2009] debug: Sent: NICK ChanServ 1 1233287921 service uswave.net services.uswave.net 0 +oS uswave.net * :Channel Server
[Jan 29 19:58:41.881821 2009] debug: Sent: SQLINE ChanServ :Reserved for services
[Jan 29 19:58:41.882093 2009] debug: Sent: NICK HostServ 1 1233287921 service uswave.net services.uswave.net 0 +oS uswave.net * :vHost Server
[Jan 29 19:58:41.882360 2009] debug: Sent: SQLINE HostServ :Reserved for services
[Jan 29 19:58:41.882634 2009] debug: Sent: NICK MemoServ 1 1233287921 service uswave.net services.uswave.net 0 +oS uswave.net * :Memo Server
[Jan 29 19:58:41.882944 2009] debug: Sent: SQLINE MemoServ :Reserved for services
[Jan 29 19:58:41.883221 2009] debug: Sent: NICK BotServ 1 1233287921 service uswave.net services.uswave.net 0 +oS uswave.net * :Bot Server
[Jan 29 19:58:41.883487 2009] debug: Sent: SQLINE BotServ :Reserved for services
[Jan 29 19:58:41.883798 2009] debug: Sent: NICK HelpServ 1 1233287921 service uswave.net services.uswave.net 0 +oS uswave.net * :Help Server
[Jan 29 19:58:41.884069 2009] debug: Sent: SQLINE HelpServ :Reserved for services
[Jan 29 19:58:41.884346 2009] debug: Sent: NICK Global 1 1233287921 service uswave.net services.uswave.net 0 +ioS uswave.net * :Global Noticer
[Jan 29 19:58:41.884608 2009] debug: Sent: SQLINE Global :Reserved for services
[Jan 29 19:58:41.884918 2009] debug: Sent: :services.uswave.net EOS
[Jan 29 19:58:41.885203 2009] trying to load [cs_appendtopic]
[Jan 29 19:58:41.885544 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_appendtopic.so.2CvVOt
[Jan 29 19:58:41.888289 2009] Module cs_appendtopic compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.888581 2009] debug: cs_appendtopic Adding 3 texts for language 0
[Jan 29 19:58:41.888822 2009] debug: cs_appendtopic Adding 3 texts for language 12
[Jan 29 19:58:41.889057 2009] debug: cs_appendtopic Adding 3 texts for language 9
[Jan 29 19:58:41.889292 2009] debug: cs_appendtopic Adding 3 texts for language 5
[Jan 29 19:58:41.889526 2009] debug: cs_appendtopic Adding 3 texts for language 13
[Jan 29 19:58:41.889812 2009] debug: cs_appendtopic Adding 3 texts for language 8
[Jan 29 19:58:41.890059 2009] [cs_appendtopic] Loaded successfully
[Jan 29 19:58:41.890306 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.890575 2009] trying to load [cs_enforce]
[Jan 29 19:58:41.890968 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/cs_enforce.so.xLmqOn
[Jan 29 19:58:41.893878 2009] Module cs_enforce compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.894194 2009] debug: cs_enforce Adding 6 texts for language 0
[Jan 29 19:58:41.894459 2009] debug: cs_enforce Adding 6 texts for language 12
[Jan 29 19:58:41.894698 2009] debug: cs_enforce Adding 6 texts for language 9
[Jan 29 19:58:41.894954 2009] debug: cs_enforce Adding 6 texts for language 5
[Jan 29 19:58:41.895236 2009] debug: cs_enforce Adding 6 texts for language 13
[Jan 29 19:58:41.895474 2009] debug: cs_enforce Adding 6 texts for language 8
[Jan 29 19:58:41.895774 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.896043 2009] trying to load [ns_maxemail]
[Jan 29 19:58:41.896380 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/ns_maxemail.so.CWfSOh
[Jan 29 19:58:41.898640 2009] Module ns_maxemail compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.898923 2009] debug: existing cmd: (0x0x82ff530), new cmd (0x0x83cc660)
[Jan 29 19:58:41.899169 2009] debug: existing cmd: (0x0x8307be0), new cmd (0x0x83cc6e8)
[Jan 29 19:58:41.899465 2009] debug: existing msg: (0x0x839d740), new msg (0x0x83cc770)
[Jan 29 19:58:41.899746 2009] Displaying message list for reload
[Jan 29 19:58:41.899982 2009] 1: 0x0x83cc770
[Jan 29 19:58:41.900212 2009] 2: 0x0x839d740
[Jan 29 19:58:41.900440 2009] 3: 0x0x839aae0
[Jan 29 19:58:41.900705 2009] end
[Jan 29 19:58:41.901597 2009] debug: [ns_maxemail] NSEmailMax set to 0
[Jan 29 19:58:41.901862 2009] debug: ns_maxemail Adding 2 texts for language 0
[Jan 29 19:58:41.902085 2009] debug: ns_maxemail Adding 2 texts for language 12
[Jan 29 19:58:41.902371 2009] debug: ns_maxemail Adding 2 texts for language 9
[Jan 29 19:58:41.902646 2009] debug: ns_maxemail Adding 2 texts for language 5
[Jan 29 19:58:41.902888 2009] debug: ns_maxemail Adding 2 texts for language 13
[Jan 29 19:58:41.903122 2009] debug: ns_maxemail Adding 2 texts for language 8
[Jan 29 19:58:41.903368 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.903634 2009] trying to load [os_info]
[Jan 29 19:58:41.903931 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/os_info.so.tYdEQb
[Jan 29 19:58:41.907160 2009] Module os_info compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.907447 2009] os_info: Loading configuration directives...
[Jan 29 19:58:41.908340 2009] os_info: OSInfoDBName is not defined in Services configuration file, using default os_info.db
[Jan 29 19:58:41.908597 2009] os_info: Directive OSInfoDBName loaded (os_info.db)...
[Jan 29 19:58:41.908898 2009] debug: existing cmd: (0x0x8334128), new cmd (0x0x83cf7e0)
[Jan 29 19:58:41.909170 2009] debug: existing cmd: (0x0x8359ad0), new cmd (0x0x83d1000)
[Jan 29 19:58:41.909421 2009] Displaying message list for db_saving
[Jan 29 19:58:41.909700 2009] 1: 0x0x83d0eb0
[Jan 29 19:58:41.909929 2009] end
[Jan 29 19:58:41.910160 2009] Displaying message list for db_backup
[Jan 29 19:58:41.910391 2009] 1: 0x0x83d10c8
[Jan 29 19:58:41.910617 2009] end
[Jan 29 19:58:41.910892 2009] debug: existing msg: (0x0x83cc770), new msg (0x0x83d1120)
[Jan 29 19:58:41.911126 2009] Displaying message list for reload
[Jan 29 19:58:41.911357 2009] 1: 0x0x83d1120
[Jan 29 19:58:41.911589 2009] 2: 0x0x83cc770
[Jan 29 19:58:41.911959 2009] 3: 0x0x839d740
[Jan 29 19:58:41.912190 2009] 4: 0x0x839aae0
[Jan 29 19:58:41.912411 2009] end
[Jan 29 19:58:41.912675 2009] os_info: WARNING: can not open the database file! (it might not exist, this is not fatal)
[Jan 29 19:58:41.912977 2009] debug: os_info Adding 10 texts for language 0
[Jan 29 19:58:41.913222 2009] debug: os_info Adding 10 texts for language 4
[Jan 29 19:58:41.913461 2009] debug: os_info Adding 10 texts for language 12
[Jan 29 19:58:41.913733 2009] debug: os_info Adding 10 texts for language 9
[Jan 29 19:58:41.913988 2009] debug: os_info Adding 10 texts for language 5
[Jan 29 19:58:41.914232 2009] debug: os_info Adding 10 texts for language 13
[Jan 29 19:58:41.914471 2009] debug: os_info Adding 10 texts for language 8
[Jan 29 19:58:41.914762 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.915111 2009] trying to load [hs_request]
[Jan 29 19:58:41.915454 2009] Runtime module location: /usr/ircd/Unreal3.2.7/services/modules/runtime/hs_request.so.uNsrU5
[Jan 29 19:58:41.919536 2009] Module hs_request compiled against current or newer anope revision 1899, this is 1899
[Jan 29 19:58:41.919835 2009] debug: existing cmd: (0x0x83be840), new cmd (0x0x83d42d0)
[Jan 29 19:58:41.920084 2009] debug: existing cmd: (0x0x831b498), new cmd (0x0x83d4358)
[Jan 29 19:58:41.920332 2009] debug: existing msg: (0x0x83d0eb0), new msg (0x0x83d43e0)
[Jan 29 19:58:41.920563 2009] Displaying message list for db_saving
[Jan 29 19:58:41.920834 2009] 1: 0x0x83d43e0
[Jan 29 19:58:41.921067 2009] 2: 0x0x83d0eb0
[Jan 29 19:58:41.921291 2009] end
[Jan 29 19:58:41.921523 2009] debug: existing msg: (0x0x83d10c8), new msg (0x0x83d4418)
[Jan 29 19:58:41.921802 2009] Displaying message list for db_backup
[Jan 29 19:58:41.922038 2009] 1: 0x0x83d4418
[Jan 29 19:58:41.922265 2009] 2: 0x0x83d10c8
[Jan 29 19:58:41.922535 2009] end
[Jan 29 19:58:41.925292 2009] debug: [hs_request] Set config vars: MemoUser=0 MemoOper=0 MemoSetters=0 DBName='hs_request.db'
[Jan 29 19:58:41.925570 2009] debug: hs_request Adding 21 texts for language 0
[Jan 29 19:58:41.925836 2009] debug: hs_request Adding 21 texts for language 12
[Jan 29 19:58:41.926085 2009] debug: hs_request Adding 21 texts for language 5
[Jan 29 19:58:41.926323 2009] debug: hs_request Adding 21 texts for language 13
[Jan 29 19:58:41.926576 2009] debug: hs_request Adding 21 texts for language 8
[Jan 29 19:58:41.926863 2009] [hs_request] Loading database...
[Jan 29 19:58:41.927133 2009] [hs_request] Unable to open database ('hs_request.db') for reading
[Jan 29 19:58:41.927370 2009] hs_request loaded
[Jan 29 19:58:41.927611 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:58:41.927885 2009] debug: Received: :irc.uswave.net NOTICE AUTH :*** Looking up your hostname...
[Jan 29 19:58:41.928199 2009] debug: Received: :irc.uswave.net NOTICE AUTH :*** Found your hostname (cached)
[Jan 29 19:58:42.875415 2009] debug: Received: ERROR :Server services.uswave.net already exists from services.uswave.net
[Jan 29 19:58:42.875708 2009] debug: Server services.uswave.net already exists from services.uswave.net
[Jan 29 19:58:42.876052 2009] debug: Received: ERROR :Closing Link: [127.0.0.1] (Server Exists)
[Jan 29 19:58:42.876305 2009] debug: Closing Link: [127.0.0.1] (Server Exists)
[Jan 29 19:58:42.876563 2009] debug: Emitting event "db_saving" (1 args)
[Jan 29 19:58:42.876861 2009] [hs_request] Succesfully saved database
[Jan 29 19:58:42.877144 2009] debug: Saving FFF databases
[Jan 29 19:58:42.879317 2009] debug: Emitting event "db_saving" (1 args)
[Jan 29 19:58:42.879584 2009] debug: Emitting event "shutdown" (1 args)
[Jan 29 19:58:42.879818 2009] Read error from server: No such file or directory (error num: 2)
[Jan 29 19:58:42.880155 2009] debug: Sent: SQUIT services.uswave.net :Read error from server: No such file or directory (error num: 2)
[Jan 29 19:58:42.880414 2009] debug: firstuser() returning NULL (end of list)
[Jan 29 19:58:42.880612 2009] debug: Emitting event "shutdown" (1 args)
[Jan 29 19:58:42.894887 2009] [cs_appendtopic] Unloaded successfully
[Jan 29 19:58:42.899213 2009] [hs_request] Saving database...
[Jan 29 19:58:42.899550 2009] [hs_request] Succesfully saved database
[Jan 29 19:58:42.899805 2009] hs_request un-loaded
[Jan 29 19:58:42.918554 2009] debug: Cleaning out Module run time directory (/usr/ircd/Unreal3.2.7/services/modules/runtime) - this may take a moment please wait
[Jan 29 19:58:42.920951 2009] debug: Module run time directory has been cleaned out
[Jan 29 19:59:03 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 19:59:03 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 19:59:03 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:59:03 2009] Loading Encryption Module: [enc_none]
[Jan 29 19:59:03 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:59:03 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up
[Jan 29 19:59:03 2009] ms_rsend requested unload...
[Jan 29 19:59:03 2009] debug: trying to load core module [ms_rsend]
[Jan 29 19:59:03 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 19:59:03 2009] Databases loaded
[Jan 29 19:59:03 2009] Info: Reflecting database records.
[Jan 29 19:59:03 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 19:59:03 2009] trying to load [cs_appendtopic]
[Jan 29 19:59:03 2009] [cs_appendtopic] Loaded successfully
[Jan 29 19:59:03 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:59:03 2009] trying to load [cs_enforce]
[Jan 29 19:59:03 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:59:03 2009] trying to load [ns_maxemail]
[Jan 29 19:59:03 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:59:03 2009] trying to load [os_info]
[Jan 29 19:59:03 2009] os_info: Loading configuration directives...
[Jan 29 19:59:03 2009] os_info: OSInfoDBName is not defined in Services configuration file, using default os_info.db
[Jan 29 19:59:03 2009] os_info: Directive OSInfoDBName loaded (os_info.db)...
[Jan 29 19:59:03 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:59:03 2009] trying to load [hs_request]
[Jan 29 19:59:03 2009] hs_request loaded
[Jan 29 19:59:03 2009] status: [0][Module, Okay - No Error]
[Jan 29 19:59:04 2009] Read error from server: No such file or directory (error num: 2)
[Jan 29 19:59:04 2009] [cs_appendtopic] Unloaded successfully
[Jan 29 19:59:04 2009] hs_request un-loaded
[Jan 29 20:03:06 2009] OperServ: sleep: help
[Jan 29 20:03:16 2009] OperServ: sleep: oper
[Jan 29 20:03:23 2009] OperServ: sleep: staff
[Jan 29 20:03:36 2009] OperServ: sleep: modlist
[Jan 29 20:04:54 2009] NickServ: Nick Sleep has been requested
[Jan 29 20:04:54 2009] NickServ: group Sleep has been created
[Jan 29 20:04:54 2009] NickServ: 'Sleep' registered by sleep@192.168.0.102 (e-mail: sleep@raidchan.org)
[Jan 29 20:04:59 2009] ChanServ: Channel '#backofthebus' registered by Sleep!sleep@192.168.0.102
[Jan 29 20:09:25 2009] OperServ: Sleep: help
[Jan 29 20:09:36 2009] OperServ: Sleep: oper
[Jan 29 21:05:30 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 21:05:30 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 21:05:30 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:30 2009] Loading Encryption Module: [enc_none]
[Jan 29 21:05:30 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:30 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up
[Jan 29 21:05:30 2009] ms_rsend requested unload...
[Jan 29 21:05:30 2009] debug: trying to load core module [ms_rsend]
[Jan 29 21:05:30 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 21:05:30 2009] Databases loaded
[Jan 29 21:05:30 2009] Info: Reflecting database records.
[Jan 29 21:05:30 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 21:05:30 2009] trying to load [cs_appendtopic]
[Jan 29 21:05:30 2009] [cs_appendtopic] Loaded successfully
[Jan 29 21:05:30 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:30 2009] trying to load [cs_enforce]
[Jan 29 21:05:30 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:30 2009] trying to load [ns_maxemail]
[Jan 29 21:05:30 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:30 2009] trying to load [os_info]
[Jan 29 21:05:30 2009] os_info: Loading configuration directives...
[Jan 29 21:05:30 2009] os_info: OSInfoDBName is not defined in Services configuration file, using default os_info.db
[Jan 29 21:05:30 2009] os_info: Directive OSInfoDBName loaded (os_info.db)...
[Jan 29 21:05:30 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:30 2009] trying to load [hs_request]
[Jan 29 21:05:30 2009] hs_request loaded
[Jan 29 21:05:30 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:30 2009] Read error from server: No such file or directory (error num: 2)
[Jan 29 21:05:30 2009] [cs_appendtopic] Unloaded successfully
[Jan 29 21:05:30 2009] hs_request un-loaded
[Jan 29 21:05:34 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 21:05:34 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 21:05:34 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:34 2009] Loading Encryption Module: [enc_none]
[Jan 29 21:05:34 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:34 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up
[Jan 29 21:05:34 2009] ms_rsend requested unload...
[Jan 29 21:05:34 2009] debug: trying to load core module [ms_rsend]
[Jan 29 21:05:34 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 21:05:34 2009] Databases loaded
[Jan 29 21:05:34 2009] Info: Reflecting database records.
[Jan 29 21:05:34 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 21:05:34 2009] trying to load [cs_appendtopic]
[Jan 29 21:05:34 2009] [cs_appendtopic] Loaded successfully
[Jan 29 21:05:34 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:34 2009] trying to load [cs_enforce]
[Jan 29 21:05:34 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:34 2009] trying to load [ns_maxemail]
[Jan 29 21:05:34 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:34 2009] trying to load [os_info]
[Jan 29 21:05:34 2009] os_info: Loading configuration directives...
[Jan 29 21:05:34 2009] os_info: OSInfoDBName is not defined in Services configuration file, using default os_info.db
[Jan 29 21:05:34 2009] os_info: Directive OSInfoDBName loaded (os_info.db)...
[Jan 29 21:05:34 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:34 2009] trying to load [hs_request]
[Jan 29 21:05:34 2009] hs_request loaded
[Jan 29 21:05:34 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:35 2009] Read error from server: No such file or directory (error num: 2)
[Jan 29 21:05:35 2009] [cs_appendtopic] Unloaded successfully
[Jan 29 21:05:35 2009] hs_request un-loaded
[Jan 29 21:05:40 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 21:05:40 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 21:05:40 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:40 2009] Loading Encryption Module: [enc_none]
[Jan 29 21:05:40 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:40 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up
[Jan 29 21:05:40 2009] ms_rsend requested unload...
[Jan 29 21:05:40 2009] debug: trying to load core module [ms_rsend]
[Jan 29 21:05:40 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 21:05:40 2009] Databases loaded
[Jan 29 21:05:40 2009] Info: Reflecting database records.
[Jan 29 21:05:40 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 21:05:40 2009] trying to load [cs_appendtopic]
[Jan 29 21:05:40 2009] [cs_appendtopic] Loaded successfully
[Jan 29 21:05:40 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:40 2009] trying to load [cs_enforce]
[Jan 29 21:05:40 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:40 2009] trying to load [ns_maxemail]
[Jan 29 21:05:40 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:40 2009] trying to load [os_info]
[Jan 29 21:05:40 2009] os_info: Loading configuration directives...
[Jan 29 21:05:40 2009] os_info: OSInfoDBName is not defined in Services configuration file, using default os_info.db
[Jan 29 21:05:40 2009] os_info: Directive OSInfoDBName loaded (os_info.db)...
[Jan 29 21:05:40 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:40 2009] trying to load [hs_request]
[Jan 29 21:05:40 2009] hs_request loaded
[Jan 29 21:05:40 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:40 2009] Read error from server: Broken pipe (error num: 32)
[Jan 29 21:05:40 2009] [cs_appendtopic] Unloaded successfully
[Jan 29 21:05:40 2009] hs_request un-loaded
[Jan 29 21:05:45 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 21:05:45 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 21:05:45 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:45 2009] Loading Encryption Module: [enc_none]
[Jan 29 21:05:45 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:05:45 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up
[Jan 29 21:05:45 2009] ms_rsend requested unload...
[Jan 29 21:05:45 2009] debug: trying to load core module [ms_rsend]
[Jan 29 21:05:45 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 21:05:45 2009] Databases loaded
[Jan 29 21:05:45 2009] Info: Reflecting database records.
[Jan 29 21:05:45 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 21:05:45 2009] FATAL: Remote server returned: ERROR :Closing Link: [127.0.0.1] (Throttled: Reconnecting too fast) -Email banned@uswave.net for more information.
[Jan 29 21:06:04 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 21:06:04 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 21:06:04 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:06:04 2009] Loading Encryption Module: [enc_none]
[Jan 29 21:06:04 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:06:04 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up
[Jan 29 21:06:04 2009] ms_rsend requested unload...
[Jan 29 21:06:04 2009] debug: trying to load core module [ms_rsend]
[Jan 29 21:06:04 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 21:06:04 2009] Databases loaded
[Jan 29 21:06:04 2009] Info: Reflecting database records.
[Jan 29 21:06:04 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 21:06:04 2009] FATAL: Remote server returned: ERROR :Closing Link: [127.0.0.1] (Throttled: Reconnecting too fast) -Email banned@uswave.net for more information.
[Jan 29 21:06:09 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 21:06:09 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 21:06:09 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:06:09 2009] Loading Encryption Module: [enc_none]
[Jan 29 21:06:09 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:06:09 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up
[Jan 29 21:06:09 2009] ms_rsend requested unload...
[Jan 29 21:06:09 2009] debug: trying to load core module [ms_rsend]
[Jan 29 21:06:09 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 21:06:09 2009] Databases loaded
[Jan 29 21:06:09 2009] Info: Reflecting database records.
[Jan 29 21:06:09 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 21:06:09 2009] FATAL: Remote server returned: ERROR :Closing Link: [127.0.0.1] (Throttled: Reconnecting too fast) -Email banned@uswave.net for more information.
[Jan 29 21:07:30 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 21:07:30 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 21:07:30 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:07:30 2009] Loading Encryption Module: [enc_none]
[Jan 29 21:07:30 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:07:30 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up
[Jan 29 21:07:30 2009] ms_rsend requested unload...
[Jan 29 21:07:30 2009] debug: trying to load core module [ms_rsend]
[Jan 29 21:07:30 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 21:07:31 2009] Databases loaded
[Jan 29 21:07:31 2009] Info: Reflecting database records.
[Jan 29 21:07:31 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 21:07:31 2009] trying to load [cs_appendtopic]
[Jan 29 21:07:31 2009] [cs_appendtopic] Loaded successfully
[Jan 29 21:07:31 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:07:31 2009] trying to load [cs_enforce]
[Jan 29 21:07:31 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:07:31 2009] trying to load [ns_maxemail]
[Jan 29 21:07:31 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:07:31 2009] trying to load [os_info]
[Jan 29 21:07:31 2009] os_info: Loading configuration directives...
[Jan 29 21:07:31 2009] os_info: OSInfoDBName is not defined in Services configuration file, using default os_info.db
[Jan 29 21:07:31 2009] os_info: Directive OSInfoDBName loaded (os_info.db)...
[Jan 29 21:07:31 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:07:31 2009] trying to load [hs_request]
[Jan 29 21:07:31 2009] hs_request loaded
[Jan 29 21:07:31 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:07:32 2009] Read error from server: No such file or directory (error num: 2)
[Jan 29 21:07:32 2009] [cs_appendtopic] Unloaded successfully
[Jan 29 21:07:32 2009] hs_request un-loaded
[Jan 29 21:08:23 2009] OperServ: Sleep: restart
[Jan 29 21:08:23 2009] Restarting
[Jan 29 21:08:23 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 21:08:23 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 21:08:23 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:08:23 2009] Loading Encryption Module: [enc_none]
[Jan 29 21:08:23 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:08:23 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up
[Jan 29 21:08:23 2009] ms_rsend requested unload...
[Jan 29 21:08:23 2009] debug: trying to load core module [ms_rsend]
[Jan 29 21:08:23 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 21:08:24 2009] Databases loaded
[Jan 29 21:08:24 2009] Info: Reflecting database records.
[Jan 29 21:08:24 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 21:08:24 2009] trying to load [cs_appendtopic]
[Jan 29 21:08:24 2009] [cs_appendtopic] Loaded successfully
[Jan 29 21:08:24 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:08:24 2009] trying to load [cs_enforce]
[Jan 29 21:08:24 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:08:24 2009] trying to load [ns_maxemail]
[Jan 29 21:08:24 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:08:24 2009] trying to load [os_info]
[Jan 29 21:08:24 2009] os_info: Loading configuration directives...
[Jan 29 21:08:24 2009] os_info: OSInfoDBName is not defined in Services configuration file, using default os_info.db
[Jan 29 21:08:24 2009] os_info: Directive OSInfoDBName loaded (os_info.db)...
[Jan 29 21:08:24 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:08:24 2009] trying to load [hs_request]
[Jan 29 21:08:24 2009] hs_request loaded
[Jan 29 21:08:24 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:08:25 2009] NickServ: Sleep!sleep@192.168.0.102 automatically identified for nick Sleep
[Jan 29 21:08:25 2009] Server irc.uswave.net is done syncing
[Jan 29 21:09:41 2009] OperServ: Sleep: restart
[Jan 29 21:09:41 2009] Restarting
[Jan 29 21:09:41 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 21:09:41 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 21:09:41 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:09:41 2009] Loading Encryption Module: [enc_none]
[Jan 29 21:09:41 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:09:41 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up
[Jan 29 21:09:41 2009] ms_rsend requested unload...
[Jan 29 21:09:41 2009] debug: trying to load core module [ms_rsend]
[Jan 29 21:09:41 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 21:09:41 2009] Databases loaded
[Jan 29 21:09:41 2009] Info: Reflecting database records.
[Jan 29 21:09:41 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 21:09:41 2009] trying to load [cs_appendtopic]
[Jan 29 21:09:41 2009] [cs_appendtopic] Loaded successfully
[Jan 29 21:09:41 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:09:41 2009] trying to load [cs_enforce]
[Jan 29 21:09:41 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:09:41 2009] trying to load [ns_maxemail]
[Jan 29 21:09:41 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:09:41 2009] trying to load [os_info]
[Jan 29 21:09:41 2009] os_info: Loading configuration directives...
[Jan 29 21:09:41 2009] os_info: OSInfoDBName is not defined in Services configuration file, using default os_info.db
[Jan 29 21:09:41 2009] os_info: Directive OSInfoDBName loaded (os_info.db)...
[Jan 29 21:09:41 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:09:41 2009] trying to load [hs_request]
[Jan 29 21:09:41 2009] hs_request loaded
[Jan 29 21:09:41 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:09:41 2009] NickServ: Sleep!sleep@192.168.0.102 automatically identified for nick Sleep
[Jan 29 21:09:41 2009] Server irc.uswave.net is done syncing
[Jan 29 21:11:07 2009] OperServ: Sleep: restart
[Jan 29 21:11:07 2009] Restarting
[Jan 29 21:11:07 2009] Every UserKey must be different. It's for YOUR safety! Remember that!
[Jan 29 21:11:07 2009] Loading IRCD Protocol Module: [unreal32]
[Jan 29 21:11:07 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:11:07 2009] Loading Encryption Module: [enc_none]
[Jan 29 21:11:07 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:11:07 2009] Anope 1.8.0 (1899) (ircd protocol: UnrealIRCd 3.2+) starting up
[Jan 29 21:11:07 2009] ms_rsend requested unload...
[Jan 29 21:11:07 2009] debug: trying to load core module [ms_rsend]
[Jan 29 21:11:07 2009] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 29 21:11:08 2009] debug: trying to load core module [bs_fantasy_help]
[Jan 29 21:11:08 2009] debug: status: [4][Module Error, File does not exist]
[Jan 29 21:11:08 2009] Databases loaded
[Jan 29 21:11:08 2009] Info: Reflecting database records.
[Jan 29 21:11:08 2009] Connected to Server 1 (127.0.0.1:6667)
[Jan 29 21:11:08 2009] trying to load [cs_appendtopic]
[Jan 29 21:11:08 2009] [cs_appendtopic] Loaded successfully
[Jan 29 21:11:08 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:11:08 2009] trying to load [cs_enforce]
[Jan 29 21:11:08 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:11:08 2009] trying to load [ns_maxemail]
[Jan 29 21:11:08 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:11:08 2009] trying to load [os_info]
[Jan 29 21:11:08 2009] os_info: Loading configuration directives...
[Jan 29 21:11:08 2009] os_info: OSInfoDBName is not defined in Services configuration file, using default os_info.db
[Jan 29 21:11:08 2009] os_info: Directive OSInfoDBName loaded (os_info.db)...
[Jan 29 21:11:08 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:11:08 2009] trying to load [hs_request]
[Jan 29 21:11:08 2009] hs_request loaded
[Jan 29 21:11:08 2009] status: [0][Module, Okay - No Error]
[Jan 29 21:11:09 2009] NickServ: Sleep!sleep@192.168.0.102 automatically identified for nick Sleep
[Jan 29 21:11:09 2009] Server irc.uswave.net is done syncing

Reply to This Paste

(leave blank to make this paste permanent)
(if set as private)