Add a proper faq file.
This commit is contained in:
parent
a5b29b148e
commit
a506fbd34b
|
@ -0,0 +1,76 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* CHANGE THE LINE BELOW TO 'installed = true once you have edited this filter
|
||||
*/
|
||||
$installed = false;
|
||||
|
||||
// Set this to your administrative email address
|
||||
$admin = "admin@example.com";
|
||||
|
||||
include "config.inc.php";
|
||||
$title .= " - Privacy and FAQ";
|
||||
include "head.inc";
|
||||
|
||||
if(!$installed) {
|
||||
echo '<font size ="5em"><center><br />';
|
||||
echo 'ADMIN: Please edit the file "faq.php" in your SITE/common directory to match your needs,<br />';
|
||||
echo 'and change "$installed = false" to "$installed = true" ';
|
||||
echo 'to remove this notice and display your page.';
|
||||
echo '</center></font></body></html';
|
||||
exit();
|
||||
}
|
||||
|
||||
echo '<meta http-equiv="content-type" content="text/html; charset=UTF-8">';
|
||||
echo '<title>Privacy and FAQ</title>';
|
||||
echo '</head><body>';
|
||||
echo '<center>';
|
||||
|
||||
// Privacy
|
||||
echo '<h4>Privacy:</h4>';
|
||||
echo '<font size="4em">';
|
||||
|
||||
echo 'This server does not place your ip address in the headers of messages.<br />';
|
||||
echo 'There is a header specific to each user that is obfuscated to allow others to block, but is not personally identifiable.<br />';
|
||||
echo 'Passwords are never stored on the server but email address is stored.<br />';
|
||||
echo 'We do not share any user data with anyone outside of our servers.<br />';
|
||||
echo '<br />';
|
||||
echo '</font>';
|
||||
|
||||
// Abuse
|
||||
echo '<h4>Abuse:</h4>';
|
||||
echo '<font size="4em">';
|
||||
echo 'Spamming, trolling, forging etc. will all be addressed once the admin becomes aware this is taking place.<br />';
|
||||
echo 'You may notify ' . $admin . ' with issues.<br />';
|
||||
echo 'Forging complaints must be sent by the one who is being forged.<br />';
|
||||
echo '<br />';
|
||||
|
||||
echo 'Articles or users will not be removed for political/social/etc. opinions you (or I) don’t agree with.<br />';
|
||||
echo 'Please use the block filter for articles or users you do not wish to see.<br />';
|
||||
echo 'Articles considered illegal in the jurisdiction of the admin (U.S.) may be removed for legal reasons.<br />';
|
||||
echo '<br />';
|
||||
echo '</font>';
|
||||
|
||||
// Posting Restrictions
|
||||
echo '<h4>Posting Restrictions:</h4>';
|
||||
echo '<font size="4em">';
|
||||
echo 'Posting requires an account. No account is required for reading articles.<br />';
|
||||
echo 'Limits are placed on number of groups in crossposts, and all articles are filtered through a spam filter.<br />';
|
||||
|
||||
echo 'Limits on the number of posts per hour may be imposed. If you reach this limit you should be notified how long to wait.<br />';
|
||||
echo 'Other restrictions may also be imposed including common crossposting abuse.<br />';
|
||||
echo '<br />';
|
||||
echo '</font>';
|
||||
|
||||
// Filtering
|
||||
echo '<h4>Filtering:</h4>';
|
||||
echo '<font size="4em">';
|
||||
echo 'Incoming messages are filtered by the backend NNTP server.<br />';
|
||||
echo 'This is meant to keep groups useable, and is NOT meant to censor speech.<br />';
|
||||
echo '</br />';
|
||||
echo '</font>';
|
||||
echo '<hr></br />';
|
||||
include "../spoolnews/tail.inc";
|
||||
|
||||
echo '</body></html>';
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
|
||||
q: what is this ?
|
||||
a: it is a node of the rocksolid forums.
|
||||
The rocksolid forums are technically some news
|
||||
servers running private newsgroups together and offering web frontends
|
||||
for user access. the intention is to have redundant web forums, which
|
||||
are always up and reachable in a way.
|
||||
a2: some nodes may carry other groups, including common usenet groups.
|
||||
|
||||
q: what are the tos ?
|
||||
a: don't irritate the admins. they/we run these sites because we want
|
||||
to. Don't troll, post crap, illegal stuff, and it should be fine.
|
||||
|
||||
q: will you tolerate links to cp ?
|
||||
a: no (see above).
|
||||
|
||||
q: why do you use stoneage technology ?
|
||||
a1: because it's fun.
|
||||
a2: because it saves you (the user) and me (the admin) from some
|
||||
security holes the newer stuff brings with it (having said that, of
|
||||
course there are security holes in the old stuff as well...)
|
||||
a3: because it handles the job well (even on old hardware and minimal
|
||||
systems)
|
||||
|
||||
q: what do i do when this node is down or unreachable ?
|
||||
a: use any other rocksolid site, they all carry the same message base
|
||||
(and some of them other groups as well, like usenet, dovenet or freenet
|
||||
groups).
|
||||
|
||||
q: i discovered a piece of information that should not be here. what do
|
||||
i do ?
|
||||
a: ask in rocksolid.nodes.help for the admin of the node you are using
|
||||
and how to contact them.
|
||||
a2: For novabbs or rocksolidbbs, email admin@novabbs.com
|
||||
|
||||
q: what is the point of all of this ?
|
||||
a: it's free anonymous speech, and the fun of running a service that
|
||||
supports it.
|
||||
|
||||
q: can i run my own node ?
|
||||
a: sure you can. it is easier then it might look. contact us in the
|
||||
rocksolid.shared.rocksolid group.
|
||||
|
|
@ -4,4 +4,4 @@ mail:/spoolnews/mail.php
|
|||
files:/spoolnews/files.php
|
||||
register:/common/register.php
|
||||
groups:/common/grouplist.php
|
||||
#faq:/common/faq.txt
|
||||
#faq:/common/faq.php
|
||||
|
|
Loading…
Reference in New Issue