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 |
$article_show["Organization"]=false; |
59 |
$article_show["Date"]=true; |
60 |
$article_show["Message-ID"]=true; |
61 |
$article_show["References"]=true; |
62 |
$article_show["User-Agent"]=true; |
63 |
$article_showthread=0; |
64 |
|
65 |
// Attachments |
66 |
$attachment_show=true; |
67 |
$attachment_delete_alternative=true; // delete non-text mutipart/alternative |
68 |
$attachment_uudecode=false; |
69 |
|
70 |
// Security settings |
71 |
$send_poster_host=false; |
72 |
$readonly=false; |
73 |
$testgroup=true; |
74 |
$validate_email=1; |
75 |
|
76 |
// Misc |
77 |
$title="suika.*"; |
78 |
$organization="http://suika.fam.cx/"; |
79 |
$setcookies=true; |
80 |
$compress_spoolfiles=false; |
81 |
$cache_articles=false; |
82 |
$date_format="Y/m/d"; |
83 |
|
84 |
include("english.lang"); // load the english language-definitions first because |
85 |
// some of the other definitions are incomplete |
86 |
include($file_language); |
87 |
|
88 |
?> |