You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(26) |
Aug
(227) |
Sep
(65) |
Oct
(24) |
Nov
(44) |
Dec
(18) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(6) |
Feb
(63) |
Mar
(106) |
Apr
(29) |
May
|
Jun
(10) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
| 2004 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(45) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
(43) |
Feb
(6) |
Mar
|
Apr
|
May
|
Jun
(13) |
Jul
(5) |
Aug
(2) |
Sep
(8) |
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(10) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(53) |
|
From: Martin J. <n0...@us...> - 2007-01-13 14:05:19
|
Update of /cvsroot/fidogate/fidogate/src/tick In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv16517/src/tick Modified Files: Tag: BRANCH_4_4 ftnhatch.c ftntick.c Log Message: See ChangeLog Index: ftnhatch.c =================================================================== RCS file: /cvsroot/fidogate/fidogate/src/tick/ftnhatch.c,v retrieving revision 4.17 retrieving revision 4.17.2.1 diff -u -d -r4.17 -r4.17.2.1 --- ftnhatch.c 22 Aug 2004 20:19:13 -0000 4.17 +++ ftnhatch.c 13 Jan 2007 14:04:57 -0000 4.17.2.1 @@ -99,7 +99,7 @@ file_crc = crc32_file(file_name); debug(4, "file: name=%s size=%ld time=%ld crc=%08lx", - file_name, file_size, file_time, file_crc); + file_name, file_size, (long) file_time, file_crc); /* * Build Tick struct @@ -119,7 +119,7 @@ tic.created = CREATOR; tic.size = file_size; tl_appendf(&tic.path, "%s %ld %s", - znf1(cf_addr()), now, date(NULL, &now) ); + znf1(cf_addr()), (long) now, date(NULL, &now) ); lon_add(&tic.seenby, cf_addr()); lon_join(&tic.seenby, &bbs->nodes); /* tic.pw set by hatch_one() */ Index: ftntick.c =================================================================== RCS file: /cvsroot/fidogate/fidogate/src/tick/ftntick.c,v retrieving revision 4.29 retrieving revision 4.29.2.1 diff -u -d -r4.29 -r4.29.2.1 --- ftntick.c 22 Aug 2004 20:19:13 -0000 4.29 +++ ftntick.c 13 Jan 2007 14:04:57 -0000 4.29.2.1 @@ -528,7 +528,7 @@ if(tic->size != st.st_size) { logit("ERROR: wrong size for file %s: got %lu, expected %lu", - name, st.st_size, tic->size ); + name, (unsigned long)st.st_size, tic->size ); return ERROR; } } |
|
From: Martin J. <n0...@us...> - 2007-01-13 14:05:19
|
Update of /cvsroot/fidogate/fidogate/doc/gatebau In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv16517/doc/gatebau Modified Files: Tag: BRANCH_4_4 Makefile msgid.tex msgid.txt Log Message: See ChangeLog Index: msgid.tex =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/gatebau/msgid.tex,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -u -d -r1.5 -r1.5.2.1 --- msgid.tex 10 Jan 1999 16:55:59 -0000 1.5 +++ msgid.tex 13 Jan 2007 14:04:57 -0000 1.5.2.1 @@ -1,10 +1,23 @@ \documentclass[letterpaper]{article} +\newif\ifpdf +\ifx\pdfoutput\undefined + \pdffalse % we do not use PDFLaTeX +\else\ifnum\pdfoutput=0\pdffalse\else + \pdfoutput=1 % we use PDFLaTeX + \pdftrue +\fi\fi \usepackage{linuxdoc-sgml} \usepackage{qwertz} \usepackage{url} \usepackage[latin1]{inputenc} -\usepackage{t1enc} -\usepackage{babel} +\ifpdf + \usepackage[pdftex,colorlinks=true,urlcolor=blue,linkcolor=blue]{hyperref} + \pdfcompresslevel=9 +\else + \usepackage{t1enc} +%% \usepackage[dvips]{hyperref} +\fi +\usepackage[english]{babel} \usepackage{epsfig} \usepackage{null} \def\addbibtoc{ Index: Makefile =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/gatebau/Makefile,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -u -d -r1.5 -r1.5.2.1 --- Makefile 10 Jan 1999 16:55:58 -0000 1.5 +++ Makefile 13 Jan 2007 14:04:57 -0000 1.5.2.1 @@ -10,12 +10,12 @@ include $(TOPDIR)/rules.make -all: msgid.html msgid.tex msgid.txt +all: msgid.tex msgid.txt #msgid.html -msgid.html: msgid.sgml - -sgml2html msgid.sgml - ./post-html.pl msgid*.html +#msgid.html: msgid.sgml +# -sgml2html msgid.sgml +# ./post-html.pl msgid*.html msgid.tex: msgid.sgml -sgml2latex -o tex msgid.sgml Index: msgid.txt =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/gatebau/msgid.txt,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -u -d -r1.5 -r1.5.2.1 --- msgid.txt 10 Jan 1999 16:55:59 -0000 1.5 +++ msgid.txt 13 Jan 2007 14:04:57 -0000 1.5.2.1 @@ -8,7 +8,7 @@ tion for a common handling of message ID passing for FIDONET-Internet gateways. - 11.. CCrreeddiittss + [1m1. Credits[0m This work is not entirely mine. It includes suggestions and @@ -28,71 +28,71 @@ +o Odinn Sorensen mailto:od...@wi... - 22.. FFoorrmmaattss + [1m2. Formats[0m - 22..11.. FFTTNN ^^AAMMSSGGIIDD KKlluuddggee FFoorrmmaattss + [1m2.1. FTN ^AMSGID Kludge Formats[0m - 22..11..11.. FFTTNN ggeenneerriicc + [1m2.1.1. FTN generic[0m ^AMSGID: anything abcd1234 - 22..11..22.. IInntteerrnneett + [1m2.1.2. Internet[0m ^AMSGID: <id...@do...> abcd1234 - 22..22.. RRFFCC MMeessssaaggee--IIDD FFoorrmmaattss + [1m2.2. RFC Message-ID Formats[0m - 22..22..11.. FFTTNN ww//oo MMSSGGIIDD + [1m2.2.1. FTN w/o MSGID[0m Message-ID: <NOM...@ft...> - 22..22..22.. FFTTNN ggeenneerriicc + [1m2.2.2. FTN generic[0m Message-ID: <MSG...@ft...> - 22..22..33.. IInntteerrnneett + [1m2.2.3. Internet[0m Message-ID: <id...@do...> - 33.. NNoonn--FFIIDDOONNEETT FFTTNNss + [1m3. Non-FIDONET FTNs[0m - A gateway _m_u_s_t use fidonet.org for Message-IDs originating from the + A gateway [4mmust[24m use fidonet.org for Message-IDs originating from the standard FIDONET zones 1-6. However, for non-FIDONET zones, a gateway may use a more appropiate Internet domain. Of course, it is essential that multiple gateways for - one FTN zone/domain use the _s_a_m_e Internet domain for gated Message- + one FTN zone/domain use the [4msame[24m Internet domain for gated Message- IDs!!! Of course, there may be different Internet domains for the sender's address (From header), but for Message-IDs a unique Internet domain - for each gated FTN zone/domain is _m_a_n_d_a_t_o_r_y. + for each gated FTN zone/domain is [4mmandatory[24m. - 44.. CCoonnvveerrttiinngg FFTTNN ^^AAMMSSGGIIDD ttoo RRFFCC MMeessssaaggee--IIDD + [1m4. Converting FTN ^AMSGID to RFC Message-ID[0m Converting ^AREPLY works the same way, using References for news or In-Reply-To for mail. - 44..11.. FFIIDDOO mmeessssaaggeess wwiitthhoouutt ^^AAMMSSGGIIDD + [1m4.1. FIDO messages without ^AMSGID[0m Some FIDO messages do not contain a unique ^AMSGID. In this case it is @@ -145,7 +145,7 @@ split mails, will get the same Message-ID and therefore be trashed by the news dupe check. - 44..22.. FFTTNN MMSSGGIIDD wwiitthh IInntteerrnneett IIDD + [1m4.2. FTN MSGID with Internet ID[0m ^AMSGID: <id...@do...> abcd1234 @@ -159,7 +159,7 @@ quoted according to the FTS-0009 specs ("..."), these quotes must be removed and double quotes ("") reduced to a single one. - 44..33.. GGeenneerriicc MMSSGGIIDD CCoonnvveerrssiioonn + [1m4.3. Generic MSGID Conversion[0m This procedure may be used for all FIDO-style and unknown MSGIDs. @@ -194,32 +194,28 @@ - - ^AMSGID: 242:1000/1.1 abcd1234 --> Message-ID: <MSG...@fi...> - - ^MSGID: "some "" junk" abcd1234 --> Message-ID: <MSG...@fi...> - 55.. RRFFCC MMeessssaaggee--IIDD ttoo FFTTNN MMSSGGIIDD CCoonnvveerrssiioonn + [1m5. RFC Message-ID to FTN MSGID Conversion[0m - 55..11.. NNOOMMSSGGIIDD MMeessssaaggee--IIDDss + [1m5.1. NOMSGID Message-IDs[0m Any Message-ID starting with <NOMSGID...@...> is NOT converted back to an FTN ^AMSGID or ^AREPLY! - 55..22.. NNoorrmmaall MMeessssaaggee--IIDDss + [1m5.2. Normal Message-IDs[0m Message-ID: <id...@do...> @@ -253,8 +249,6 @@ - - Message-ID: <IB...@me...> FTN Area: GATEWAYS.GER --> @@ -269,7 +263,7 @@ - 55..33.. CCoonnvveerrtteedd FFTTNN MMeessssaaggee--IIDDss + [1m5.3. Converted FTN Message-IDs[0m Message-ID: <MSG...@ft...> @@ -292,7 +286,7 @@ - 66.. SSpplliittttiinngg MMeessssaaggeess + [1m6. Splitting Messages[0m Due to the limitation of some FTN programs, it is necessary to split @@ -348,7 +342,7 @@ - 77.. CCoommppuuttiinngg CCRRCC3322 vvaalluueess + [1m7. Computing CRC32 values[0m The CRC32 value is computed using the polynomial @@ -361,36 +355,3 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
|
From: Martin J. <n0...@us...> - 2007-01-13 14:05:19
|
Update of /cvsroot/fidogate/fidogate/doc In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv16517/doc Modified Files: Tag: BRANCH_4_4 Makefile fidogate.info fidogate.texi fidogate.txt info2txt.pl Log Message: See ChangeLog Index: fidogate.info =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/fidogate.info,v retrieving revision 4.55.2.1 retrieving revision 4.55.2.2 diff -u -d -r4.55.2.1 -r4.55.2.2 --- fidogate.info 9 Jan 2007 21:39:51 -0000 4.55.2.1 +++ fidogate.info 13 Jan 2007 14:04:57 -0000 4.55.2.2 @@ -1,6 +1,11 @@ Dies ist fidogate.info, hergestellt von Makeinfo Version 4.8 aus fidogate.texi. +INFO-DIR-SECTION Miscellaneous +START-INFO-DIR-ENTRY +* Fidogate: (fidogate). FidoNet-Internet mail gateway system. +END-INFO-DIR-ENTRY + This file documents the installation and usage of FIDOGATE version 4.4 @@ -4020,79 +4025,79 @@ Tag Table: -Node: Top764 -Node: Introduction4856 -Node: Installation7393 -Node: config.h8210 -Node: config.make13868 -Node: Compiling19772 -Node: Integration20426 -Node: Testing20913 -Node: Connecting21161 -Node: Programs22152 -Node: ftnaf25737 -Node: ftnafmail28483 -Node: ftnafpkt29084 -Node: ftnafutil30343 -Node: charsetc31411 -Node: ffx31672 -Node: ffxmail32453 -Node: ffxnews32863 -Node: ffxqt33262 -Node: ffxrmail33786 -Node: runffx34169 -Node: send-ffx34372 -Node: ftn2rfc34667 -Node: ftnin35910 -Node: ftninpost36507 -Node: ftninrecomb36889 -Node: ftnmail37266 -Node: rfc2ftn37835 -Node: rungate38928 -Node: send-fidogate39147 -Node: ftnhatch39532 -Node: ftntick40083 -Node: ftntickpost40655 -Node: ftn2ftn41064 -Node: ftnexpire42119 -Node: ftnpack42991 -Node: ftnroute44707 -Node: ftntoss45417 -Node: runin46887 -Node: runmail47391 -Node: runnews47836 -Node: runout48281 -Node: runtoss48754 -Node: rununpack49139 -Node: ftnbsy49685 -Node: ftnconfig50159 -Node: ftnfattach50827 -Node: ftnflo51369 -Node: ftnlock52126 -Node: ftnlog52824 -Node: ftnoutpkt53262 -Node: ftnseq53804 -Node: pktdebug54223 -Node: pktmore55002 -Node: sumcrc55304 -Node: Config files56244 -Node: Config57547 -Node: Hosts76215 -Node: Aliases78455 -Node: Areas79333 -Node: Bounce82474 -Node: Passwd83679 -Node: Routing85277 -Node: Packing89190 -Node: Areas.bbs91115 -Node: Basic93153 -Node: Sendmail93679 -Node: Example Point95092 -Node: Example Point 297149 -Node: Example Node99683 -Node: Usage102621 -Node: RFC Headers102840 -Node: X Headers104210 -Node: Index105065 +Node: Top906 +Node: Introduction4998 +Node: Installation7535 +Node: config.h8352 +Node: config.make14010 +Node: Compiling19914 +Node: Integration20568 +Node: Testing21055 +Node: Connecting21303 +Node: Programs22294 +Node: ftnaf25879 +Node: ftnafmail28625 +Node: ftnafpkt29226 +Node: ftnafutil30485 +Node: charsetc31553 +Node: ffx31814 +Node: ffxmail32595 +Node: ffxnews33005 +Node: ffxqt33404 +Node: ffxrmail33928 +Node: runffx34311 +Node: send-ffx34514 +Node: ftn2rfc34809 +Node: ftnin36052 +Node: ftninpost36649 +Node: ftninrecomb37031 +Node: ftnmail37408 +Node: rfc2ftn37977 +Node: rungate39070 +Node: send-fidogate39289 +Node: ftnhatch39674 +Node: ftntick40225 +Node: ftntickpost40797 +Node: ftn2ftn41206 +Node: ftnexpire42261 +Node: ftnpack43133 +Node: ftnroute44849 +Node: ftntoss45559 +Node: runin47029 +Node: runmail47533 +Node: runnews47978 +Node: runout48423 +Node: runtoss48896 +Node: rununpack49281 +Node: ftnbsy49827 +Node: ftnconfig50301 +Node: ftnfattach50969 +Node: ftnflo51511 +Node: ftnlock52268 +Node: ftnlog52966 +Node: ftnoutpkt53404 +Node: ftnseq53946 +Node: pktdebug54365 +Node: pktmore55144 +Node: sumcrc55446 +Node: Config files56386 +Node: Config57689 +Node: Hosts76357 +Node: Aliases78597 +Node: Areas79475 +Node: Bounce82616 +Node: Passwd83821 +Node: Routing85419 +Node: Packing89332 +Node: Areas.bbs91257 +Node: Basic93295 +Node: Sendmail93821 +Node: Example Point95234 +Node: Example Point 297291 +Node: Example Node99825 +Node: Usage102763 +Node: RFC Headers102982 +Node: X Headers104352 +Node: Index105207 End Tag Table Index: Makefile =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/Makefile,v retrieving revision 4.9 retrieving revision 4.9.4.1 diff -u -d -r4.9 -r4.9.4.1 --- Makefile 3 Apr 1999 13:28:56 -0000 4.9 +++ Makefile 13 Jan 2007 14:04:56 -0000 4.9.4.1 @@ -9,7 +9,7 @@ include $(TOPDIR)/config.make include $(TOPDIR)/rules.make -SUBDIRS = html gatebau +SUBDIRS = gatebau #html all:: fidogate.info fidogate.txt @@ -20,20 +20,17 @@ done -doc: fidogate.info fidogate.txt fidogate.ps +doc: fidogate.info fidogate.txt #fidogate.ps fidogate.info: fidogate.texi - -makeinfo fidogate.texi + makeinfo fidogate.texi fidogate.txt: fidogate.info - $(PERL) info2txt.pl fidogate.info-* >fidogate.txt - -fidogate.dvi: fidogate.texi - texi2dvi fidogate.texi + $(PERL) info2txt.pl fidogate.info* >fidogate.txt -fidogate.ps: fidogate.dvi - dvips fidogate -o +#fidogate.pdf: fidogate.texi +# texi2dvi4a2ps fidogate.texi clean:: @@ -42,7 +39,7 @@ rm -f *.tp *.tps *.vr *.vrs *.log veryclean:: clean - rm -f fidogate.info* fidogate.ps fidogate.dvi fidogate.txt + rm -f fidogate.info* fidogate.pdf fidogate.dvi fidogate.txt check:: verify: check Index: fidogate.txt =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/fidogate.txt,v retrieving revision 4.59 retrieving revision 4.59.2.1 diff -u -d -r4.59 -r4.59.2.1 --- fidogate.txt 26 Aug 2004 20:56:17 -0000 4.59 +++ fidogate.txt 13 Jan 2007 14:04:57 -0000 4.59.2.1 @@ -0,0 +1,3751 @@ +Dies ist fidogate.info, hergestellt von Makeinfo Version 4.8 aus +fidogate.texi. + +* Fidogate: (fidogate). FidoNet-Internet mail gateway system. + + This file documents the installation and usage of FIDOGATE version +4.4 + + Copyright (C) 1994-2000, Martin Junius + + Permission is granted to make and distribute verbatim copies of this [...3720 lines suppressed...] + `f' + Subject contains file attachment name. + + `r' + Sets return receipt request. + + `m' + Generates a FTN style `^MSGID', i.e. `^AMSGID: 'Z:N/F.P + 1234abcd. In addition, no `^AREPLY' kludge is generated. THIS + FLAG IS NOT RECOMMENDED FOR NORMAL OPERATION!!! + + `n' + Do not generate a From line, and the `^AREPLYADDR', `REPLYTO' + kludges. + + + +Index +***** + Index: fidogate.texi =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/fidogate.texi,v retrieving revision 4.55 retrieving revision 4.55.2.1 diff -u -d -r4.55 -r4.55.2.1 --- fidogate.texi 26 Aug 2004 20:56:16 -0000 4.55 +++ fidogate.texi 13 Jan 2007 14:04:57 -0000 4.55.2.1 @@ -15,6 +15,11 @@ @ifinfo +@dircategory Miscellaneous +@direntry +* Fidogate: (fidogate). FidoNet-Internet mail gateway system. +@end direntry + This file documents the installation and usage of FIDOGATE version 4.4 Copyright (C) 1994-2000, Martin Junius Index: info2txt.pl =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/info2txt.pl,v retrieving revision 4.1 retrieving revision 4.1.4.1 diff -u -d -r4.1 -r4.1.4.1 --- info2txt.pl 25 Jul 1997 21:01:30 -0000 4.1 +++ info2txt.pl 13 Jan 2007 14:04:57 -0000 4.1.4.1 @@ -5,6 +5,8 @@ # Stripping control stuff from .info file, yielding plain text # +my $skip = 0; + while(<>) { if( /^\c_/ ) { # Start of node $x = <>; @@ -27,5 +29,9 @@ next; } - print $_; + next if( /INFO-DIR-/); + + $skip = 1 if( /\[index/ ); + + print $_ unless($skip); } |
|
From: Martin J. <n0...@us...> - 2007-01-13 14:05:19
|
Update of /cvsroot/fidogate/fidogate/doc/html In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv16517/doc/html Removed Files: Tag: BRANCH_4_4 Makefile fidogate.html fidogate_1.html fidogate_2.html fidogate_3.html fidogate_4.html fidogate_5.html fidogate_6.html fidogate_7.html fidogate_8.html fidogate_abt.html fidogate_ovr.html fidogate_toc.html Log Message: See ChangeLog --- fidogate_8.html DELETED --- --- fidogate_3.html DELETED --- --- fidogate_1.html DELETED --- --- fidogate_7.html DELETED --- --- Makefile DELETED --- --- fidogate_5.html DELETED --- --- fidogate_toc.html DELETED --- --- fidogate_abt.html DELETED --- --- fidogate_2.html DELETED --- --- fidogate_ovr.html DELETED --- --- fidogate_6.html DELETED --- --- fidogate_4.html DELETED --- --- fidogate.html DELETED --- |
|
From: Martin J. <n0...@us...> - 2007-01-13 14:05:19
|
Update of /cvsroot/fidogate/fidogate In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv16517 Modified Files: Tag: BRANCH_4_4 ChangeLog config.h Log Message: See ChangeLog Index: config.h =================================================================== RCS file: /cvsroot/fidogate/fidogate/config.h,v retrieving revision 4.49 retrieving revision 4.49.2.1 diff -u -d -r4.49 -r4.49.2.1 --- config.h 22 Aug 2004 20:19:09 -0000 4.49 +++ config.h 13 Jan 2007 14:04:56 -0000 4.49.2.1 @@ -302,6 +302,25 @@ # undef HAS_POSIX_REGEX /* ? */ #endif +#ifdef __NetBSD__ +# define HAS_FCNTL_LOCK +# define HAS_GETTIMEOFDAY +# define HAS_TM_GMTOFF +# define HAS_SYSEXITS_H +# define HAS_TM_ZONE +# define HAS_STRFTIME +# define HAS_TZNAME +# define HAS_STRCASECMP +# undef HAS_STRICMP +# define HAS_STRERROR +# undef DO_BINARY +# undef DO_DOSIFY +# define HAS_SYSLOG +# define HAS_SNPRINTF +# define HAS_HARDLINKS +# define HAS_POSIX_REGEX +#endif + #ifdef ISC /* ISC 3.x, GNU gcc, -DISC necessary */ # define HAS_FCNTL_LOCK # define HAS_GETTIMEOFDAY Index: ChangeLog =================================================================== RCS file: /cvsroot/fidogate/fidogate/ChangeLog,v retrieving revision 4.324.2.2 retrieving revision 4.324.2.3 diff -u -d -r4.324.2.2 -r4.324.2.3 --- ChangeLog 9 Jan 2007 21:39:51 -0000 4.324.2.2 +++ ChangeLog 13 Jan 2007 14:04:56 -0000 4.324.2.3 @@ -1,3 +1,18 @@ +2007-01-13 Martin Junius <mj.at.n0ll.dot.net> + + ------- CVS ci ------------------------------------------------------- + + * doc/html: completely removed. + + * doc/Makefile: removed HTML, DVI, PS, PDF documentation. + + * doc/info2txt.pl: skip index. + + * doc/gatebau/Makefile: removed HTML documentation. + + * : added patches from tvierling, [ 1014372 ] Type safety, GCC + warning, #include patches + 2007-01-09 Martin Junius <mj.at.n0ll.dot.net> ------- CVS ci ------------------------------------------------------- |
|
From: Martin J. <n0...@us...> - 2007-01-09 21:40:19
|
Update of /cvsroot/fidogate/fidogate/src/include In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv1948/src/include Modified Files: Tag: BRANCH_4_4 prototypes.h Log Message: See ChangeLog Index: prototypes.h =================================================================== RCS file: /cvsroot/fidogate/fidogate/src/include/prototypes.h,v retrieving revision 4.71 retrieving revision 4.71.2.1 diff -u -d -r4.71 -r4.71.2.1 --- prototypes.h 22 Aug 2004 20:19:12 -0000 4.71 +++ prototypes.h 9 Jan 2007 21:39:52 -0000 4.71.2.1 @@ -50,8 +50,6 @@ #endif /* address.c */ -extern int i_flag; - void addr_restricted (int); int addr_is_restricted (void); void addr_ignore (int); |
|
From: Martin J. <n0...@us...> - 2007-01-09 21:40:14
|
Update of /cvsroot/fidogate/fidogate/src/common In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv1948/src/common Modified Files: Tag: BRANCH_4_4 areas.c msgid.c Log Message: See ChangeLog Index: msgid.c =================================================================== RCS file: /cvsroot/fidogate/fidogate/src/common/msgid.c,v retrieving revision 4.16 retrieving revision 4.16.2.1 diff -u -d -r4.16 -r4.16.2.1 --- msgid.c 22 Aug 2004 20:19:11 -0000 4.16 +++ msgid.c 9 Jan 2007 21:39:51 -0000 4.16.2.1 @@ -238,9 +238,9 @@ * Compute CRC for strings from, to, subject */ crc32_init(); - crc32_compute(msg->name_from, strlen(msg->name_from)); - crc32_compute(msg->name_to , strlen(msg->name_to )); - crc32_compute(msg->subject , strlen(msg->subject )); + crc32_compute((unsigned char *)msg->name_from, strlen(msg->name_from)); + crc32_compute((unsigned char *)msg->name_to , strlen(msg->name_to )); + crc32_compute((unsigned char *)msg->subject , strlen(msg->subject )); return s_printf("<NOMSGID_%d=3A%d=2F%d.%d_%s_%08lx@%s>", msg->node_orig.zone, msg->node_orig.net, Index: areas.c =================================================================== RCS file: /cvsroot/fidogate/fidogate/src/common/areas.c,v retrieving revision 4.18 retrieving revision 4.18.2.1 diff -u -d -r4.18 -r4.18.2.1 --- areas.c 22 Aug 2004 20:19:11 -0000 4.18 +++ areas.c 9 Jan 2007 21:39:51 -0000 4.18.2.1 @@ -59,7 +59,7 @@ static void areas_init_xlate(void) { char *cf, *x_a, *x_g; - unsigned char *p, *q; + char *p, *q; if((cf = cf_get_string("AreasXlate", TRUE))) { @@ -78,9 +78,9 @@ while(*p || *q) { if(*p) - areas_x_a[*p] = *q; + areas_x_a[(int)*p] = *q; if(*q) - areas_x_g[*q] = *p; + areas_x_g[(int)*q] = *p; if(*p) p++; if(*q) |
|
From: Martin J. <n0...@us...> - 2007-01-09 21:40:13
|
Update of /cvsroot/fidogate/fidogate/doc In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv1948/doc Modified Files: Tag: BRANCH_4_4 fidogate.info Log Message: See ChangeLog Index: fidogate.info =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/fidogate.info,v retrieving revision 4.55 retrieving revision 4.55.2.1 diff -u -d -r4.55 -r4.55.2.1 --- fidogate.info 26 Aug 2004 20:56:01 -0000 4.55 +++ fidogate.info 9 Jan 2007 21:39:51 -0000 4.55.2.1 @@ -1,4 +1,4 @@ -Dies ist fidogate.info, hergestellt von Makeinfo Version 4.7 aus +Dies ist fidogate.info, hergestellt von Makeinfo Version 4.8 aus fidogate.texi. This file documents the installation and usage of FIDOGATE version |
|
From: Martin J. <n0...@us...> - 2007-01-09 21:39:53
|
Update of /cvsroot/fidogate/fidogate/src/toss In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv1948/src/toss Modified Files: Tag: BRANCH_4_4 dbz.c ftntoss.c Log Message: See ChangeLog Index: dbz.c =================================================================== RCS file: /cvsroot/fidogate/fidogate/src/toss/dbz.c,v retrieving revision 4.2 retrieving revision 4.2.4.1 diff -u -d -r4.2 -r4.2.4.1 --- dbz.c 18 Oct 2000 21:53:57 -0000 4.2 +++ dbz.c 9 Jan 2007 21:39:52 -0000 4.2.4.1 @@ -299,12 +299,12 @@ #define DEBUG(args) ; #endif -/* externals used */ -extern char *malloc(); -extern char *calloc(); -extern void free(); /* ANSI C; some old implementations say int */ -extern int atoi(); -extern long atol(); +/* /\* externals used *\/ */ +/* extern char *malloc(); */ +/* extern char *calloc(); */ +/* extern void free(); /\* ANSI C; some old implementations say int *\/ */ +/* extern int atoi(); */ +/* extern long atol(); */ /* misc. forwards */ static long hash(); Index: ftntoss.c =================================================================== RCS file: /cvsroot/fidogate/fidogate/src/toss/ftntoss.c,v retrieving revision 4.44 retrieving revision 4.44.2.1 diff -u -d -r4.44 -r4.44.2.1 --- ftntoss.c 22 Aug 2004 20:19:14 -0000 4.44 +++ ftntoss.c 9 Jan 2007 21:39:52 -0000 4.44.2.1 @@ -873,9 +873,9 @@ /* Compute CRC for strings from, to, subject */ crc32_init(); - crc32_compute(msg->name_from, strlen(msg->name_from)); - crc32_compute(msg->name_to , strlen(msg->name_to )); - crc32_compute(msg->subject , strlen(msg->subject )); + crc32_compute((unsigned char *)msg->name_from, strlen(msg->name_from)); + crc32_compute((unsigned char *)msg->name_to , strlen(msg->name_to )); + crc32_compute((unsigned char *)msg->subject , strlen(msg->subject )); str_printf(buffer, sizeof(buffer), "%s NOMSGID: %s %s %08lx", area->area, znfp1(&msg->node_orig), |
|
From: Martin J. <n0...@us...> - 2007-01-09 21:39:53
|
Update of /cvsroot/fidogate/fidogate In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv1948 Modified Files: Tag: BRANCH_4_4 ChangeLog version.h Log Message: See ChangeLog Index: ChangeLog =================================================================== RCS file: /cvsroot/fidogate/fidogate/ChangeLog,v retrieving revision 4.324.2.1 retrieving revision 4.324.2.2 diff -u -d -r4.324.2.1 -r4.324.2.2 --- ChangeLog 9 Jan 2007 20:48:27 -0000 4.324.2.1 +++ ChangeLog 9 Jan 2007 21:39:51 -0000 4.324.2.2 @@ -1,5 +1,24 @@ 2007-01-09 Martin Junius <mj.at.n0ll.dot.net> + ------- CVS ci ------------------------------------------------------- + + * version.h: updated version to 4.4.11 + + * : now compiles cleanly again on Fedora Core 6, GCC 4.1.1, glibc 2.5. + + * src/toss/ftntoss.c (do_echomail): fixed signed/unsigned. + + * src/toss/dbz.c: commented external declaration conflicting with + stdlib.h + + * src/include/prototypes.h: removed i_flag declaration. + + * src/charset/charset.c (charset_qpen): fixed printf format. + + * src/common/msgid.c (s_msgid_default): fixed signed/unsigned. + + * src/common/areas.c (areas_init_xlate): fixed signed/unsigned. + * : created branch for FIDOGATE 4.4 bug fixes. 2007-01-08 Martin Junius <mj.at.n0ll.dot.net> Index: version.h =================================================================== RCS file: /cvsroot/fidogate/fidogate/version.h,v retrieving revision 4.47 retrieving revision 4.47.2.1 diff -u -d -r4.47 -r4.47.2.1 --- version.h 22 Aug 2004 10:30:00 -0000 4.47 +++ version.h 9 Jan 2007 21:39:51 -0000 4.47.2.1 @@ -9,6 +9,6 @@ #define VERSION_MAJOR 4 #define VERSION_MINOR 4 -#define PATCHLEVEL 10 +#define PATCHLEVEL 11 #define STATE "stable" |
|
From: Martin J. <n0...@us...> - 2007-01-09 21:39:53
|
Update of /cvsroot/fidogate/fidogate/src/charset In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv1948/src/charset Modified Files: Tag: BRANCH_4_4 charset.c Log Message: See ChangeLog Index: charset.c =================================================================== RCS file: /cvsroot/fidogate/fidogate/src/charset/charset.c,v retrieving revision 1.13 retrieving revision 1.13.2.1 diff -u -d -r1.13 -r1.13.2.1 --- charset.c 22 Aug 2004 20:19:10 -0000 1.13 +++ charset.c 9 Jan 2007 21:39:51 -0000 1.13.2.1 @@ -203,7 +203,7 @@ c &= 0xff; if( qp && (c == '=' || c >= 0x80) ) - str_printf(buf, sizeof(buf), "=%02.2X", c & 0xff); + str_printf(buf, sizeof(buf), "=%02X", c & 0xff); else { buf[0] = c; |
|
From: Martin J. <n0...@us...> - 2007-01-09 20:48:51
|
Update of /cvsroot/fidogate/fidogate In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv13472 Modified Files: Tag: BRANCH_4_4 ChangeLog Log Message: See ChangeLog Index: ChangeLog =================================================================== RCS file: /cvsroot/fidogate/fidogate/ChangeLog,v retrieving revision 4.324 retrieving revision 4.324.2.1 diff -u -d -r4.324 -r4.324.2.1 --- ChangeLog 8 Jan 2007 19:46:08 -0000 4.324 +++ ChangeLog 9 Jan 2007 20:48:27 -0000 4.324.2.1 @@ -1,5 +1,11 @@ +2007-01-09 Martin Junius <mj.at.n0ll.dot.net> + + * : created branch for FIDOGATE 4.4 bug fixes. + 2007-01-08 Martin Junius <mj.at.n0ll.dot.net> + ------- CVS tag -b BRANCH_4_4 ---------------------------------------- + * cvsexp: fixed to work with new sf.net CVS repository. 2004-08-27 Martin Junius <mj.at.n0ll.dot.net> |
|
From: Martin J. <n0...@us...> - 2007-01-08 21:09:06
|
Update of /cvsroot/fidogate/fidogate In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv7635 Modified Files: Tag: BRANCH_44 ChangeLog Log Message: See ChangeLog Index: ChangeLog =================================================================== RCS file: /cvsroot/fidogate/fidogate/ChangeLog,v retrieving revision 4.327 retrieving revision 4.327.2.1 diff -u -d -r4.327 -r4.327.2.1 --- ChangeLog 8 Jan 2007 19:59:46 -0000 4.327 +++ ChangeLog 8 Jan 2007 21:09:02 -0000 4.327.2.1 @@ -1,5 +1,7 @@ 2007-01-08 Martin Junius <mj.at.n0ll.dot.net> + ======= This is now the ChangeLog for BRANCH_44 ====================== + * : created branch for future bug fix releases of FIDOGATE 4.4 ------- CVS tag -b BRANCH_44 ----------------------------------------- |
|
From: Martin J. <n0...@us...> - 2007-01-08 20:01:38
|
Update of /cvsroot/fidogate/fidogate In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv12844 Modified Files: ChangeLog Log Message: See ChangeLog Index: ChangeLog =================================================================== RCS file: /cvsroot/fidogate/fidogate/ChangeLog,v retrieving revision 4.327 retrieving revision 4.328 diff -u -d -r4.327 -r4.328 --- ChangeLog 8 Jan 2007 19:59:46 -0000 4.327 +++ ChangeLog 8 Jan 2007 20:01:35 -0000 4.328 @@ -1,5 +1,7 @@ 2007-01-08 Martin Junius <mj.at.n0ll.dot.net> + ======= Branch 4.4 starts here ======================================= + * : created branch for future bug fix releases of FIDOGATE 4.4 ------- CVS tag -b BRANCH_44 ----------------------------------------- |
|
From: Martin J. <n0...@us...> - 2007-01-08 19:59:52
|
Update of /cvsroot/fidogate/fidogate In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv11948 Modified Files: ChangeLog Log Message: See ChangeLog Index: ChangeLog =================================================================== RCS file: /cvsroot/fidogate/fidogate/ChangeLog,v retrieving revision 4.326 retrieving revision 4.327 diff -u -d -r4.326 -r4.327 --- ChangeLog 8 Jan 2007 19:57:18 -0000 4.326 +++ ChangeLog 8 Jan 2007 19:59:46 -0000 4.327 @@ -2,7 +2,7 @@ * : created branch for future bug fix releases of FIDOGATE 4.4 - ------- CVS tag -b BRANCH_4_4 ---------------------------------------- + ------- CVS tag -b BRANCH_44 ----------------------------------------- * cvsexp: fixed to work with new sf.net CVS repository. |
|
From: Martin J. <n0...@us...> - 2007-01-08 19:57:41
|
Update of /cvsroot/fidogate/fidogate In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv11112 Modified Files: ChangeLog Log Message: See ChangeLog Index: ChangeLog =================================================================== RCS file: /cvsroot/fidogate/fidogate/ChangeLog,v retrieving revision 4.325 retrieving revision 4.326 diff -u -d -r4.325 -r4.326 --- ChangeLog 8 Jan 2007 19:53:52 -0000 4.325 +++ ChangeLog 8 Jan 2007 19:57:18 -0000 4.326 @@ -2,7 +2,7 @@ * : created branch for future bug fix releases of FIDOGATE 4.4 - ------- CVS tag BRANCH_4_4 ------------------------------------------- + ------- CVS tag -b BRANCH_4_4 ---------------------------------------- * cvsexp: fixed to work with new sf.net CVS repository. |
|
From: Martin J. <n0...@us...> - 2007-01-08 19:53:57
|
Update of /cvsroot/fidogate/fidogate In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv9536 Modified Files: ChangeLog Log Message: See ChangeLog Index: ChangeLog =================================================================== RCS file: /cvsroot/fidogate/fidogate/ChangeLog,v retrieving revision 4.324 retrieving revision 4.325 diff -u -d -r4.324 -r4.325 --- ChangeLog 8 Jan 2007 19:46:08 -0000 4.324 +++ ChangeLog 8 Jan 2007 19:53:52 -0000 4.325 @@ -1,5 +1,9 @@ 2007-01-08 Martin Junius <mj.at.n0ll.dot.net> + * : created branch for future bug fix releases of FIDOGATE 4.4 + + ------- CVS tag BRANCH_4_4 ------------------------------------------- + * cvsexp: fixed to work with new sf.net CVS repository. 2004-08-27 Martin Junius <mj.at.n0ll.dot.net> |
|
From: Martin J. <n0...@us...> - 2007-01-08 19:46:41
|
Update of /cvsroot/fidogate/fidogate In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv6429 Modified Files: ChangeLog cvsexp Log Message: See ChangeLog Index: cvsexp =================================================================== RCS file: /cvsroot/fidogate/fidogate/cvsexp,v retrieving revision 4.5 retrieving revision 4.6 diff -u -d -r4.5 -r4.6 --- cvsexp 14 Dec 2002 21:05:46 -0000 4.5 +++ cvsexp 8 Jan 2007 19:46:08 -0000 4.6 @@ -10,7 +10,7 @@ cd /var/tmp -cvs -d :ext:n0...@cv...:/cvsroot/fidogate \ +cvs -d :ext:n0...@fi...:/cvsroot/fidogate \ export -r $TAG -d fidogate-$REL fidogate || exit 1; tar cvf fidogate-test-$REL.tar fidogate-$REL/test/ Index: ChangeLog =================================================================== RCS file: /cvsroot/fidogate/fidogate/ChangeLog,v retrieving revision 4.323 retrieving revision 4.324 diff -u -d -r4.323 -r4.324 --- ChangeLog 27 Aug 2004 14:20:01 -0000 4.323 +++ ChangeLog 8 Jan 2007 19:46:08 -0000 4.324 @@ -1,3 +1,7 @@ +2007-01-08 Martin Junius <mj.at.n0ll.dot.net> + + * cvsexp: fixed to work with new sf.net CVS repository. + 2004-08-27 Martin Junius <mj.at.n0ll.dot.net> ======= Release 4.4.10 =============================================== |
|
From: Martin J. <n0...@us...> - 2004-08-27 14:20:13
|
Update of /cvsroot/fidogate/fidogate/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19688/test Modified Files: tr.grepvar Log Message: See ChangeLog Index: tr.grepvar =================================================================== RCS file: /cvsroot/fidogate/fidogate/test/tr.grepvar,v retrieving revision 4.7 retrieving revision 4.8 diff -u -d -r4.7 -r4.8 --- tr.grepvar 4 Aug 2002 03:12:18 -0000 4.7 +++ tr.grepvar 27 Aug 2004 14:20:02 -0000 4.8 @@ -19,6 +19,7 @@ s/FIDOGATE \d+\.\d+\.\d+/FIDOGATE x.x.x/g; s/Rev *: *\d+\.\d+/Rev : x.x/; s/\d+$/123456789/ if( /^history:/ ); + s/ffx \d+\.\d+$/ffx x.xx/; print; } |
|
From: Martin J. <n0...@us...> - 2004-08-27 14:20:12
|
Update of /cvsroot/fidogate/fidogate/sendmail In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19688/sendmail Modified Files: Makefile Log Message: See ChangeLog Index: Makefile =================================================================== RCS file: /cvsroot/fidogate/fidogate/sendmail/Makefile,v retrieving revision 4.4 retrieving revision 4.5 diff -u -d -r4.4 -r4.5 --- Makefile 4 Aug 2002 02:27:32 -0000 4.4 +++ Makefile 27 Aug 2004 14:20:02 -0000 4.5 @@ -28,6 +28,8 @@ install:: +test:: + clean:: ./mkclean rm -f *~ *.bak *.o tags TAGS core paths.tmp |
|
From: Martin J. <n0...@us...> - 2004-08-27 14:20:12
|
Update of /cvsroot/fidogate/fidogate/test/tc.ffx In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19688/test/tc.ffx Modified Files: run.verify Log Message: See ChangeLog Index: run.verify =================================================================== RCS file: /cvsroot/fidogate/fidogate/test/tc.ffx/run.verify,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- run.verify 10 Apr 2003 21:22:15 -0000 1.7 +++ run.verify 27 Aug 2004 14:20:03 -0000 1.8 @@ -32,7 +32,7 @@ ---- TEST ---- -# ffx 4.17 +# ffx x.xx U mj 242:1000/5.0 242:1/1.0 orodruin.fido.de Z J ff000001 @@ -47,7 +47,7 @@ ---- TEST ---- -# ffx 4.17 +# ffx x.xx U mj 242:1000/5.0 242:1/1.0 orodruin.fido.de Z J ff000002 @@ -62,7 +62,7 @@ ---- TEST ---- -# ffx 4.17 +# ffx x.xx U mj 242:1000/5.0 242:1/1.0 orodruin.fido.de Z J ff000003 @@ -77,7 +77,7 @@ ---- TEST ---- -# ffx 4.17 +# ffx x.xx U mj 242:1000/5.0 242:1/1.0 orodruin.fido.de Z J ff000004 |
|
From: Martin J. <n0...@us...> - 2004-08-27 14:20:12
|
Update of /cvsroot/fidogate/fidogate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19688 Modified Files: ChangeLog Log Message: See ChangeLog Index: ChangeLog =================================================================== RCS file: /cvsroot/fidogate/fidogate/ChangeLog,v retrieving revision 4.322 retrieving revision 4.323 diff -u -d -r4.322 -r4.323 --- ChangeLog 26 Aug 2004 20:56:01 -0000 4.322 +++ ChangeLog 27 Aug 2004 14:20:01 -0000 4.323 @@ -1,3 +1,12 @@ +2004-08-27 Martin Junius <mj.at.n0ll.dot.net> + + ======= Release 4.4.10 =============================================== + ------- CVS tag R4410 ------------------------------------------------ + ------- CVS ci ------------------------------------------------------- + + * test/tc.*: all test seem to run OK, with the usual +/-1 packet + size difference due to DST. + 2004-08-26 Martin Junius <mj.at.n0ll.dot.net> ------- CVS ci ------------------------------------------------------- |
|
From: Martin J. <n0...@us...> - 2004-08-27 14:20:12
|
Update of /cvsroot/fidogate/fidogate/sendmail/cf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19688/sendmail/cf Modified Files: Makefile Log Message: See ChangeLog Index: Makefile =================================================================== RCS file: /cvsroot/fidogate/fidogate/sendmail/cf/Makefile,v retrieving revision 4.18 retrieving revision 4.19 diff -u -d -r4.18 -r4.19 --- Makefile 18 Jun 2003 18:45:54 -0000 4.18 +++ Makefile 27 Aug 2004 14:20:02 -0000 4.19 @@ -61,7 +61,7 @@ rm -f *.cf rm -f *~ *.bak *.o tags TAGS core paths.tmp -check verify: +test check verify: # |
|
From: Martin J. <n0...@us...> - 2004-08-26 20:57:02
|
Update of /cvsroot/fidogate/fidogate/doc/html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28660/doc/html Modified Files: fidogate.html fidogate_1.html fidogate_2.html fidogate_3.html fidogate_4.html fidogate_5.html fidogate_6.html fidogate_7.html fidogate_8.html fidogate_abt.html fidogate_ovr.html fidogate_toc.html Log Message: See ChangeLog Index: fidogate_8.html =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/html/fidogate_8.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- fidogate_8.html 14 Dec 2002 21:05:47 -0000 1.3 +++ fidogate_8.html 26 Aug 2004 20:56:18 -0000 1.4 @@ -1,6 +1,6 @@ <HTML> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<!-- Created on December, 14 2002 by texi2html 1.64 --> +<!-- Created on August, 26 2004 by texi2html 1.64 --> <!-- Written by: Lionel Cons <Lio...@ce...> (original author) Karl Berry <ka...@fr...> @@ -138,7 +138,7 @@ <BR> <FONT SIZE="-1"> This document was generated -by <I>Martin Junius</I> on <I>December, 14 2002</I> +by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> Index: fidogate_3.html =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/html/fidogate_3.html,v retrieving revision 1.51 retrieving revision 1.52 diff -u -d -r1.51 -r1.52 --- fidogate_3.html 14 Dec 2002 21:05:47 -0000 1.51 +++ fidogate_3.html 26 Aug 2004 20:56:17 -0000 1.52 @@ -1,6 +1,6 @@ <HTML> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<!-- Created on December, 14 2002 by texi2html 1.64 --> +<!-- Created on August, 26 2004 by texi2html 1.64 --> <!-- Written by: Lionel Cons <Lio...@ce...> (original author) Karl Berry <ka...@fr...> @@ -2544,7 +2544,7 @@ <BR> <FONT SIZE="-1"> This document was generated -by <I>Martin Junius</I> on <I>December, 14 2002</I> +by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> Index: fidogate_1.html =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/html/fidogate_1.html,v retrieving revision 1.51 retrieving revision 1.52 diff -u -d -r1.51 -r1.52 --- fidogate_1.html 14 Dec 2002 21:05:47 -0000 1.51 +++ fidogate_1.html 26 Aug 2004 20:56:17 -0000 1.52 @@ -1,6 +1,6 @@ <HTML> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<!-- Created on December, 14 2002 by texi2html 1.64 --> +<!-- Created on August, 26 2004 by texi2html 1.64 --> <!-- Written by: Lionel Cons <Lio...@ce...> (original author) Karl Berry <ka...@fr...> @@ -224,7 +224,7 @@ <BR> <FONT SIZE="-1"> This document was generated -by <I>Martin Junius</I> on <I>December, 14 2002</I> +by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> Index: fidogate_7.html =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/html/fidogate_7.html,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- fidogate_7.html 14 Dec 2002 21:05:47 -0000 1.14 +++ fidogate_7.html 26 Aug 2004 20:56:18 -0000 1.15 @@ -1,6 +1,6 @@ <HTML> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<!-- Created on December, 14 2002 by texi2html 1.64 --> +<!-- Created on August, 26 2004 by texi2html 1.64 --> <!-- Written by: Lionel Cons <Lio...@ce...> (original author) Karl Berry <ka...@fr...> @@ -186,8 +186,8 @@ <TR><TD></TD><TD valign=top><A HREF="fidogate_3.html#SEC15">Programs</A></TD><TD valign=top><A HREF="fidogate_3.html#SEC15">3. FIDOGATE Programs</A></TD></TR> <TR><TD COLSPAN=3> <HR></TD></TR> <TR><TH><A NAME="cp_R"></A>R</TH><TD></TD><TD></TD></TR> -<TR><TD></TD><TD valign=top><A HREF="fidogate_3.html#SEC21">Remote execution</A></TD><TD valign=top><A HREF="fidogate_3.html#SEC21">3.6 ffx -- Remote Execution via Fido Mailer</A></TD></TR> <TR><TD></TD><TD valign=top><A HREF="fidogate_3.html#SEC24">Remote Execution</A></TD><TD valign=top><A HREF="fidogate_3.html#SEC24">3.9 ffxqt -- Execute ffx Requests</A></TD></TR> +<TR><TD></TD><TD valign=top><A HREF="fidogate_3.html#SEC21">Remote execution</A></TD><TD valign=top><A HREF="fidogate_3.html#SEC21">3.6 ffx -- Remote Execution via Fido Mailer</A></TD></TR> <TR><TD></TD><TD valign=top><A HREF="fidogate_6.html#IDX6">RFC header</A></TD><TD valign=top><A HREF="fidogate_6.html#SEC77">6.1 RFC Headers in FTN Messages</A></TD></TR> <TR><TD></TD><TD valign=top><A HREF="fidogate_3.html#SEC33">rfc2ftn</A></TD><TD valign=top><A HREF="fidogate_3.html#SEC33">3.18 rfc2ftn -- Internet-Fido Gateway Program</A></TD></TR> <TR><TD></TD><TD valign=top><A HREF="fidogate_3.html#SEC42">Routing</A></TD><TD valign=top><A HREF="fidogate_3.html#SEC42">3.27 ftnroute -- Route Fido Mail Packets</A></TD></TR> @@ -253,7 +253,7 @@ <BR> <FONT SIZE="-1"> This document was generated -by <I>Martin Junius</I> on <I>December, 14 2002</I> +by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> Index: fidogate_5.html =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/html/fidogate_5.html,v retrieving revision 1.51 retrieving revision 1.52 diff -u -d -r1.51 -r1.52 --- fidogate_5.html 14 Dec 2002 21:05:47 -0000 1.51 +++ fidogate_5.html 26 Aug 2004 20:56:18 -0000 1.52 @@ -1,6 +1,6 @@ <HTML> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<!-- Created on December, 14 2002 by texi2html 1.64 --> +<!-- Created on August, 26 2004 by texi2html 1.64 --> <!-- Written by: Lionel Cons <Lio...@ce...> (original author) Karl Berry <ka...@fr...> @@ -489,7 +489,7 @@ <BR> <FONT SIZE="-1"> This document was generated -by <I>Martin Junius</I> on <I>December, 14 2002</I> +by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> Index: fidogate_toc.html =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/html/fidogate_toc.html,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- fidogate_toc.html 14 Dec 2002 21:05:47 -0000 1.50 +++ fidogate_toc.html 26 Aug 2004 20:56:18 -0000 1.51 @@ -1,6 +1,6 @@ <HTML> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<!-- Created on December, 14 2002 by texi2html 1.64 --> +<!-- Created on August, 26 2004 by texi2html 1.64 --> <!-- Written by: Lionel Cons <Lio...@ce...> (original author) Karl Berry <ka...@fr...> @@ -209,7 +209,7 @@ <BR> <FONT SIZE="-1"> This document was generated -by <I>Martin Junius</I> on <I>December, 14 2002</I> +by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> Index: fidogate_abt.html =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/html/fidogate_abt.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- fidogate_abt.html 14 Dec 2002 21:05:47 -0000 1.3 +++ fidogate_abt.html 26 Aug 2004 20:56:18 -0000 1.4 @@ -1,6 +1,6 @@ <HTML> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<!-- Created on December, 14 2002 by texi2html 1.64 --> +<!-- Created on August, 26 2004 by texi2html 1.64 --> <!-- Written by: Lionel Cons <Lio...@ce...> (original author) Karl Berry <ka...@fr...> @@ -31,7 +31,7 @@ <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="fidogate_abt.html#SEC_About"> ? </A>]</TD> </TR></TABLE> <H1>About this document</H1> -This document was generated by <I>Martin Junius</I> on <I>December, 14 2002</I> +This document was generated by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> <P></P> @@ -193,7 +193,7 @@ <BR> <FONT SIZE="-1"> This document was generated -by <I>Martin Junius</I> on <I>December, 14 2002</I> +by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> Index: fidogate_2.html =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/html/fidogate_2.html,v retrieving revision 1.51 retrieving revision 1.52 diff -u -d -r1.51 -r1.52 --- fidogate_2.html 14 Dec 2002 21:05:47 -0000 1.51 +++ fidogate_2.html 26 Aug 2004 20:56:17 -0000 1.52 @@ -1,6 +1,6 @@ <HTML> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<!-- Created on December, 14 2002 by texi2html 1.64 --> +<!-- Created on August, 26 2004 by texi2html 1.64 --> <!-- Written by: Lionel Cons <Lio...@ce...> (original author) Karl Berry <ka...@fr...> @@ -895,7 +895,7 @@ <BR> <FONT SIZE="-1"> This document was generated -by <I>Martin Junius</I> on <I>December, 14 2002</I> +by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> Index: fidogate_ovr.html =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/html/fidogate_ovr.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- fidogate_ovr.html 14 Dec 2002 21:05:47 -0000 1.3 +++ fidogate_ovr.html 26 Aug 2004 20:56:18 -0000 1.4 @@ -1,6 +1,6 @@ <HTML> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<!-- Created on December, 14 2002 by texi2html 1.64 --> +<!-- Created on August, 26 2004 by texi2html 1.64 --> <!-- Written by: Lionel Cons <Lio...@ce...> (original author) Karl Berry <ka...@fr...> @@ -52,7 +52,7 @@ <BR> <FONT SIZE="-1"> This document was generated -by <I>Martin Junius</I> on <I>December, 14 2002</I> +by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> Index: fidogate_6.html =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/html/fidogate_6.html,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- fidogate_6.html 14 Dec 2002 21:05:47 -0000 1.50 +++ fidogate_6.html 26 Aug 2004 20:56:18 -0000 1.51 @@ -1,6 +1,6 @@ <HTML> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<!-- Created on December, 14 2002 by texi2html 1.64 --> +<!-- Created on August, 26 2004 by texi2html 1.64 --> <!-- Written by: Lionel Cons <Lio...@ce...> (original author) Karl Berry <ka...@fr...> @@ -199,7 +199,7 @@ <BR> <FONT SIZE="-1"> This document was generated -by <I>Martin Junius</I> on <I>December, 14 2002</I> +by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> Index: fidogate_4.html =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/html/fidogate_4.html,v retrieving revision 1.55 retrieving revision 1.56 diff -u -d -r1.55 -r1.56 --- fidogate_4.html 14 Dec 2002 21:05:47 -0000 1.55 +++ fidogate_4.html 26 Aug 2004 20:56:18 -0000 1.56 @@ -1,6 +1,6 @@ <HTML> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<!-- Created on December, 14 2002 by texi2html 1.64 --> +<!-- Created on August, 26 2004 by texi2html 1.64 --> <!-- Written by: Lionel Cons <Lio...@ce...> (original author) Karl Berry <ka...@fr...> @@ -792,6 +792,12 @@ which is also very useful for fighting Spam. </P><P> +<DT><CODE>SilentBounces</CODE> +<DD>Causes EX_NOHOST, EX_NOUSER errors to return OK without any message. +Useful in the never ending fight against spam, when your gateway +is flooded with messages to unknown adresses, such as Fido.DE :-( +<P> + </DL> <P> @@ -1753,7 +1759,7 @@ <BR> <FONT SIZE="-1"> This document was generated -by <I>Martin Junius</I> on <I>December, 14 2002</I> +by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> Index: fidogate.html =================================================================== RCS file: /cvsroot/fidogate/fidogate/doc/html/fidogate.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- fidogate.html 14 Dec 2002 21:05:47 -0000 1.3 +++ fidogate.html 26 Aug 2004 20:56:17 -0000 1.4 @@ -1,6 +1,6 @@ <HTML> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<!-- Created on December, 14 2002 by texi2html 1.64 --> +<!-- Created on August, 26 2004 by texi2html 1.64 --> <!-- Written by: Lionel Cons <Lio...@ce...> (original author) Karl Berry <ka...@fr...> @@ -203,7 +203,7 @@ <BR> <FONT SIZE="-1"> This document was generated -by <I>Martin Junius</I> on <I>December, 14 2002</I> +by <I>Martin Junius</I> on <I>August, 26 2004</I> using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html "><I>texi2html</I></A> |
|
From: Martin J. <n0...@us...> - 2004-08-26 20:56:59
|
Update of /cvsroot/fidogate/fidogate/src/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28660/src/common Modified Files: log.c Log Message: See ChangeLog Index: log.c =================================================================== RCS file: /cvsroot/fidogate/fidogate/src/common/log.c,v retrieving revision 4.25 retrieving revision 4.26 diff -u -d -r4.25 -r4.26 --- log.c 22 Aug 2004 20:19:11 -0000 4.25 +++ log.c 26 Aug 2004 20:56:20 -0000 4.26 @@ -276,7 +276,5 @@ */ void log_program(char *name) { - char *p; - BUF_COPY(logprog, name); } |