From 9cf5b337baa2af3dec07308427a9f4872bde8ed8 Mon Sep 17 00:00:00 2001 From: x99bachelart Date: Fri, 5 Sep 2003 12:31:21 +0000 Subject: [PATCH] configuration files --- install.d/config.inc.php | 49 ++++++++++++++++++++++++++++++++++++++++++++++ install.d/password.inc.php | 5 +++++ 2 files changed, 54 insertions(+) create mode 100644 install.d/config.inc.php create mode 100644 install.d/password.inc.php diff --git a/install.d/config.inc.php b/install.d/config.inc.php new file mode 100644 index 0000000..463133b --- /dev/null +++ b/install.d/config.inc.php @@ -0,0 +1,49 @@ +date>=$a->date); +} + +// spool config in spool.inc.php +$news['maxspool'] = 3000; + +// encoded headers +$news['hdecode'] = array('from','name','organization','subject'); + +// headers in article.php +$news['head'] = array( + 'From' => 'from', + 'Subject' => 'subject', + 'Newsgroups' => 'newsgroups', + 'Followup-To' => 'followup', + 'Date' => 'date', + 'Organization' => 'organization', + 'References' => 'references', + 'X-Face' => 'xface', + ); + +// overview configuration in article.php +$news['threadtop'] = 5; +$news['threadbottom'] = 5; + +// wordwrap configuration +$news['wrap'] = 80; + +// overview configuration in thread.php +$news['max'] = 50; + +// custom headers in post.php +$news['customhdr'] = "Content-Type: text/plain; charset=iso-8859-15\n" + ."Mime-Version: 1.0\n" + ."Content-Transfer-Encoding: 8bit\n" + ."HTTP-Posting-Host: ".$_SERVER['REMOTE_HOST']."\n" + ."User-Agent: Banana 0.7beta\n"; + +?> diff --git a/install.d/password.inc.php b/install.d/password.inc.php new file mode 100644 index 0000000..3eb42fb --- /dev/null +++ b/install.d/password.inc.php @@ -0,0 +1,5 @@ + -- 2.1.4