diff --git a/ChangeLog b/ChangeLog index 540129cf..a98583a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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. diff --git a/TODO b/TODO index fdd88236..1e807254 100644 --- a/TODO +++ b/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 diff --git a/mbfido/toberep.c b/mbfido/toberep.c index df4b1ab2..c61450f9 100644 --- a/mbfido/toberep.c +++ b/mbfido/toberep.c @@ -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; diff --git a/mbsetup/m_node.c b/mbsetup/m_node.c index c27be5ea..ff42d8ec 100644 --- a/mbsetup/m_node.c +++ b/mbsetup/m_node.c @@ -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, "
\n"); + fprintf(wp, "

Private data

\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, "
\n"); fprintf(wp, "

File Groups

\n"); fprintf(wp, "
\n");