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