several small updates

This commit is contained in:
Michiel Broek 2001-10-22 20:37:08 +00:00
parent aa634eb9b5
commit ba94b56602
4 changed files with 21 additions and 10 deletions

View File

@ -6,7 +6,7 @@ Michiel Broek mbroek@users.sourceforge.net 2:280/2802
Ken Bowley kbowley@users.sourceforge.net, 1:114/485@fidonet Ken Bowley kbowley@users.sourceforge.net, 1:114/485@fidonet
Redy Rodriguez redy@users.sourceforge.net 2:283/613.6 Redy Rodriguez redy@users.sourceforge.net 2:283/613.6
Scott Street sstreet98@users.sourceforge.net, 1:2600/135@fidonet Scott Street sstreet98@users.sourceforge.net, 1:2600/135@fidonet
Phil Kimble kimerud@users.sourceforge.net Phil Kimble kimerud@users.sourceforge.net 1:14/200@fidonet
All following people have contributed to the MBSE BBS project. I'm sure that All following people have contributed to the MBSE BBS project. I'm sure that

View File

@ -4063,19 +4063,28 @@ v0.33.17 21-May-2001
v0.33.18 27-Jul-2001 v0.33.18 27-Jul-2001
General:
The development team now has five members and the sources are
on sourceforge's cvs server.
Changed the name to MBSE BBS for Unix instead of Linux.
This version is ported but not well tested to FreeBSD.
Upgrade: Upgrade:
In your Mail Transport Agent (if you use it) replace the line In your Mail Transport Agent (if you use it) replace the line
"mbmail -r <nexthop> (recipients)" to mbmail "(recipients)". "mbmail -r <nexthop> (recipients)" to mbmail "(recipients)".
In postfix this is in the master.cf file. In postfix this is in the master.cf file.
With mbsetup menu 1.3.8 fill in the path to the *.msg path. With mbsetup menu 1.3.8 fill in the path to the *.msg path.
MBSE.FAQ:
New, maintained by P.E. Kimble aka King Kimerud
lang: lang:
Added Galego language by Redy Rodriguez. Added Galego language by Redy Rodriguez.
Corected Spanish language. Corrected Spanish language.
SETUP.sh: SETUP.sh:
Doesn't create .huslogin anymore for user bbs. Doesn't create .huslogin anymore for user bbs.
Script does now work on FreeBSD. Script does now work on FreeBSD but needs bash.
common.a: common.a:
Corrected some defines in parsedate.c to include/exclude the Corrected some defines in parsedate.c to include/exclude the
@ -4162,7 +4171,7 @@ v0.33.18 27-Jul-2001
The written door.sys file now has EOF character at the end. The written door.sys file now has EOF character at the end.
The written door.sys file now has a : after the comport. The written door.sys file now has a : after the comport.
Executing doors in nosuid mode (as real user) is now possible. Executing doors in nosuid mode (as real user) is now possible.
The can be switched on using mbsetup. This can be switched on using mbsetup. Info will be in FAQ.
Fixed security problem in Unix username and password entry. Fixed security problem in Unix username and password entry.
Now stoped nicely if started without controling tty. Now stoped nicely if started without controling tty.
Many bugs fixed in the full screen editor. Many bugs fixed in the full screen editor.

View File

@ -2,7 +2,7 @@ Frequently asked questions for MBSE BBS
Author: P.E. Kimble aka King Kimerud Author: P.E. Kimble aka King Kimerud
kimerud@bayahus.org kimerud@bayhaus.org

View File

@ -1,8 +1,10 @@
#!/bin/sh #!/bin/sh
# #
# Initialize DOS environment before starting a bbs door. # Initialize DOS environment before starting a bbs door.
# Parameters: $1 = name of the door
# $2 = the nodenumber for this session
# #
# by Redy Rodriguez, 21-Oct-2001 # by Redy Rodriguez, 22-Oct-2001
if [ "$1" != "" ]; then if [ "$1" != "" ]; then
if [ "$2" != "" ]; then if [ "$2" != "" ]; then
@ -10,11 +12,11 @@ if [ "$1" != "" ]; then
# Copy door.sys to dos partition # Copy door.sys to dos partition
cat ~/door.sys >/dos/c/doors/node$2/door.sys cat ~/door.sys >/dos/c/doors/node$2/door.sys
# Create .dosemu/disclaimer in user home to avoid warning # Create .dosemu/disclaimer in user home to avoid warning
if [ ! -d ~/.dosemu ]; then if [ ! -d $HOME/.dosemu ]; then
mkdir ~/.dosemu mkdir $HOME/.dosemu
fi fi
if [ ! -f ~/.dosemu/disclaimer ]; then if [ ! -f $HOME/.dosemu/disclaimer ]; then
touch ~/.dosmenu/disclaimer touch $HOME/.dosemu/disclaimer
fi fi
fi fi
fi fi