1 |
wakaba |
1.1 |
<? |
2 |
|
|
// directories and files |
3 |
|
|
$spooldir="spool"; |
4 |
|
|
$imgdir="img"; |
5 |
|
|
$file_newsportal="newsportal.php"; |
6 |
|
|
$file_groups="index.php"; |
7 |
|
|
$file_thread="thread.php"; |
8 |
|
|
$file_article="article.php"; |
9 |
|
|
$file_attachment="attachment.php"; |
10 |
|
|
$file_post="post.php"; |
11 |
|
|
$file_language="extras/lang/japanese.lang"; |
12 |
|
|
$file_footer=""; |
13 |
|
|
|
14 |
|
|
// newsserver setup |
15 |
|
|
$server="suika.fam.cx"; |
16 |
|
|
$port=119; |
17 |
|
|
// $post_server=""; |
18 |
|
|
// $post_port=119; |
19 |
|
|
$maxfetch=0; |
20 |
|
|
$initialfetch=0; |
21 |
|
|
$server_auth_user=""; |
22 |
|
|
$server_auth_pass=""; |
23 |
|
|
|
24 |
|
|
// thread-layout |
25 |
|
|
$thread_treestyle=7; |
26 |
|
|
$thread_fontPre="<span>"; |
27 |
|
|
$thread_fontPost="</span>"; |
28 |
|
|
$thread_showDate=true; |
29 |
|
|
$thread_showSubject=true; |
30 |
|
|
$thread_showAuthor=true; |
31 |
|
|
$thread_maxSubject=80; |
32 |
|
|
$maxarticles=600; |
33 |
|
|
$maxarticles_extra=100; |
34 |
|
|
$age_count=3; |
35 |
|
|
$age_time[1]=86400; |
36 |
|
|
$age_color[1]="red"; |
37 |
|
|
$age_time[2]=259200; |
38 |
|
|
$age_color[2]="#999900"; |
39 |
|
|
$age_time[3]=604800; |
40 |
|
|
$age_color[3]="#00bb00"; |
41 |
|
|
$thread_sorting=-1; |
42 |
|
|
$articles_per_page=50; |
43 |
|
|
$startpage="first"; |
44 |
|
|
|
45 |
|
|
// frames |
46 |
|
|
//$frame_article="article"; |
47 |
|
|
//$frame_thread="thread"; |
48 |
|
|
//$frame_groups="_top"; |
49 |
|
|
//$frame_post="_top"; |
50 |
|
|
//$frame_threadframeset="_top"; |
51 |
|
|
$frame_externallink="_top"; |
52 |
|
|
|
53 |
|
|
// article layout |
54 |
|
|
$article_show["Subject"]=true; |
55 |
|
|
$article_show["From"]=true; |
56 |
|
|
$article_show["Newsgroups"]=true; |
57 |
|
|
$article_show["Followup"]=true; |
58 |
wakaba |
1.5 |
$article_show["organization"] = false; |
59 |
wakaba |
1.1 |
$article_show["Date"]=true; |
60 |
|
|
$article_show["Message-ID"]=true; |
61 |
|
|
$article_show["References"]=true; |
62 |
wakaba |
1.4 |
$article_show["x-moe"] = true; |
63 |
|
|
$article_show["x-brother"] = true; |
64 |
|
|
$article_show["x-syster"] = true; |
65 |
|
|
$article_show["x-daughter"] = true; |
66 |
|
|
$article_show["x-wife"] = true; |
67 |
|
|
$article_show["x-respect"] = true; |
68 |
|
|
$article_show["user-agent"] = true; |
69 |
|
|
$article_show["x-newsreader"] = true; |
70 |
|
|
$article_show["x-mailer"] = true; |
71 |
|
|
$article_show["x-uri"] = true; |
72 |
|
|
$article_show["list-id"] = true; |
73 |
|
|
$article_show["x-mail-count"] = true; |
74 |
|
|
$article_show["x-weather"] = true; |
75 |
|
|
$article_show["x-copyright"] = true; |
76 |
|
|
$article_show["comments"] = true; |
77 |
|
|
$article_show["keywords"] = true; |
78 |
wakaba |
1.1 |
$article_showthread=0; |
79 |
|
|
|
80 |
|
|
// Attachments |
81 |
|
|
$attachment_show=true; |
82 |
|
|
$attachment_delete_alternative=true; // delete non-text mutipart/alternative |
83 |
|
|
$attachment_uudecode=false; |
84 |
|
|
|
85 |
|
|
// Security settings |
86 |
|
|
$send_poster_host=false; |
87 |
|
|
$readonly=false; |
88 |
|
|
$testgroup=true; |
89 |
|
|
$validate_email=1; |
90 |
|
|
|
91 |
|
|
// Misc |
92 |
|
|
$title="suika.*"; |
93 |
|
|
$organization="http://suika.fam.cx/"; |
94 |
|
|
$setcookies=true; |
95 |
|
|
$compress_spoolfiles=false; |
96 |
|
|
$cache_articles=false; |
97 |
|
|
$date_format="Y/m/d"; |
98 |
|
|
|
99 |
|
|
include("english.lang"); // load the english language-definitions first because |
100 |
|
|
// some of the other definitions are incomplete |
101 |
|
|
include($file_language); |
102 |
|
|
|
103 |
|
|
?> |