diff --git a/html/setup/global.html b/html/setup/global.html index c7a8ed67..af8f7e66 100644 --- a/html/setup/global.html +++ b/html/setup/global.html @@ -12,7 +12,7 @@
-Last update 10-Feb-2002
+Last update 13-Feb-2002
MBSE BBS Setup - Global Setup
@@ -31,8 +31,8 @@ Here you can enter 40 fidonet addresses. These are 5d addresses.
System name The name of your BBS -Domain name Your internet domain name (or a fake name if you have - no direct connection). +Domain name Your internet mail domain name (or system host.domain.com + if you don't have a maildomain). Sysop uid The Unix name of your Sysop account Sysop Fido The Fidonet name of your Sysop account Location 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:-
-Note: the terms Dial ISP and Perm ISP 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 www.linuxdoc.org, it's all there. diff --git a/mbsetup/ledit.c b/mbsetup/ledit.c index 7259c218..3967c686 100644 --- a/mbsetup/ledit.c +++ b/mbsetup/ledit.c @@ -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- No ISP. If you don't have any connection to the internet +
- No internet. 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 user@f2802.m280.z2.fidonet.org Note, the username is their Unix name when sending email. -
- Dial ISP. 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 +
- No maildomain. 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 - user@f2802.m280.z2.fidonet.org Note, the username is their - Unix name. If you have your own maildomain, don't use this option, use the - next option: -
- Perm ISP. If you are permanent connected to the internet + user@f2802.m280.z2.fidonet.org 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: +
- Own maildomain. 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 user@yourbbs.domain.org. Note, the username is their - Unix name. + Unix name and yourbbs.domain.org must be an existing internet domain.
whene done."); + showhelp((char *)"Toggle ^Internet Email Mode^ with spacebar, press whene done."); do { set_color(YELLOW, BLUE); show_emailmode(y, x, val); diff --git a/mbsetup/m_global.c b/mbsetup/m_global.c index 96a70132..48e44299 100644 --- a/mbsetup/m_global.c +++ b/mbsetup/m_global.c @@ -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")