Changed the maildomain setup screens and docs.

This commit is contained in:
Michiel Broek 2002-02-13 19:52:21 +00:00
parent cc87df6807
commit 55e1920279
3 changed files with 19 additions and 20 deletions

View File

@ -12,7 +12,7 @@
</HEAD>
<BODY>
<BLOCKQUOTE>
<h5>Last update 10-Feb-2002</h5>
<h5>Last update 13-Feb-2002</h5>
<P>&nbsp;<P>
<H1>MBSE BBS Setup - Global Setup</H1>
@ -31,8 +31,8 @@ Here you can enter 40 fidonet addresses. These are 5d addresses.
<P>
<pre>
<strong>System name </strong>The name of your BBS
<strong>Domain name </strong>Your internet domain name (or a fake name if you have
no direct connection).
<strong>Domain name </strong>Your internet mail domain name (or system host.domain.com
if you don't have a maildomain).
<strong>Sysop uid </strong>The Unix name of your Sysop account
<strong>Sysop Fido </strong>The Fidonet name of your Sysop account
<strong>Location </strong>The Location of your BBS
@ -298,23 +298,24 @@ and gated news articles to Fidonet.
Email and news is setup here. There are three possible configurations which you
can set with 1.15.11:
<ul>
<li><strong>No ISP</strong>. If you don't have any connection to the internet
<li><strong>No internet</strong>. If you don't have any connection to the internet
use this setting. Email will come from the default Fidonet UUCP gate and will be send out
via the UUCP gate. Users have email addresses like
<strong>user@f2802.m280.z2.fidonet.org</strong> Note, the username is their
Unix name when sending email.
<li><strong>Dial ISP</strong>. If you dial the internet regulary or are connected
with a cable modem without a valid DNS (Nameserver) entry you should use
this mode. Email will be sent via your local SMTP port, then through your
<li><strong>No maildomain</strong>. If have internet but don't have your own
maildomain (most dialup systems) you should use this mode.
Email will be sent via your local SMTP port, then through your
own sendmail (or whatever you use) to your ISP.
As soon as you are connected to the internet
the mail will be sent to your ISP's mailer. In your sendmail you should
define the mailer of your ISP as Smarthost. Incoming email will still come
from the UUCP gate. Users have email addresses like
<strong>user@f2802.m280.z2.fidonet.org</strong> Note, the username is their
Unix name. If you have your own maildomain, don't use this option, use the
next option:
<li><strong>Perm ISP</strong>. If you are permanent connected to the internet
<strong>user@f2802.m280.z2.fidonet.org</strong> Incoming email comes from
the default Fidonet UUCP gate.
Note, the username is their Unix name.
If you have your own maildomain, don't use this option, use the next option:
<li><strong>Own maildomain</strong>. If you are permanent connected to the internet
either with a static or dynamic IP address use this option. Use this option
also if you have an UUCP domain and have a dialup UUCP connection. Also
you can use this for dialup if you have your own maildomain without UUCP,
@ -325,11 +326,9 @@ can set with 1.15.11:
Incoming email will come directly from the internet, but if someone sends
email via the UUCP gate it is also accepted. Users have email addresses like
<strong>user@yourbbs.domain.org</strong>. Note, the username is their
Unix name.
Unix name and yourbbs.domain.org must be an existing internet domain.
</ul>
Note: the terms <b>Dial ISP</b> and <b>Perm ISP</b> are not correct, it doesn't
matter how you are connected, it only matters if you have a maildomain or not.
Another word of wisdom from my side, configuration of the internet, ppp, sendmail etc. is not discussed
A word of wisdom from my side, configuration of the internet, ppp, sendmail etc. is not discussed
here, see the HOWTO's and other documentation that exists at <A HREF="http://www.linuxdoc.org">
www.linuxdoc.org</A>, it's all there.

View File

@ -1181,9 +1181,9 @@ int edit_msgtype(int y, int x, int val)
char *getemailmode(int val)
{
switch (val) {
case E_NOISP: return (char *)"No ISP ";
case E_TMPISP: return (char *)"Dial. ISP";
case E_PRMISP: return (char *)"Perm. ISP";
case E_NOISP: return (char *)"No internet ";
case E_TMPISP: return (char *)"No maildomain ";
case E_PRMISP: return (char *)"Own maildomain";
default: return NULL;
}
}
@ -1201,7 +1201,7 @@ int edit_emailmode(int y, int x, int val)
{
int ch;
showhelp((char *)"Toggle ^ISP Email Mode^ with spacebar, press <Enter> whene done.");
showhelp((char *)"Toggle ^Internet Email Mode^ with spacebar, press <Enter> whene done.");
do {
set_color(YELLOW, BLUE);
show_emailmode(y, x, val);

View File

@ -163,7 +163,7 @@ void e_reginfo(void)
switch(select_menu(10)) {
case 0: return;
case 1: E_STR( 7,25,35, CFG.bbs_name, "Name of this ^BBS^ system")
case 2: E_STR( 8,25,35, CFG.sysdomain, "Full internet ^domain^ name of this system")
case 2: E_STR( 8,25,35, CFG.sysdomain, "Internet ^mail domain^ name of this system")
case 3: E_STR( 9,25, 8, CFG.sysop, "^Unix name^ of the sysop")
case 4: E_STR(10,25,35, CFG.sysop_name, "^Fidonet name^ of the sysop")
case 5: E_STR(11,25,35, CFG.location, "^Location^ (city) of this system")