diff --git a/src/lgmail b/src/lgmail deleted file mode 100644 index 8dbdeb5f..00000000 --- a/src/lgmail +++ /dev/null @@ -1,136 +0,0 @@ -#!/bin/sh -# -# Print a feedback form that remembers who called it. -# - -back_str='Go back' -if [ "x$WWW_where" = "x" ]; then - WWW_where="$HTTP_REFERER" - if [ "x$WWW_where" = "x" ]; then - WWW_where="/lurk/lurker.html" - back_str="To the Lurker's Guide home page" - fi -fi - -cat << EOF -Content-type: text/html - - - -Lurker's Guide feedback - -Universe -Episodes -People -Resources -Encyclopedia - - - - -Home -Find -Index -Help - - - -

[Home] - -
-
- -

-
-
- -

- -Please check the Lurker's Guide Help page -first! It contains the answers to the most common questions I'm -asked (video availability, schedule information, and more.) -If your question is answered there, you will not get a reply. -Also, the people who maintain the guide aren't the people who make the TV -show. Comments and questions about the show should be posted to the -rec.arts.sf.tv.babylon5 newsgroup, which is read by the folks in charge of -Babylon 5. (But please don't post story ideas; there's a -mailing list -for those.) - -

-If you aren't asking a question, or you've checked the Help page, -please proceed. (Sorry for this extra step; I've been -getting tons of questions that are answered on the Help page, presumably -from people who saw the form and ignored the text above.) - -

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -

-Enter your real name and E-mail address in the following two -fields. If your browser supports "mailto" links, you can -send feedback -that way. - -

-

- - - -Name: E-Mail: -

-Type your comments below. -
- -

- -

-

-$back_str - - -EOF diff --git a/src/lgsend b/src/lgsend deleted file mode 100644 index 00bb563a..00000000 --- a/src/lgsend +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/sh -# -# Send mail from a feedback form. -# - -backstr="Go back" -if [ "x$WWW_where" = "x/lurk/lurker.html" ]; then - backstr="To the Lurker's Guide home page" -fi - -if [ "x$WWW_mailaddr" = "x" ]; then - WWW_mailaddr=nobody -fi - -if [ "x$WWW_feedback" != "x" ]; then - /usr/local/bin/dos2unix << EOF | /usr/lib/sendmail koreth -From: $WWW_mailaddr ($WWW_username) -To: koreth -Subject: Lurker's Guide - -[Remote host $REMOTE_HOST - $REMOTE_ADDR] -[$WWW_where] -[$HTTP_USER_AGENT] - -$WWW_feedback -EOF -fi - -cat << EOF -Content-type: text/html - - - -Feedback sent. - -Universe -Episodes -People -Resources -Encyclopedia - - - - -Home -Find -Index -Help - - - -

[Home] - -
-
- -

Thank you for your comments.

-

-Your comments have been mailed. -

-$backstr - - -EOF