-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCHANGELOG
2076 lines (1266 loc) · 44.4 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
往後版本修改記錄方式如下:
。程式碼排版整理、微調 與 相關文件、範例檔修正:
僅用 git 版控記錄相關 commit , 並盡速上傳至 github。
。重大程式碼修改以及各種 bug 修正 (會影響到使用者操作等情況):
會發佈公告在 夢之大地 ( telnet://ccns.cc ) Dream_commit 看板
以下為風之塔(Wind's Top BBS)原始版本相關修改記錄:
> ----------------------------------------------------------------------------
。2009/07/02 gaod 重新整理程式碼,相容於 gcc4.x
。2004/08/10 visor 新增轉信電子簽章
修改檔案 innbbsd/bbslink.c
。2004/04/20 visor 修改 maple/favorite.c favorite_main() 造成斷線的問題
修改檔案 maple/favorite.c
。2004/04/20 visor 修改 maple/cache.c observeshm_load() 造成斷線的問題
修改檔案 maple/cache.c
。2004/03/13 visor 修改 so/pydict.c so/dictd.c 安全性問題
修改檔案 so/pydict.c so/dictd.c
。2004/01/12 visor 修改 expire.c 砍錯文章 bug
修改檔案 util/expire.c
。2003/08/29 visor 修改 gem-check 誤砍文章的問題
修改檔案 util/gem-check.c
。2003/08/18 visor 修改 bmtad 收 QP Encode 文章的問題
修改檔案 bmtad/bmtad.c lib/str_decode.c
。2003/08/17 visor 新增 看板資訊統計
修改檔案 maple/board.c maple/post.c innbbsd/receive_article.c include/struct.h
新增檔案 util/brdstat.c so/brdstat.c
。2003/08/13 verit 新增 處罰名單加上搜尋
修改檔案 so/violate.c
。2002/06/13 visor 新增 循環閱讀
修改檔案 maple/acct.c maple/xover.c
。2002/06/13 visor 關閉 小雞對戰
修改檔案 so/pip.c maple/talk.c
。2002/06/13 visor 新增 推薦文章
修改檔案 maple/post.c
。2002/06/13 visor 新增 孔明棋
新增檔案 so/km.c
。2002/06/12 visor 修改 使用者名單資料結構
修改檔案 maple/talk.c
。2002/06/03 visor 修改 連署系統
修改檔案 so/newboard.c
。2002/05/10 visor 新增 將風之塔包裝成 Ports
。2002/04/11 visor 修改 使用者修改功能
修改檔案 maple/post.c maple/acct.c include/hdr.h include/struct.h
include/config.h include/global.h
。2002/03/30 visor 新增 系統觀察名單
maple/bbsd.c maple/cache.c maple/menu.c include/struct.h
新增檔案 so/observe.c
。2002/03/21 visor 修改 新聞閱讀系統(抓取路徑問題)
修改檔案 util/news.c
。2002/03/11 visor 新增 課表報時系統
新增檔案 util/classtable_alert.c maple/cache.c maple/bbsd.c
。2002/03/08 visor 修改 新聞閱讀系統(類別上限)
修改檔案 so/news_viewer.c
。2002/03/08 visor 修改 新聞閱讀系統(使用 proxy)
修改檔案 util/news.c
。2002/03/07 visor 修改 傳訊(收訊者下站的問題)
修改檔案 maple/talk.c
。2002/03/06 visor 新增 好友名單搜尋功能
修改檔案 maple/talk.c
。2002/03/05 visor 修改 好友上站通知(不傳訊給壞人)
修改檔案 maple/talk.c
。2002/03/05 visor 修改 系統網友協尋(不傳訊給壞人)
修改檔案 maple/talk.c
。2002/02/10 visor 新增 拒收訊息列表
修改檔案 maple/talk.c
。2002/01/31 visor 新增 新版功課表
新增檔案 so/table2.c
。2001/11/21 visor 新增 串接文章模式搜尋站內文章
修改檔案 maple/post.c
。2001/07/31 visor 修改 使用者喜好設定(擴充成64bit)
修改檔案 maple/acct.c
。2001/07/17 visor 新增 新聞閱讀系統
新增檔案 so/news_viewer.c util/news.c
。2001/01/01 visor 新增 ChangeLog
新增檔案 ChangeLog
> ----------------------------------------------------------------------------
以下為夢之大地 ( telnet://ccns.cc ) Dream_commit 看板相關修改記錄:
> ----------------------------------------------------------------------------
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r1
時間: Tue Nov 24 11:04:12 2009
Time: 2009/11/24
Revision: 1
Type: Bug fix (thanks to wenen)
Log:
Refined the brh_unread() funcion.
Now we can see [1;31m★[m at unread-board.
You may have to change your setting:
(D)ream -> (U)ser -> (S)etting -> (F)avorite -> 2 ■ 新文章
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r2
時間: Tue Nov 24 16:44:54 2009
Time: 2009/11/24
Revision: 2
Type: Bug fix (thanks to float)
Log:
Moderated board function is changed, we use readlevel to control our brdtype.
BRD_V_BIT is removed now.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r3
時間: Tue Nov 24 18:11:46 2009
Time: 2009/11/24
Revision: 3
Type: Bug fix (thanks to iwhiori)
Log:
BM_menu->編輯發文公告's return value is incorrect.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r4
時間: Tue Nov 24 18:12:54 2009
Time: 2009/11/24
Revision: 4
Type: New function (thanks to damntree)
Log:
post_write() is back!
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r5
時間: Tue Nov 24 18:14:52 2009
Time: 2009/11/24
Revision: 5
Type: Bug fix (thanks to birdhackor)
Log:
Fixed the post_verb.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r6
時間: Tue Nov 24 18:16:21 2009
Time: 2009/11/24
Revision: 6
Type: Bug fix (thanks to tooya)
Log:
Regfile is fixed, now is available : )
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r7
時間: Tue Nov 24 18:54:45 2009
Time: 2009/11/24
Revision: 7
Type: Bug fix
Log:
Fixed multi-login and guest-max messages.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r8
時間: Tue Nov 24 19:34:30 2009
Time: 2009/11/24
Revision: 8
Type: Bug fix
Log:
There are some problems in post_expire.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r9
時間: Wed Nov 25 09:49:31 2009
Time: 2009/11/25
Revision: 9
Type: Adjusting (thanks to howj)
Log:
Moved ([1;36mT[m)alk【 休閒聊天區 】 to main menu.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r10
時間: Wed Nov 25 10:34:48 2009
Time: 2009/11/25
Revision: 10
Type: Adjusting (thanks to thusnoy)
Log:
Modified ([1;36mR[m)ead 閱讀信件 as default.
Removed ([1;36mM[m)ail【 信件工具區 】from guest's menulist.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r11
時間: Wed Nov 25 10:45:32 2009
Time: 2009/11/25
Revision: 11
Type: Bug fix (thanks to bestia)
Log:
([1;36mC[m)osign【 連署申請區 】 now is available.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r12
時間: Wed Nov 25 11:40:35 2009
Time: 2009/11/25
Revision: 12
Type: Bug fix (thanks to NomedEmag & DavidWei)
Log:
Fixed the problem of MODIFY_TAG when using cleanrecommend.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r13
時間: Wed Nov 25 11:57:25 2009
Time: 2009/11/25
Revision: 13
Type: Future work
Log:
- visio: [experimental] expand output buffer size.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r14
時間: Wed Nov 25 12:15:24 2009
Time: 2009/11/25
Revision: 14
Type: Bug fix (thanks to Ftmj)
Log:
- post: lazy_delete is work on POST_BOTTOM.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r15
時間: Wed Nov 25 12:32:53 2009
Time: 2009/11/25
Revision: 15
Type: Bug fix (thanks to LODAM)
Log:
- myfavorite: 'h' is removed.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r16
時間: Wed Nov 25 21:17:59 2009
Time: 2009/11/25
Revision: 16
Type: Bug fix
Log:
- visio: Fixed login timeout message.
ID key-in function will auto-matched for SYSOPs.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r17
時間: Wed Nov 25 21:24:46 2009
Time: 2009/11/25
Revision: 17
Type: New function
Log:
- post.c: add "看板閱讀記錄" to BM menu
- board.c: add brd_isoes_BMlog function
- expire.c: auto ulink log every week
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r18
時間: Wed Nov 25 22:21:16 2009
Time: 2009/11/25
Revision: 18
Type: New function
Log:
- post.c: (1) add xpost record
(2) sorry, BRD_MODIFY now is fixed
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r19
時間: Wed Nov 25 23:40:27 2009
Time: 2009/11/25
Revision: 19
Type: New function
Log:
- board.c: add class_yank2 function, you can press 'i' at board list to switch
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r20
時間: Wed Nov 25 23:43:50 2009
Time: 2009/11/25
Revision: 20
Type: Bug fix (thanks to setsuna)
Log:
- board.c: 即時熱門看板/ now is available
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r21
時間: Wed Nov 25 23:46:05 2009
Time: 2009/11/25
Revision: 21
Type: New function
Log:
- post.c: BM can set post_battr_threshold with 劣文數目
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r22
時間: Wed Nov 25 23:52:48 2009
Time: 2009/11/25
Revision: 22
Type: Bug fix
Log:
- post.c: 置底文刪除方式
1. 先取消掉前面的 [1;36mm[m
2. 查出該篇文章的看板編號(以下面的例子來說置底文是第 6747 篇)
> 6746 11/25 aaaaa ◆ 123
[1;33m★ [1;36mm[m 11/21 bbbbb ◇ 456
3. 直接用大D(6747~6747)或小d刪除(會顯示刪除訊息)
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r23
時間: Sun Dec 6 19:07:51 2009
Time: 2009/12/06
Revision: 23
Type: Bug fix
Log:
- account.c: sorry, there is a critical fault when execution time. (every Sat.)
delete useless code & refine
- log/: mkdir for logger to work.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r24
時間: Sun Dec 6 19:24:00 2009
Time: 2009/12/06
Revision: 24
Type: Bug fix
Log:
- checkmail.c: modified account-limit to 60000
- reaper.c: critical error ; (
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r25
時間: Sun Dec 6 21:23:19 2009
Time: 2009/12/06
Revision: 25
Type: Bug fix/New function (thanks to girlpan and kimijacky)
Log:
- post.c: unlimited post-modify
only BM can reject post
now BM can press 'Ctrl + N' to delete any post without any commit
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r26
時間: Tue Dec 8 21:51:52 2009
Time: 2009/12/08
Revision: 26
Type: New function/Future work
Log:
- src/innbbsd: patch all innbbsd from Maple-itoc
- innd/: clean up
- postfix is working now, thanks to gaod : )
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r27
時間: Wed Dec 9 12:37:37 2009
Time: 2009/12/09
Revision: 27
Type: New function/Bug fix
Log:
- mail.c: initial work
- bbsmail.c: initial work
- menu.c: now we can use ([1;36mA[m)utoFor 站內信自動轉寄[m to forward bbsmail
- struct.h: add flag "UFO2_DEF_LOCALMAIL"
- bbsmail.c: initial work
- acct.c: for nospam, you can turn on "□ 只收站內信"
- post.c: refine layout
special thanks to spearsea, you are my godness!
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r28
時間: Fri Dec 18 00:33:04 2009
Time: 2009/12/18
Revision: 28
Type: New Function
Log:
- gem.c: add GEM_LMANAGER flag
we can modify fold title with "[" + "ID" to add a lite-manager
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r29
時間: Fri Dec 18 10:09:25 2009
Time: 2009/12/18
Revision: 29
Type: Bug fix
Log:
- post: add timer to refresh brh when post/recommend/edit
- board: refine unread determination
- myfavorite: refine unread determination
You may have to logout and change your setting
(D)ream -> (U)ser -> (S)etting -> (F)avorite
■ 新文章 will show [1;31m★[m when new post/recommend is created
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r30
時間: Fri Dec 18 10:42:38 2009
Time: 2009/12/18
Revision: 30
Type: New Function
Log:
- brdmail: (testing) now we can send a mail-post to brd
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r31
時間: Tue Dec 22 01:41:44 2009
Time: 2009/12/22
Revision: 31
Type: Bug fix (thanks to KeithYeh)
Log:
- board: refine code
- myfavorite: refine code
- acct: refine code
You may have to logout and change your setting
(D)ream -> (U)ser -> (S)etting -> (F)avorite
now we use ■ 新推文 as our control flag
■ 新推文 => new ( post or recommend ) => show [1;31m★[m
□ 新推文 => new post => show [1;31m★[m
BTW, Traditional 'more' adds separator as a newline.
This is [1;33mbuggy[m, however we can support this by using wrapping
feature like "傳統分隔線加空行", you can press 'o' to enable it
[1;31m\[m 色彩顯示方式: [1;36m*預設格式化內容[30m |[m 原始ANSI控制碼[1;30m |[m 純文字
[1;31mw[m 斷行方式: 直接截行[1;30m |[36m*自動斷行[m
[1;31mm[m 斷行符號: 不顯示[1;30m |[36m*顯示[m
[1;31ml[m 文章標頭分隔線: 無[1;30m |[m 單行[1;30m |[m [1;33m*傳統分隔線加空行[m
[1;31mt[m 傳統狀態列與斷行方式: [1;36m*停用[30m |[m 啟用 [m
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r32
時間: Thu Dec 24 01:50:57 2009
Time: 2009/12/24
Revision: 32
Type: Bug fix (thanks to girlpan)
Log:
- post: post owners can use post_title now
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r33
時間: Fri Jan 29 22:57:41 2010
Time: 2010/01/29
Revision: 33
Type: New function/Bug fix (thanks to KeithYeh)
Log:
- acct: add brd@ to ban_addr
- perm: add flag PERM_SP
- board: fix "未定義討論區" (only simple work)
- checkmail: auto mail log to Dream_log.brd
- menu: add "重建信箱索引"
- mail: add m_setmboxdir()
- brdmail: refine[m
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r34
時間: Thu May 6 12:39:34 2010
Time: 2010/05/06
Revision: 34
Type: System Performance
Log:
- bbsd: tn_login will be closed when loading is overhead.
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r35
時間: Sat May 29 00:30:40 2010
Time: 2010/05/29
Revision: 35
Type: Bug fix (thanks to KeithYeh and girlpan)
Log:
- board.c - only system admin have powerful access authority for secret boards
- post.c - refine code (postscore and unlock)
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r36
時間: Sat May 29 17:12:42 2010
Time: 2010/05/29
Revision: 36
Type: Bug fix (thanks to samkokoro)
Log:
- post.c - refine code
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r37
時間: Mon Jun 7 23:26:45 2010
Time: 2010/06/07
Revision: 37
Type: Bug fix (thanks to BenHe and joiedevivre)
Log:
- post.c - fix wrong msg and board information
battr & BRD_MODIFY: "作者修文" => "★ 禁止作者修文"
battr & ~BRD_MODIFY: "作者修文" => "★ 允許作者修文"
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r38
時間: Sat Jun 12 22:24:54 2010
Time: 2010/06/12
Revision: 38
Type: Hardware upgrade/Software update/System performance
Log:
- Hardware Env. -
CPU AMD AthlonII X4-630
MB Gigabyte 880GM-UD2H
RAM A-DATA DDR3-1333 2G * 2
HDD WD VelociRaptor 1500HLFS * 3
(1/3 has some problems, [1;33mneed to be replaced ASAP[m)
PSU Be quiet E6-400W DELUXE
CASE CoolerMaster 690
NIC Realtek - 8111D
Intel Pro 1000MT (82540EM)
- Software Env. -
OS CentOS 5.5 with Linux Kernel 2.6.18-194.3.1.el5PAE
gcc 4.1.2 20080704 (Red Hat 4.1.2-48)
BBS WindtopBBS-current 2009 cache-modified
A server with well-tuned networks can perform better connection quality.
TCP tuning can adjust the network congestion avoidance parameters of TCP
connections over high-bandwidth, high-latency networks.
- TCP tuning: sysctl -
net.ipv4.tcp_syncookies = 1
net.core.wmem_max = 12582912
net.core.rmem_max = 12582912
net.ipv4.tcp_rmem = 10240 87380 12582912
net.ipv4.tcp_wmem = 10240 87380 12582912
net.core.netdev_max_backlog = 5000
- TCP tuning: ethtool -
Ring parameters for eth1:
Current hardware settings:
RX: 1024
TX: 1024
- bbsd.c - tn_login will be closed when loading is overhead.
(load in 1 min > 20)
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r39
時間: Tue Jun 15 16:00:21 2010
Time: 2010/06/15
Revision: 39
Type: Bug fix
Log:
There was a critical problem about login to main menu ; (
- bbsd.c - comment classtable_free() and classtable_main() in tn_login
- config.h - #undef HAVE_COUNT_BOARD
#undef MODE_STAT
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r40
時間: Thu Jun 17 20:53:20 2010
Time: 2010/06/17
Revision: 40
Type: New function/System performance
Log:
- reaper.c - enlarge buffer and modify remove setting
#define DAY_NEWUSR 180 /* 登入次數小於十次, 180天內未上站 */
#define DAY_FORFUN 730 /* 未認證, 兩年內未上站 */
#define DAY_OCCUPY 1825 /* 已認證, 五年內未上站 */
removed account will be reserved for several weeks...
- acct.c - initial work for SYSOPs log
- account.c - initial work for SYSOPs log
- Board usies log will be removed in every Monday morning.[m
> -------------------------------------------------------------------------- <
作者: cache (cache) 站內: Dream_commit
標題: DreamBBS commit r41
時間: Fri Jun 18 13:01:15 2010
Time: 2010/06/18
Revision: 41
Type: New function
Log:
- reaper.c - new policy about define value, lazyBM is setting to 30 days
define EADDR_GROUPING 5 - system will check multi-IDs now
- account.c - refine code and clean useless logger
- acct.c - when SYSOPs access any user data, this action will be logged now
> -------------------------------------------------------------------------- <
作者: cache (夢之大帝) 站內: Dream_commit
標題: DreamBBS commit r42
時間: Fri Jun 18 16:35:20 2010
Time: 2010/06/18
Revision: 42
Type: New function
Log:
- acct.c - refine logger, add BMset, Newboard, acct_show and acct_edit
- menu.c - add ([1;36m0[m)Admin 【 系統維護區 】[m
([1;36mB[m)oardadm 看板總管功能[m
([1;36mS[m)etBoard 設定看板[m
- maple.p - refine code
> -------------------------------------------------------------------------- <
作者: cache (夢之大帝) 站內: Dream_commit
標題: DreamBBS commit r43
時間: Fri Jun 18 20:38:21 2010
Time: 2010/06/18
Revision: 43
Type: Bug fix
Log:
- acct.c - refine log file path
- observe.c - for some bad guys, SYSOPs can trace his post history
> -------------------------------------------------------------------------- <
作者: cache (夢之大帝) 站內: Dream_commit
標題: DreamBBS commit r44
時間: Fri Jun 18 22:10:54 2010
Time: 2010/06/18
Revision: 44
Type: New function
Log:
- bank.c - add money_back(), it can get your old money back (before 2009.12)
[1;33mnew money = (old money + old bank)/2[m
Caution: this function will be available on [1;32m2010/06/18 ~ 2010/06/24[m
if you find a way to get service free, just enjoy it ^^~
- menu.c - add ([1;36mD[m)ream 【 夢大服務區 】[m
([1;36mC[m)ache 【 加值服務區 】[m
([1;36mM[m)yMoney 匯入舊夢幣[m
> -------------------------------------------------------------------------- <
作者: cache (夢之大帝) 站內: Dream_commit
標題: DreamBBS commit r45
時間: Fri Jun 18 22:14:44 2010
Time: 2010/06/18
Revision: 45
Type: New function/Bug fix
Log:
- bank.c - it's working now...
- shop.c - add 暫時隱身術, 永久隱身術, 隱藏故鄉, 站長權限
> -------------------------------------------------------------------------- <
作者: cache (夢之大帝) 站內: Dream_commit
標題: DreamBBS commit r46
時間: Fri Jun 18 22:18:57 2010
Time: 2010/06/18
Revision: 46
Type: New function
Log:
- song.c - it's working now...
- menu.c - re-open ([1;36mR[m)equest 點歌系統[m
([1;36mR[m)equest 點歌歌本
([1;36mO[m)rderSongs 點歌紀錄
([1;36mS[m)ubmit 投稿專區 [m
Caution: request point [1;31mWON'T[m be added in current version, use carefully...[m
> -------------------------------------------------------------------------- <
作者: cache (夢之大帝) 站內: Dream_commit
標題: DreamBBS commit r47
時間: Sun Jun 20 11:26:17 2010
Time: 2010/06/20
Revision: 47
Type: Bug fix (thanks to lceCream)
Log:
- bank.c - fix Remittance function, add logger for money flow
> -------------------------------------------------------------------------- <
作者: cache (夢之大帝) 站內: Dream_commit
標題: DreamBBS commit r48
時間: Sun Jun 20 11:57:35 2010
Time: 2010/06/20
Revision: 48
Type: Bug fix
Log:
- song.c - refine code, add logger for anonymous orders
> -------------------------------------------------------------------------- <
作者: cache (夢之大帝) 站內: Dream_commit
標題: DreamBBS commit r49
時間: Sun Jun 20 13:08:33 2010
Time: 2010/06/20