Small bugfix and some updates
This commit is contained in:
parent
4dd08644bd
commit
ef422b88f0
@ -22,11 +22,14 @@ v0.51.3 22-Mar-2003
|
||||
there was nothing in it yet.
|
||||
Removed setup for the unused free diskspace parameter.
|
||||
In nodes edit aka's it was not possible to delete aka's.
|
||||
Added nodes private data in the html sitedoc.
|
||||
|
||||
mbfido:
|
||||
The area tags are now created in /opt/mbse/share/doc/tags.
|
||||
Added more debug info in Add_ToBeRep(), we still see double
|
||||
announces of files like FP-DEF.ZIP.
|
||||
Fixed (I hope for real now) the double announce of the files
|
||||
like FP-DEF.ZIP received twice a day.
|
||||
|
||||
mbtask:
|
||||
Fixed crash on NetBSD Sparc when getsysinfo was called.
|
||||
|
10
TODO
10
TODO
@ -24,8 +24,6 @@ everything:
|
||||
|
||||
L: Document error return codes in the manual.
|
||||
|
||||
N: Make filesystem space check run only on mbse used filesystems.
|
||||
|
||||
install:
|
||||
N: On some (unsupported) distro's with xinetd the installation script
|
||||
also adds entries to inetd.conf.
|
||||
@ -67,8 +65,6 @@ mbsebbs:
|
||||
newuser:
|
||||
L: Allow handles to be the same as the unixname.
|
||||
|
||||
N: Add menu setup to set users preffered character set.
|
||||
|
||||
mbfido:
|
||||
N: The elist rules files are named (8.3) areaname.rul where areaname
|
||||
is the first 8 characters of the area name and we use the full name
|
||||
@ -138,6 +134,12 @@ mbfile:
|
||||
N: The import function doesn't strip the [0] from the files.bbs
|
||||
when importing the description.
|
||||
|
||||
N: The import function has troubles when there is nothing behind
|
||||
the filename.
|
||||
|
||||
N: It is not possible to import areas that run of cd-roms. Do we still
|
||||
need cd-rom support with current hd prices?
|
||||
|
||||
mbmsg:
|
||||
N: With the post command if a netmail area is used the netmail area
|
||||
will cause trouble later, should be blocked to be used on netmail
|
||||
|
@ -67,7 +67,7 @@ int Add_ToBeRep(struct _filerecord report)
|
||||
*/
|
||||
if (report.Fdate > Temp.Fdate) {
|
||||
Syslog('f', "Add_ToBeRep this file is newer, update record at position %d", ftell(tbr));
|
||||
fseek(tbr, - sizeof(Temp), SEEK_SET);
|
||||
fseek(tbr, - sizeof(Temp), SEEK_CUR);
|
||||
fwrite(&report, sizeof(report), 1, tbr);
|
||||
fclose(tbr);
|
||||
return TRUE;
|
||||
|
@ -1608,6 +1608,14 @@ int node_doc(FILE *fp, FILE *toc, int page)
|
||||
nodes.FilesRcvd.total, nodes.F_KbSent.total);
|
||||
fprintf(fp, " Total mail %-8lu %-8lu\n\n", nodes.MailSent.total, nodes.MailRcvd.total);
|
||||
|
||||
fprintf(wp, "<HR>\n");
|
||||
fprintf(wp, "<H3>Private data</H3>\n");
|
||||
add_webtable(wp, (char *)"Private phone", nodes.Ct_phone);
|
||||
add_webtable(wp, (char *)"Fax number", nodes.Ct_fax);
|
||||
add_webtable(wp, (char *)"Cellphone", nodes.Ct_cellphone);
|
||||
add_webtable(wp, (char *)"E-mail", nodes.Ct_email);
|
||||
add_webtable(wp, (char *)"Remark", nodes.Ct_remark);
|
||||
|
||||
fprintf(wp, "<HR>\n");
|
||||
fprintf(wp, "<H3>File Groups</H3>\n");
|
||||
fprintf(wp, "<PRE>\n");
|
||||
|
Reference in New Issue
Block a user