T h e   F i d o G a z e t t e   Volume 9 Number 18   December 23, 2015
    +--------------------------+----------------------------------------+
    | .----------------------. |    dr.debug: dr.debug @ filegate.net   |
    | | A Weekly E-Zine      | |    bbslist:  bbslist @ filegate.net    |
    | | published by Fidonet | |    articles: fidogazette @ filegate.net|
    | | to promote BBSing    | +----------------------------------------+
    | |          ____________. |                                        |
    | |         /  __          |"Anyone who has never made a mistake    |
    | |        /  /  \         | has never tried anything new."         |
    | | WOOF! (  /|oo \        |                    Albert Einstein     |
    |  \_______\(_|  /_)       |                                        |
    |             \@/ \        |         Got Something To Say?          |
    |             .---.\    _  |            Say it in the               |
    | (jk)  _     |usb| \   \\ |           =The FidoGazette=            |
    |      / |    .___.  \   ))|                                        |
    |     /  |    /_ |  /  \// |         Editor: Janis Kracht           |
    |    |___|   // || _\   /  |         janis @ filegate . net         |
    |    .--`-. (_|(_|(____/   |         janis kracht 1:261/38          |
    |    |____| (jm)           |                                        |
    +--------------------------+----------------------------------------+
    
    
    
                Table Of Contents
    
    
    
    Quote of the Day ........................2
    Editorial .............................. 3
    Articles:   Using IPTables for Telnet and 
       WWW Servers ......................... 4
    WWIV News .............................. 5
    Humor: The Impossible Problem .......... 6
    This week's Echomail Statistics  ....... 7
    This week's FileGate File Report ....... 8
    FileGate FDN News ...................... 9
    New/Returning SysOps ....................10
    Fidonet SoftWare List  ................. 11
    FidoGazette BBS List  .................. 12
    Information (How to Submit an Article).. 13
    
    
    FIDOGAZETTE  Vol 9 No 18			 December 23, 2015
    
    
    
    -----------------------------------------------------------------
    
    ================================================================
    			 Quote of the Day
    ================================================================
    
    
    
    
    Be kind, for everyone you meet is fighting a hard battle.
    ~Plato
    
    FIDOGAZETTE  Vol 9 No 18 	 Page  2 	 December 23, 2015
    
    
    -----------------------------------------------------------------
    
    
    ================================================================
    			 E D I T O I A L
    ================================================================
    
    
    
    
    Busy week for those of us celebrating the Holidays no doubt, and a
    busy week for the FidoGazette :)
    
    I wrote an article also showing some IPtables commands I use on my
    system to stop hackers from repeatedly hitting my servers on BBBS. 
    If I don't use these commands, repeated hits from hackers that
    often slam into my servers multiple times in a minute can tie up
    all 15 nodes of my bbs.  Since I started using these commands, that
    has stopped.  I hope this helps those of you running Linux who have
    run into that kind of thing.
    
    This week we also have a great announcement about WWIV bbs software
    which has been updated!  Good news for WWIV sysops no doubt, and
    for those looking for a new interesting package.
    
    And this week we have a funny story in the humor section I think
    you'll enjoy.
    
    Merry Christmas to all, and for those of you who celebrate other
    holidays of the season, I hope you enjoy them.
    
    Finally, I end this editorial with best hopes and wishes for the
    quick recovery of Anita Felten, wife of Bjorn Felten and wishes for
    strength for Bjorn himself.  Those of us who have been hit with
    illness in our partners or family members know how hard it can be
    to deal with such things.
    
    
    FIDOGAZETTE  Vol 9 No 18 	 Page  3 	 December 23, 2015
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 A R T I C L E S
    =================================================================
    
    
    
    Use IPTables for Telnet and WWW Servers
    by Janis Kracht, 1:261/38, janis@filegate.net
    
    If your system is like mine, it can on occasion be inundated
    with jokers trying to crash various servers.  Using iptables
    under Ubuntu takes care of that for me.
    
    This article doesn't replace the ubuntu howto located here:
     https://help.ubuntu.com/community/IptablesHowTo
    or the tutorial here:
     https://www.frozentux.net/iptables-tutorial/iptables-tutorial.html
    but shows you how I use iptables for my bbs system.  You can
    read more about all the specific commands I use here in those 
    documents.
    
    You can create a collection of firewall rules to deny access
    from remote clients who attempt to connect "too many" times.
    
    
    All versions of Ubuntu come with iptables installed.  You can see
    this by typing the following command:
    
     user@filegate:~# which iptables
       /sbin/iptables
    
    By default iptables as installed, allows all traffic. You can check
    the state of your iptables before working with the examples in
    article by typing
    
     user@filegate$ iptables -L
    
    
    The interface you use is of course important in these rules.  If you
    are not sure of the interface you are using you are probably using
    eth0.  You can use the iwconfig command to see if you are using any
    wireless interfaces:
    
      user@filegate:~/$ sudo iwconfig
         lo        no wireless extensions.
    
         eth0      no wireless extensions.
    
    or to see the network interfaces on your system you can type 
    
      user@filegate:$ cat /etc/network/interfaces
        
    See below for examples to "guard" a telnet server, and then below
    it, for a web server.  I use these rules to limit attacks on my
    BBBS telnet port and BBBS web port.
    
    
    For telnet port 23:
    
    [Rule one] Enter the line below at the command prompt.  This
    line wraps so make sure you get it all.
    
     ---------------------------------------------------------------
    |   sudo iptables -I INPUT -p tcp --dport 23 -i eth0 -m state   |
    |   --state NEW -m recent --set                                 |
     ---------------------------------------------------------------
    
    
    [Rule two] This is the line that really does all the work.  I
    have the hitcount set to 4 hits in 60 seconds.  You can make
    these numbers anything you like.  With this setting, anyone who
    connects to my telnet port more that 4 times in 60 seconds is
    dropped immediately.
    
     ---------------------------------------------------------------
    |   sudo iptables -I INPUT -p tcp --dport 23 -i eth0 -m state   |
    |   --state NEW -m recent --update --seconds 60 --hitcount 4 -j |
    |    DROP                                                       | 
     ---------------------------------------------------------------
    
    
    "--state NEW" says only new connections are tested or managed.
    
    The --set parameter in the first line will make sure that the IP
    address connecting will be added to the "recent list", where it can
    be tested and used again as in our second rule.
    
    You can use iptables to control who has access to your servers
    with the "recent" module.  
    
    These two lines will DROP an incoming connection if the IP address
    has previously been added to the list, and the IP address sent a
    packet in the past 60 seconds, and the IP address has sent more
    than 4 packets.
                
    For my webserver on port 8080 I change the port in both lines,
    using 8080 instead of the telnet port, 23.
    
     ----------------------------------------------------------------
    |   sudo iptables -I INPUT -p tcp --dport 8080 -i eth0 -m state  |
    |   --state NEW -m recent --set                                  |
     ----------------------------------------------------------------
    
     ---------------------------------------------------------------  
    |   sudo iptables -I INPUT -p tcp --dport 8080 -i eth0 -m state  |
    |   --state NEW -m recent --update --seconds 60 --hitcount 4 -j  |
    |  DROP                                                          |
     ---------------------------------------------------------------      
    
    To list your current iptables rules, you can use this command:
    
    user@filegate.net#  iptables --list
    
    Sometimes you need to change your rules.  These commands will
    flush your iptables filewall, and remove all currently active
    rules:
    
    iptables -F
    iptables -X
    
    
    Thanks to the Debian wiki for examples of these commands. 
    Corrections, comments welcome :)
    
    
    
    FIDOGAZETTE  Vol 9 No 18 	 Page  4 	 December 23, 2015
    
    
    -----------------------------------------------------------------
    
    
    
    
     oooooo   oooooo     oooo oooooo   oooooo     oooo ooooo oooooo     oooo
      `888.    `888.     .8'   `888.    `888.     .8'  `888'  `888.     .8'
       `888.   .8888.   .8'     `888.   .8888.   .8'    888    `888.   .8'
        `888  .8'`888. .8'       `888  .8'`888. .8'     888     `888. .8'
         `888.8'  `888.8'         `888.8'  `888.8'      888      `888.8'
          `888'    `888'           `888'    `888'       888       `888'
           `8'      `8'             `8'      `8'       o888o       `8'
    
         ooooo      ooo oooooooooooo oooooo   oooooo     oooo  .oooooo..o
         `888b.     `8' `888'     `8  `888.    `888.     .8'  d8P'    `Y8
          8 `88b.    8   888           `888.   .8888.   .8'   Y88bo.
          8   `88b.  8   888oooo8       `888  .8'`888. .8'     `"Y8888o.
          8     `88b.8   888    "        `888.8'  `888.8'          `"Y88b
          8       `888   888       o      `888'    `888'      oo     .d8P
         o8o        `8  o888ooooood8       `8'      `8'       8""88888P'
    
                             http://www.wwivbbs.org/
    
                                 Volume 8 Issue 1
                                   Winter 2015
    
    
                                 Table of Contents
                                 ~~~~~~~~~~~~~~~~~
     WWIV BBS 5.0 Release......................................WWIV Dev Team
     WWIV and WWIVNet Update From The New NC..................Weatherman 1@1
     WWIV 5.1 Release Goals....................................Rushfan 1@514
     WWIV Links and Information.............................................
     =======================================================================
    
                             WWIV BBS 5.0 Release
                             - WWIV Dev Team -
    
     We are happy to announce WWIV 5.0 is available as the stable release of
     WWIV BBS. WWIV 5.0 was under development for many years and finishing
     is a significant milestone.
    
     Download WWIV 5.0: https://github.com/wwivbbs/wwiv/releases
     WWIV 5.0 Installation and Docs: http://wwivbbs.readthedocs.org/
    
     Here are some of the great new things in WWIV 5.0
    
     File Compatible with 4.30 & 4.31
         Drop the WWIV 5.0 binaries into your 4.30 or 4.31 setup and fire
         up WWIV 5.0.
     WWIV 5.0 Telnet Server
         WWWIV 5.0 has a telnet server included to allow client access
         to WWIV 5.0.
     Internal Zmodem Support
     ZIP/UNZIP Support Included
     Networkb.exe - BINKP transport for WWIV networking is now part of
         the WWIV builds.
     Netutil.exe - Network packet and config file utility now included.
     Network.exe - shim to proxy between network0, networkp (PPP project)
         and networkb.
     New User Sign Up Notification (SSM) to SysOp.
     Source Code now hosted on GitHub https://github.com/wwivbbs/wwiv
     Compiled with MSVC 2015
     Compiles and runs on Linux
     Door32.sys Support
     Syncfoss Support - Thanks to Rob Swindell
         FOSSIL can now be specified in WWIV.INI as a valid flag for spawn
         options.
     BBS.EXE -k command line to pack all message bases
         -k # # # will pack the massage bases with those IDs.
     New WWIV.INI Parameters
         EXEC_LOGSYNCFOSS     = [ 1 | 0 ] - If non-zero then
             wwivsync.log will  be generated.  The default setting is
             1 and this is currently ignored.
         EXEC_CHILDWAITTIME   = (time to wait in milliseconds, this
             parameter is only used on Win9X unless EXEC_USEWAITFORIDLE is
             set to 0. The default value is 500 (1/2 second).
         NEW_SCAN_AT_LOGIN= [Y|N] - If Y when a user logs  in they will be
             asked to scan all message areas for new messages.
         TEMP_DIRECTORY = temp%n  - The name of the Temp directory relative
             to the wwiv root directory. %n specifies the instance number.
         BATCH_DIRECTORY = batch%n  - The name of the Batch directory
             relative to the wwiv root directory. %n specifies the instance
             number.
         NUM_INSTANCES = 4  - The Number of Instances to allow.
         NOTE: Directories are created on demand by the bbs on startup and
             config.ovr will be created by legacy tools when you run init.
         NO_NEWUSER_FEEDBACK = [Y|N] - If set to Y no newuser messages will
             be sent at all.
     2 new pipe color codes:
         |# as an alternative to the "heart" codes
         |@ as an alternative to ^O^O
         Existing pipe codes are: |B, and |<2 digit code>
             for foreground colors.
     WWIV Message Editor Commands
         '/A' - Abort Message
         '/H' & '/?' - Help
     !!! Many Bug fixes !!!
    
     What has been deprecated in WWIV 5.0?
         Windows XP No Longer supported
         Support for Modems has been removed
         SPAWNOPT[FSED] is now unused and no longer supported
    
     =======================================================================
                     WWIV and WWIVNet Update From The New NC
                                By Weatherman 1@1
    
     As many know, lots of things have been happening with WWIV BBS and
     WWIVnet over the past few years.  When Weather Station BBS came back
     online as a virtual machine around three years ago, the only networks
     that were available were FTN based.  About 7-8 months later, I was
     approached by Eli Sanford to join WWIVSN (the early beginnings of the
     resurrected WWIVnet).  Eli spent lots of time helping others and
     leading the path so that we could have a functional WWIV network like
     years ago.
    
     On a very sad day (October 26, 2015), our WWIVnet leader Eli Sanford
     passed from leukemia.  We were in shock and upset from the news. A few
     weeks went by as we were mourning the loss of Eli and then later,
     figuring out plans to keep WWIVnet alive.
    
     We agreed to meet in the WWIV chat room on Monday evening to decide
     how to move forward.  The first item of business was determining the
     new @1 node for WWIVnet.  Rushfan suggested myself and the rest of
     the group was on-board with that change.  I was very humbled by the
     votes of support and encouragement.  It has been my passion to keep
     WWIV and WWIVnet alive in the most resiliant way possible.  My hardware
     setup is robust for a home environment and offers a good deal
     redundancy. I will always do my best to make sure WWIVnet is running
     the best way possible.
    
     That same night, we decided to make a historic change for WWIVnet.
     We switched the entire network from using WINS (PPP Project) to
     NetworkB (BinkP) written by Rushfan.  Given the magnatude of changes
     that we made that night, I think it went fantastic!  We have been
     running completely using BinkP for WWIVnet ever since.  It has proved
     to be a major step forward!  I can't thank Rushfan enough for writing
     that program, as that was a HUGE step forward!
    
     In more recent news, we now have the ability to send out network
     updates using NetUp just like the legacy WWIVnet.  WSS provided a
     new version of NetUp for WWIVnet which has been working
     perfectly sending out network updates, subs listings, and even this
     WWIVnet news.  This brings us back to the functionality that we had
     with the legacy WWIVnet.  It has been well over a decade since this was
     possible.
    
     I am completely honored to be a part of such an excellent group of
     people that have done so much for WWIV and WWIVnet in the past few
     years. Highlighting the past few months as just nothing short of
     incredible with the move to NetworkB (BinkP).  That was as huge of a
     change for WWIVnet as when we started moving network packets using
     Frank Reid's PPP Project (SMTP).
    
     This has been a very fun road for our hobby and I'm very excited for
     what the future holds.  I'm sure as more people discover our
     milestones, additional people will re-connect and join our fantastic
     group.  We will also not forget Eli and all the hard work he did to
     start the WWIVnet comeback.
    
     Here is a toast to the bright future of WWIV and WWIVnet!
    
         - Weatherman (Mark)  1@1.WWIVnet
     =======================================================================
                             WWIV 5.1 Release Goals
                                 By Rushfan 1@514
    
                                 Main Themes
                                 ~~~~~~~~~~~
     Messages and WWIVNet have always been at the heart of WWIV. For 5.1, I
     plan on modernizing and improving the internal code quality of the
     messaging code, making it easier to embed into new tools. Included in
     this will be support for the JAM Message Base format to broaden the
     range of tools available for exposing message bases.
    
     More on JAM: https://en.wikipedia.org/wiki/JAM_Message_Base_Format
    
     Net38 will be finalized [currently Beta 6] and released supporting any
     new changes to get WWIVNet functioning in the Internet era.
    
     See all of the work targeted to Milestone 5.1 on GitHub:
     http://git.io/vRrOM
    
     =======================================================================
                           WWIV Links and Information
     WWIC 5.0 Team Site                               http://www.wwivbbs.org
     WWIV BBS List           http://wwivbbs.rtfd.org/en/latest/WWIV_BBS_list
     WWIV 5.0 Documentation                   http://wwivbbs.readthedocs.org
     WWIVNews Archive             http://wwivbbs.rtfd.org/en/latest/WWIVNews
     WWIV IRC                             irc://irc.ospreynet.info:6667/wwiv
     =======================================================================
    
    
    -@- WWIVToss v.1.51
    -!- Origin:  Weather Station (1:261/1304.0)
    
    
    
    FIDOGAZETTE  Vol 9 No 18 	 Page  5 	 December 23, 2015
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 H U M O R
    =================================================================
    
    
    
    [Mark Lewis sent this in, thanks Mark!]
    
    The Impossible Problem
    
    mark lewis - 1:3634/12
    
    i found this while rummaging about on the 'net... it struck me as
    rather intriguing and then really funny when the solution was
    deduced...  so without further ado, here it is...
    
    http://web.mit.edu/jemorris/humor/500-miles
    
    From: Trey Harris 
    
    Here's a problem that *sounded* impossible...  I almost regret
    posting the story to a wide audience, because it makes a great tale
    over drinks at a conference.  :-) The story is slightly altered in
    order to protect the guilty, elide over irrelevant and boring
    details, and generally make the whole thing more entertaining.
    
    I was working in a job running the campus email system some
    years ago when I got a call from the chairman of the statistics
    department.
    
    "We're having a problem sending email out of the department."
    
    "What's the problem?" I asked.
    
    "We can't send mail more than 500 miles," the chairman explained.
    
    I choked on my latte.  "Come again?"
    
    "We can't send mail farther than 500 miles from here," he repeated. 
    "A little bit more, actually.  Call it 520 miles.  But no farther."
    
    "Um... Email really doesn't work that way, generally," I said,
    trying to keep panic out of my voice.  One doesn't display panic
    when speaking to a department chairman, even of a relatively
    impoverished department like statistics.  "What makes you think you
    can't send mail more than 500 miles?"
    
    "It's not what I *think*," the chairman replied testily.  "You see,
    when we first noticed this happening, a few days ago--"
    
    "You waited a few DAYS?" I interrupted, a tremor tinging my voice. 
    "And you couldn't send email this whole time?"
    
    "We could send email.  Just not more than--"
    
    "--500 miles, yes," I finished for him, "I got that.  But why
    didn't you call earlier?"
    
    "Well, we hadn't collected enough data to be sure of what was going
    on until just now." Right.  This is the chairman of *statistics*. 
    "Anyway, I asked one of the geostatisticians to look into it--"
    
    "Geostatisticians..."
    
    "--yes, and she's produced a map showing the radius within which we
    can send email to be slightly more than 500 miles.  There are a
    number of destinations within that radius that we can't reach,
    either, or reach sporadically, but we can never email farther than
    this radius."
    
    "I see," I said, and put my head in my hands.  "When did this
    start?  A few days ago, you said, but did anything change in your
    systems at that time?"
    
    "Well, the consultant came in and patched our server and rebooted
    it.  But I called him, and he said he didn't touch the mail
    system."
    
    "Okay, let me take a look, and I'll call you back," I said,
    scarcely believing that I was playing along.  It wasn't April
    Fool's Day.  I tried to remember if someone owed me a practical
    joke.
    
    I logged into their department's server, and sent a few test mails.
    This was in the Research Triangle of North Carolina, and a test
    mail to my own account was delivered without a hitch.  Ditto for
    one sent to Richmond, and Atlanta, and Washington.  Another to
    Princeton (400 miles) worked.
    
    But then I tried to send an email to Memphis (600 miles).  It
    failed.  Boston, failed.  Detroit, failed.  I got out my address
    book and started trying to narrow this down.  New York (420 miles)
    worked, but Providence (580 miles) failed.
    
    I was beginning to wonder if I had lost my sanity.  I tried
    emailing a friend who lived in North Carolina, but whose ISP was in
    Seattle.  Thankfully, it failed.  If the problem had had to do with
    the geography of the human recipient and not his mail server, I
    think I would have broken down in tears.
    
    Having established that -- unbelievably -- the problem as reported
    was true, and repeatable, I took a look at the sendmail.cf file. 
    It looked fairly normal.  In fact, it looked familiar.
    
    I diffed it against the sendmail.cf in my home directory.  It
    hadn't been altered -- it was a sendmail.cf I had written.  And I
    was fairly certain I hadn't enabled the "FAIL_MAIL_OVER_500_MILES"
    option.  At a loss, I telnetted into the SMTP port.  The server
    happily responded with a SunOS sendmail banner.
    
    Wait a minute... a SunOS sendmail banner?  At the time, Sun was
    still shipping Sendmail 5 with its operating system, even though
    Sendmail 8 was fairly mature.
    
    Being a good system administrator, I had standardized on Sendmail
    8.  And also being a good system administrator, I had written a
    sendmail.cf that used the nice long self-documenting option and
    variable names available in Sendmail 8 rather than the cryptic
    punctuation-mark codes that had been used in Sendmail 5.
    
    The pieces fell into place, all at once, and I again choked on the
    dregs of my now-cold latte.  When the consultant had "patched the
    server," he had apparently upgraded the version of SunOS, and in so
    doing *downgraded* Sendmail.  The upgrade helpfully left the
    sendmail.cf alone, even though it was now the wrong version.
    
    It so happens that Sendmail 5 -- at least, the version that Sun
    shipped, which had some tweaks -- could deal with the Sendmail 8
    sendmail.cf, as most of the rules had at that point remained
    unaltered.  But the new long configuration options -- those it saw
    as junk, and skipped.  And the sendmail binary had no defaults
    compiled in for most of these, so, finding no suitable settings in
    the sendmail.cf file, they were set to zero.
    
    One of the settings that was set to zero was the timeout to connect
    to the remote SMTP server.  Some experimentation established that
    on this particular machine with its typical load, a zero timeout
    would abort a connect call in slightly over three milliseconds.
    
    An odd feature of our campus network at the time was that it was
    100% switched.  An outgoing packet wouldn't incur a router delay
    until hitting the POP and reaching a router on the far side.  So
    time to connect to a lightly-loaded remote host on a nearby network
    would actually largely be governed by the speed of light distance
    to the destination rather than by incidental router delays.
    
    Feeling slightly giddy, I typed into my shell:
    
    $ units
    1311 units, 63 prefixes
    
    You have: 3 millilightseconds
    You want: miles
            * 558.84719
            / 0.0017893979
    
    "500 miles, or a little bit more."
    
    Trey Harris
    
    
    
    FIDOGAZETTE  Vol 9 No 18 	 Page  6 	 December 23, 2015
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 Echomail Statistics
    =================================================================
    
    
    
    Echomail Statistics
    Last 7 days
    By Janis Kracht, 1:261/38, janis@filegate.net
    
             Unsorted:            Sorted:                    Percent:
             ========             ======                     =======  
             0  10TH_AMD          222  FDN_ANNOUNCE            9%
             0  ABLED             213  NHL                     9%
             0  ADEPT_SYSOP       197  FIDO-REQ                8%
             0  AFTERSHOCK        187  COOKING                 8%
             0  ALASKA_CHAT       180  ALLFIX_FILE             8%
           180  ALLFIX_FILE       159  FIDONEWS                7%
             0  ALLFIX_HELP       121  STATS                   5%
             6  ALL-POLITICS      105  WEATHER                 4%
             0  AMATEUR_RADIO      94  HOME_COOKING            4%
             0  AMIGA              71  FN_SYSOP                3%
             0  ANTI_VIRUS         60  MEMORIES                2%
             9  ANTIQUES           59  HAM                     2%
             0  AQUARIUM           52  RBERRYPI                2%
             0  ARGUS              43  SHAREWARE_SUPPORT       1%
             0  ARROWBRIDGE        41  FIDO_SYSOP              1%
             0  ARTWARE            37  BBS_ADS                 1%
            25  ASIAN_LINK         26  IIHF                    1%
             0  AUTOMOTIVE         25  ASIAN_LINK              1%
             0  BABYLON5           22  WIN95                   0%
             2  BAMA               22  OTHERNETS               0%
             0  BATPOWER           21  DEBATE                  0%
             0  BBBS.ENGLISH       20  MBSE                    0%
             0  BBS-SCENE          20  BBS_PROMOTION           0%
            37  BBS_ADS            19  BINKD                   0%
             1  BBS_CARNIVAL       17  FIDOTEST                0%
            20  BBS_PROMOTION      17  FIDOGAZETTE             0%
             0  BBS_INTERNET       16  ESSNASA                 0%
             0  BIBLE              15  SYNCHRONET              0%
            19  BINKD              15  CBM                     0%
             0  BINKLEY            14  SYNCDATA                0%
             0  BLUEWAVE           13  MYSTIC                  0%
             0  CATS_MEOW          11  ENGLISH_TUTOR           0%
            15  CBM                 9  ANTIQUES                0%
             0  CFORSALE            8  LINUX                   0%
             1  CLASSIC_COMPUTER    7  SYNC_SYSOPS             0%
             1  COFFEE_KLATSCH      7  LS_ARRL                 0%
             0  COMM                6  Z1C                     0%
             0  CONSPRCY            6  WX_TALK                 0%
             0  CONTROVERSIAL       6  MINISTER                0%
           187  COOKING             6  FUNNY                   0%
             0  CRAFT-BEADS         6  ECHO_ADS                0%
             0  CROSSFIRE           6  ALL-POLITICS            0%
             0  CYBER-DANGER        5  ECHOLIST                0%
             3  DADS                4  LORD                    0%
             1  DBRIDGE             3  IBBSDOOR                0%
            21  DEBATE              3  DADS                    0%
             0  DOGHOUSE            2  WINDOWS                 0%
             0  DOOM                2  DOORGAMES               0%
             2  DOORGAMES           2  BAMA                    0%
             0  DOS                 1  WILDCAT!_SUPPORT        0%
             0  DOS_INTERNET        1  TEAMOS2                 0%
             0  EC_SUPPORT          1  PASCAL                  0%
             0  EC_UTIL             1  GUITAR                  0%
             6  ECHO_ADS            1  ESPOMEN                 0%
             5  ECHOLIST            1  DBRIDGE                 0%
             0  ECHOMODS            1  COFFEE_KLATSCH          0%
             0  EDGE_ONLINE         1  CLASSIC_COMPUTER        0%
             0  ELIST               1  BBS_CARNIVAL            0%
             0  EMERGCOM            0  ZEC                     0%
            11  ENGLISH_TUTOR       0  Z1_ROUTING              0%
             0  ENTHRAL             0  Z1_ELECTION             0%
             1  ESPOMEN             0  Z1_BACKBONE             0%
            16  ESSNASA             0  YAHOONEWS               0%
             0  FDECHO              0  X-FILES                 0%
           222  FDN_ANNOUNCE        0  XCODE                   0%
             0  FE_HELP             0  WHO                     0%
            17  FIDOGAZETTE         0  VATICAN                 0%
           159  FIDONEWS            0  VADV                    0%
             0  FIDOSOFT.HUSKY      0  TUXPOWER                0%
           197  FIDO-REQ            0  TUB                     0%
            41  FIDO_SYSOP          0  TREK                    0%
             0  FIDO_UTIL           0  TORNADO.SUPPORT         0%
            17  FIDOTEST            0  TG_SUPPORT              0%
             0  FILEFIND            0  TERMINAT                0%
             0  FILEGATE            0  TAGLINES                0%
             0  FLASHMARIO          0  SWL                     0%
             0  FMAIL_HELP          0  SURVIVOR                0%
            71  FN_SYSOP            0  SPITFIRE                0%
             0  FTSC_PUBLIC         0  SLACKWARE               0%
             6  FUNNY               0  RUSSIAN_TUTOR           0%
             0  GECHO_HELP          0  RETAIL_HORROR           0%
             0  GOLDED              0  RENEGADE_BBS            0%
             1  GUITAR              0  RA_UTIL                 0%
             0  GUN_CONTROL         0  RA_SUPPORT              0%
            59  HAM                 0  RA_MULTI                0%
             0  HAM_TECH            0  RA_32BIT                0%
             0  HOLYSMOKE           0  PUBLIC_KEYS             0%
            94  HOME_COOKING        0  PRISM                   0%
             0  HOTDOGED            0  POLITICS                0%
             3  IBBSDOOR            0  POL_INC                 0%
            26  IIHF                0  POL_DISORDER            0%
             0  INTERNET            0  POINTS                  0%
             0  IREX                0  PKEY_DROP               0%
             0  JAMNNTPD            0  PERL                    0%
             0  JAZZ                0  PCBOARD                 0%
             0  JNODE               0  PASCAL_LESSONS          0%
             0  LINUX_BBS           0  OS2USER-L               0%
             0  CREATIVE.LINUX      0  OS2REXX                 0%
             8  LINUX               0  OS2PROG                 0%
             0  LINUX-UBUNTU        0  OS2HARDWARE-L           0%
             0  LIVE_AUDIO          0  OS2DOSBBS               0%
             4  LORD                0  OS2DOS                  0%
             7  LS_ARRL             0  OS2BBS                  0%
             0  MAKENL_NG           0  OS2                     0%
             0  MATZDOBRE           0  NFL                     0%
            20  MBSE                0  NET_DEV                 0%
            60  MEMORIES            0  MUFFIN                  0%
             6  MINISTER            0  MOVIES                  0%
             0  ML_BASEBALL         0  ML_BASEBALL             0%
             0  MOVIES              0  MATZDOBRE               0%
             0  MUFFIN              0  MAKENL_NG               0%
            13  MYSTIC              0  LIVE_AUDIO              0%
             0  NET_DEV             0  LINUX-UBUNTU            0%
             0  NFL                 0  LINUX_BBS               0%
           213  NHL                 0  JNODE                   0%
             0  OS2BBS              0  JAZZ                    0%
             0  OS2DOSBBS           0  JAMNNTPD                0%
             0  OS2DOS              0  IREX                    0%
             0  OS2                 0  INTERNET                0%
             0  OS2HARDWARE-L       0  HOTDOGED                0%
             0  OS2PROG             0  HOLYSMOKE               0%
             0  OS2REXX             0  HAM_TECH                0%
             0  OS2USER-L           0  GUN_CONTROL             0%
            22  OTHERNETS           0  GOLDED                  0%
             0  PASCAL_LESSONS      0  GECHO_HELP              0%
             1  PASCAL              0  FTSC_PUBLIC             0%
             0  PCBOARD             0  FMAIL_HELP              0%
             0  PERL                0  FLASHMARIO              0%
             0  PKEY_DROP           0  FILEGATE                0%
             0  POINTS              0  FILEFIND                0%
             0  POL_DISORDER        0  FIDO_UTIL               0%
             0  POL_INC             0  FIDOSOFT.HUSKY          0%
             0  POLITICS            0  FE_HELP                 0%
             0  PRISM               0  FDECHO                  0%
             0  PUBLIC_KEYS         0  ENTHRAL                 0%
             0  RA_32BIT            0  EMERGCOM                0%
             0  RA_MULTI            0  ELIST                   0%
             0  RA_SUPPORT          0  EDGE_ONLINE             0%
             0  RA_UTIL             0  EC_UTIL                 0%
            52  RBERRYPI            0  EC_SUPPORT              0%
             0  RENEGADE_BBS        0  ECHOMODS                0%
             0  RETAIL_HORROR       0  DOS_INTERNET            0%
             0  RUSSIAN_TUTOR       0  DOS                     0%
             0  SLACKWARE           0  DOOM                    0%
            43  SHAREWARE_SUPPORT   0  DOGHOUSE                0%
             0  SPITFIRE            0  CYBER-DANGER            0%
           121  STATS               0  CROSSFIRE               0%
             0  SURVIVOR            0  CREATIVE.LINUX          0%
             0  SWL                 0  CRAFT-BEADS             0%
            14  SYNCDATA            0  CONTROVERSIAL           0%
            15  SYNCHRONET          0  CONSPRCY                0%
             7  SYNC_SYSOPS         0  COMM                    0%
             0  TAGLINES            0  CFORSALE                0%
             1  TEAMOS2             0  CATS_MEOW               0%
             0  TERMINAT            0  BLUEWAVE                0%
             0  TG_SUPPORT          0  BINKLEY                 0%
             0  TORNADO.SUPPORT     0  BIBLE                   0%
             0  TREK                0  BBS-SCENE               0%
             0  TUB                 0  BBS_INTERNET            0%
             0  TUXPOWER            0  BBBS.ENGLISH            0%
             0  VADV                0  BATPOWER                0%
             0  VATICAN             0  BABYLON5                0%
           105  WEATHER             0  AUTOMOTIVE              0%
             0  WHO                 0  ARTWARE                 0%
             1  WILDCAT!_SUPPORT    0  ARROWBRIDGE             0%
            22  WIN95               0  ARGUS                   0%
             2  WINDOWS             0  AQUARIUM                0%
             6  WX_TALK             0  ANTI_VIRUS              0%
             0  X-FILES             0  AMIGA                   0%
             0  XCODE               0  AMATEUR_RADIO           0%
             0  YAHOONEWS           0  ALLFIX_HELP             0%
             0  Z1_BACKBONE         0  ALASKA_CHAT             0%
             0  Z1_ELECTION         0  AFTERSHOCK              0%
             6  Z1C                 0  ADEPT_SYSOP             0%
             0  Z1_ROUTING          0  ABLED                   0%
             0  ZEC                 0  10TH_AMD                0%
    
    
    FIDOGAZETTE  Vol 9 No 18 	 Page  7 	 December 23, 2015
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 IFDC FileGate File Report
    =================================================================
    
    
    
    IFDC FileGate Weekly File Echo Report 
    Last 7 days
    By Janis Kracht, 1:261/38, janis@filegate.net
    
    
    Directory: /difflzh/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     nodediff.l52 151217    1k    0 Fidonet Nodelist Diff l52
    
    Directory: /diffzip/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     nodediff.z52 151217    2k    0 Fidonet Nodelist Diff z52
    
    Directory: /dbridge/dbinfo/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     DBNET.ZIP    151218    4k    0 DBNET in Zone 201
     USENET.ZIP   151218  608k    0 List of Usenet groups available
    
    Directory: /fernwood/fwcomm/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     osld100t.zip 151220   10M    0 OpenSSL-1.0.0t development kit
     oslr100t.zip 151220 4445k    0 OpenSSL-1.0.0t runtime kit 
     weasl224.zip 151221  668k    0 Weasel: a POP3 and SMTP daemon
     ftpser24.zip 151221  873k    0 FtpServer: an FTP daemon for OS/2.
     ftpsrc24.zip 151221 1196k    0 Source files for FTPServer 2.4
    
    Directory: /fernwood/fwprog/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     PmCtlSPP.zip 151221   61k    0 PmCtlsPP with source
     CUtilsrc.zip 151222   98k    0 CUtil library
    
    Directory: /fernwood/fwsysutl/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     tzset06.zip  151221   69k    0 TZSet: set time zone
    
    Directory: /fernwood/fwutils/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     keyclc12.zip 151221  274k    0 KeyCalc: a scientific calculator 
     PMFmtsrc.zip 151221  282k    0 Source for PMFormat disk formatter
    
    Directory: /fidogazette/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     fgav9n17.zip 151217   17k    0 T h e  F i d o G a z e t t e V9 N17
    
    Directory: /fidonews/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     FNEWSW51.ZIP 151222   10k    0 FIDONEWS 21 Dec 2015 Vol 32 No 51
    
    Directory: /dailylist/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     nodelist.z52 151218   80k    0 Daily nodelist Dec. 18 2015
     nodelist.z53 151218   80k    0 Daily nodelist Dec. 19 2015
     nodelist.z54 151219   80k    0 Daily nodelist Dec. 20 2015
     nodelist.z55 151220   80k    0 Daily nodelist Dec. 21 2015
     nodelist.z56 151221   80k    0 Daily nodelist Dec. 22 2015
     nodelist.z57 151222   80k    0 Daily nodelist Dec. 23 2015
    
    Directory: /info/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     filegate.zxx 151216   61k   45 Update of IFDC FileGate Echo tags in RAID
                                    format. Also contains HUB/connect information
     files.zip    151222 2357k    5 Current AllFILES at <<Prism 
     nfiles.zip   151222    5k    0 New Files at Prism BBS
    
    Directory: /fg_worf/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     filegate.zxx 151216   61k   14 Update of IFDC FileGate Echo tags
    
    Directory: /ipfn/i-argus/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     i-argus.z52  151217   14k    0 Argus TCP/IP nodelist 352
    
    Directory: /ipfn/i-binkd/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     EXCEPT.TXT   151218    8k    0 Exceptions noted
     BINKD.TXT    151218   68k    0 BinkD-compatible list 352
    
    Directory: /lnx4games/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     dde200L.zip  151221   48M    0 Doomsday 2.0.0 Build 1815 for Linux.
    
    Directory: /nasafdn/nasa/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     AP151216.ZIP 151216 1163k    0 NASA Astronomy Picture of the Day 
     AP151217.ZIP 151217  611k    0 NASA Astronomy Picture of the Day 
     AP151218.ZIP 151218 1030k    0 NASA Astronomy Picture of the Day 
     AP151219.ZIP 151219 1587k    0 NASA Astronomy Picture of the Day 
     AP151220.ZIP 151220 1043k    0 NASA Astronomy Picture of the Day 
     AP151221.ZIP 151221 6669k    0 NASA Astronomy Picture of the Day 
     AP151222.ZIP 151222    8k    0 NASA Astronomy Picture of the Day 
     AP151223.ZIP 151223  951k    0 NASA Astronomy Picture of the Day 
    
    Directory: /nasafdn/weather/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     DAILYWET.ZIP 151223  748k    0 Daily Weather Graphics Forecasts
    
    Directory: /nodediff/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     nodediff.a52 151217    2k    0 Fidonet Nodelist Diff a52
    
    Directory: /nodelist/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     nodelist.z52 151217   80k    0 FidoNet nodelist for day 352, 2015
    
    Directory: /oddball/infopack/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     AGORANET.ZIP 151220   31k    0 Agoranet
     GMSNET.ZIP   151220 1451k    0 GmsNet
    
    Directory: /pascal-net/pasndiff/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     PASNDIFF.Z52 151218    1k    0 weekly Pascal-Net Nodediff
    
    Directory: /pascal-net/paspoint/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     ppoint.z52   151218    8k    0 Pascal-Net Fakenet Pointlist
     PASPOINT.Z52 151218    8k    0 Weekly Pascal-Net PointList file
     pzpoint.z52  151218    5k    0 Weekly Pascal-Net PointList
    
    Directory: /pascal-net/pasnlist/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     PASNLIST.Z52 151218    9k    0 Weekly Pascal-Net Nodelist
    
    Directory: /pascal-net/pasnet/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     pasnlist.z50 151216    6k    0 Pasnet Daily nodelist
     pasnlist.350 151216   20k    0 Daily PasNet Nodelist
     pasnlist.351 151217   30k    0 Daily PasNet Nodelist
     pasnlist.z51 151217    0k    0 Pasnet Daily nodelist
     pasnlist.352 151218   30k    0 Daily PasNet Nodelist
     pasnlist.z52 151218    9k    0 Pasnet Daily nodelist
     pasnlist.z53 151219    6k    0 Pasnet Daily nodelist
     pasnlist.353 151219   20k    0 Daily PasNet Nodelist
     pasnlist.z54 151220    9k    0 Pasnet Daily nodelist
     pasnlist.354 151220   30k    0 Daily PasNet Nodelist
     pasnlist.z55 151221    9k    0 Pasnet Daily nodelist
     pasnlist.355 151221   30k    0 Daily PasNet Nodelist
     pasnlist.356 151222   20k    0 Daily PasNet Nodelist
     pasnlist.z56 151222    6k    0 Pasnet Daily nodelist
     pasnlist.357 151223   20k    0 Daily PasNet Nodelist
     pasnlist.z57 151223    6k    0 Pasnet Daily nodelist
    
    Directory: /pdn/pdnjava/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     blade.zip    151221  465k    0 Blade is a lightweight MVC framework
    
    Directory: /pdn/pdnpymisc/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     pyftpdlb.zip 151222  215k    0 Fast & scalable Python FTP lib.
    
    Directory: /r50/xofcfelst/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     N5020FEC.ZIP 151218    1k    0 N5020FEC information
    
    Directory: /stn/stn_list/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     stnlist.z52  151218   14k    0 Weekly Sysop TechNet Nodelist
     stndiff.z52  151218    1k    0 Weekly Sysop's TechNet Nodediff
    
    Directory: /stn/stn_olist/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     stnlist.z50  151216   13k    0 STN Daily Nodelist
     stnlist.z51  151217   14k    0 STN Daily Nodelist
     stnlist.z52  151218   13k    0 STN Daily Nodelist
     stnpoint.z52 151218    8k    0 Sysop's TechNet Weekly
     stnpnt.z52   151218    7k    0 Weekly new STN Pointlist
     stnlist.z53  151219   13k    0 STN Daily Nodelist
     stnlist.z54  151220   14k    0 STN Daily Nodelist
     stnlist.z55  151221   14k    0 STN Daily Nodelist
     stnlist.z56  151222   13k    0 STN Daily Nodelist
     stnlist.z57  151223   13k    0 STN Daily Nodelist
    
    Directory: /stn/stn_r6k/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     stn6000.352  151217   12k    0 STN Region 6000 Nodelist Seg
     stn6000.z52  151217    4k    0 STN Region 6000 Nodelist
    
    Directory: /stn/stn_r9k/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     stn9000.352  151217    5k    0 STN Region 9000 Nodelist Seg
     stn9000.z52  151217    2k    0 STN Region 9000 Nodelist
    
    Directory: /stn/stn_r8k/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     stn8000.z52  151217    1k    0 STN Region 8000 Nodelist
     stn8000.352  151217    1k    0 STN Region 8000 Nodelist Seg
    
    Directory: /stn/stn_r7k/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     stn7000.z52  151217    1k    0 STN Region 7000 Nodelist
     stn7000.352  151217    3k    0 STN Region 7000 Nodelist Seg
    
    Directory: /win_fdn/avwinxp/*
    
     File name     Date    kB  Dlds File description
     ---------     ----    --  ---- ----------------
     STINGER.ZIP  151216   30M    0 Stinger 32/64 bit
    
    
    Total 109 files, 118 MB, 64 downloads, 11 hours.
    
    For a detailed listing of new files, please see the file
    http://www.filegate.net/info/nfiles.zip
    or
    http://www.filegate.net/info/files.zip for the complete listing
    of all files at 1:261/38.
    
    Files available via freq at 607-200-4076
    Or freq at filegate.net via binkp standard port
    Or at http://www.filegate.net/
    
    
    FIDOGAZETTE  Vol 9 No 18 	 Page  8 	 December 23, 2015
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 IFDC FileGate FDN News
    =================================================================
    
    
    
    IFDC FileGate FDN News
    
    LEGION FDN has returned to Fidonet, headed by Jon Justvig.
    
    % FDN            Legion File Distribution Network
    % Coordinator    Jon Justvig 1:298/25 (jjustvig@vintagebbsing.com)
    %
    % Internet:      http://vintagebbsing.com:81/legion.ssjs
    % PATH: DIRECT
    % HUB: No
    % ========================================================================
    % File Echo                   Description
    % ========================================================================
    Area LEGION      0     !       FDN: Legion Beta Releases
    Area LEGOFF      0     !       FDN: Legion Offical Releases
    Area LEGNEWS     0     !       FDN: Legion News & Updates
    Area LEGUPS      0     !       FDN: Legion Uploads
    %
    %
    
    Thank you for continuing this FDN Jon.
    
    
    
    FIDOGAZETTE  Vol 9 No 18 	 Page  9 	 December 23, 2015
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 New and Returning Sysops
    =================================================================
    
    
    
    New/Returning SysOps
    
    Region 10: Tony Master   North Hollywood Ca
    
    Welcome back Tony!
    
    
    
    
    
    
    
    
    FIDOGAZETTE  Vol 9 No 18 	 Page  10 	 December 23, 2015
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 F I D O N E T   S O F T W A R E    L I S T
    =================================================================
    
    
    
    
    
    =================================================================
                        FIDONET SOFTWARE LISTING
    =================================================================
    
                            BBS Software List
    
                        Updated 21 December 2015
    
                    Maintained by Andrew Leary (1:320/119)
               Editors Emeritus: Robert Couture, Janis Kracht,
                                 Sean Dennis
    
             M=Mailer  T=Tosser  B=BBS  D=Door  C=Comm/Terminal
             P=Points  E=Editor  I=Internet  U=Utility  #=Info
             F=TIC/SRIF Processor
    
             *=Software is available and may be registerable,
               but no longer supported or updated.
    
             @=Website is operating but is no longer updated.
    
             ?=Software's updating/support status is unknown.
    
             O=Software is open source.
    
          This list contains BBS-related software that is available
          for registration (not necessarily supported), open source
          software and actively developed/supported software by its
          author.  Software listed may be available for DOS, Linux,
             OS/2 (eComStation), Windows (16 or 32 bit) and OSX.
    
    .- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -.
    |Software: Author     |Type |URL, Contact, Ver, Notes      Help Node|
    `- - - - - - - - - - -+- - -+- - - - - - - - - - - - - - - - - - - -'
    
     ==> FRONT-END/INTERNET MAILERS
    
     Argus                |MI*? |http://www.ritlabs.com/en/products/argus/
                          |     | v3.210 on Mar 29 2001
    
     BinkleyTerm XE       |MO*  |http://btxe.sourceforge.net
                          |     | 2.60XE Beta-XH7 on Oct 22 2000
    
     BinkD                |MI?  |http://binkd.grumbler.org
                          |     | gul@gul.kiev.ua 2:463/68
                          |     | v.1.0.4
                          |     | v.1.1a-73 (alpha)
                          |     | ftp://cvs.happy.kiev.ua/pub/fidosoft/mailer
                          |     |      /binkd/
                          |     |http://www.filegate.net/r50/aftnbinkd/
    
     D'Bridge             |MTCPE|http://www.net229.org/dbridge.htm 1:1/130
       Nick Andre         |I    | v3.99 SR8 on Aug 29 2015
    
     FIDO-Deluxe IP       |MPUI |http://www.fido-deluxe.de.vu 2:2432/280
      Michael Haase       |     | m.haase@gmx.net
                          |     | v2.4 on Sep 26 2003
    
     FrontDoor, FD/APX:   |MITPC|http://www.defsol.se          2:201/330
      Definite Solutions  |?    | sales@defsol.se
                          |     | v2.26SW & v2.33ml FD, v1.15 APX
    
     Husky Project        |MTPUI|http://husky.sourceforge.net/
                          |EO?  | v1.9 RC2 on Apr 20 2010
    
     Taurus               |MI   |http://www.fidotel.com/public/forums/
     (based on Radius)    |?    |  taurus/index.htm
                          |     | v5.0 Jun 12 2006
                          |     |
    
     T-Mail               |MI   |http://www.tmail.spb.ru (Russian only)
                          |?    | v2608 on Dec 12 2001
    
     AfterShock           |MTEI |https://play.google.com/store/apps/
      Asvcorp             |     |  details?id=com.asvcorp.aftershock
      Anatoly Vdovichev   |     | rudi.timmer@gmail.com     1:1/140
      Rudi Timmermans     |     | v1.5 on Nov 10 2013
    
     HotDogEd             |E    |https://play.google.com/store/apps/
      Sergey Pushkin      |     |  details?id=com.pushkin.hotdoged
                          |     | v2.11 on Jun 24 2015
    
     HotDogEd FidoNet     |MTI  |https://play.google.com/store/apps/
      Provider            |     |  details?id=com.pushkin.hotdoged.fido
      Sergey Pushkin      |     | v2.11 on Jun 24 2015
    
    +- - - - - - - - - - -+- - -+- - - - - - - - - - - - - - - - - - - -+
    
    ==> MAIL TOSSERS
    
     Crashmail II         |TO   |http://ftnapps.sourceforge.net/
                          |     | crashmail.html
    
     FastEcho             |T    |http://www.softeq.de/old/Products/FastEcho/
                          |     | fastecho.html
                          |     | v1.46.1 on 13 Nov 2007
                          |     | Registration keys are free and available
                          |     | by request from the author
    
     Fidogate             |TUI? |http://www.fidogate.org
                          |     | v4.4.10 on Aug 27 2004
                          |     |
    
     FMail                |TO   |http://fmail.sourceforge.net/
                          |     | v1.68.10.91.GPL on Jul 02 2014
    
     JetMail: JetSys      |TU   |http://www.jetsys.de  js@jetsys.de
      (ATARI ST only)     |     | v1.01 on Jan 1st 2000
    
     Squish               |T*   |http://www.filegate.net/maximus_bbs/
                          |     | v1.11R2 on Jan 1 2009
                          |     | Source code available in the Maximus BBS
                          |     | archive: http://maximus.sourceforge.net
    
    
     WWIVToss             |T    |http://www.weather-station.org/wwiv/
                          |     | v1.51 on 23 May 2015
    
    +- - - - - - - - - - -+- - -+- - - - - - - - - - - - - - - - - - - -+
    
    ==> BBS SOFTWARE
    
     BBBS                 |BICTM|http://www.bbbs.net             2:22/222
                          |     |  b@bbbs.net
                          |     | v4.01 on January 28 2007
    
     EleBBS               |BO*? |http://www.elebbs.com
                          |     | v0.10.RC1 on Jun 9 2002
    
     Enthral BBS          |B    |http://enthralbbs.com          1:250/501
      Linux/BSD/OSX       |     | v0.429/Alpha on 14 October 2010
                          |     | Fidonet filebone SCENEENT
    
     Ezycom BBS           |BT*  |http://www.ezycom-bbs.com      3:690/682
                          |     | v2.15g2 on Nov 16 2009
    
     GT Power             |B    |http://www.gtpowerbbs.com/
                          |     | v19.00
    
     Hermes II Project    |BT   |http://www.hermesbbs.com/
      Macintosh-based     |     | malyn@strangegizmo.com
                          |     | v3.5.10b3
    
     Maximus BBS          |BO*  |http://www.filegate.net/maximus_bbs/
                          |     | v3.03
                          |     | Source code available at:
                          |     | http://maximus.sourceforge.net/
    
     MBSE BBS             |BMTFI|http://sourceforge.net/projects/mbsebbs
                          |PO   | ajleary@sourceforge.net
                          |     | v1.0.6 on Aug 3 2015
    
     Meltdown BBS         |UIO  |http://meltdown-bbs.sourceforge.net/
                          |     | v1.0b on Apr 26 2004
    
     Mystic BBS           |BMTCE|http://www.mysticbbs.com
                          |IO   | http://sourceforge.net/projects/mysticbbs
                          |     | v1.11 on Nov 6 2015
    
     RemoteAccess BBS     |B?   |http://www.rapro.com             1:1/120
                          |     | bfmorse@rapro.com
                          |     | v2.62.2SW
    
     Renegade BBS         |B    |http://renegadebbs.info        1:129/305
                          |     | v1.10/DOS on 3 Oct 2009
    
     Spitfire BBS         |B?   |http://www.buffalocrk.com/
                          |     | mdwoltz@buffalocrk.com
                          |     | v3.7 on Jan 1, 2010
    
     Synchronet BBS       |BTIO |http://www.synchro.net         1:103/705
                          |     | v3.16c on 15 Aug 2015
    
     Telegard BBS         |B*   |http://www.telegard.net
                          |     | v3.09g2-sp4/mL on Dec 19 1999
    
     WildCat! Interactive |MTBEI|http://www.santronics.com
      Net Server, Platinum|     | sales@santronics.com
      Xpress: Santronics  |     |
      Software, Inc.      |     | v6.4 AUP 454.1 on Aug 1 2011
    
     WWIV BBS             |B    |https://github.com/wwivbbs/wwiv/releases
                          |     | v5.00 on Dec 14 2015
    
    +- - - - - - - - - - -+- - -+- - - - - - - - - - - - - - - - - - - -+
    
    ==> TIC PROCESSORS/FILEFIX/SRIF
    
     Allfix               |FIUT |http://www.allfix.com/          1:140/12
      Bob Seaborn         |     | v6.0.22 on 26 January 2011
    
     NEF/pk               |F    |http://nefpk.8m.com/
                          |     | v2.45b2 on 5 March 2000
    
     TinyTIC              |FO   |http://ftnapps.sourceforge.net/tinytic.html
                          |     |                               1:120/544
    
     VIReq                |FO   |http://ftnapps.sourceforge.net/vireq.html
                          |     |                               1:120/544
    
    +- - - - - - - - - - -+- - -+- - - - - - - - - - - - - - - - - - - -+
    
    ==> BBS DOORS/UTILITIES
    
     Cheepware            |DU   |http://outpostbbs.net/cheepware.html
      Sean Dennis         |     | sysop@outpostbbs.net         1:18/200
                          |     | Fidonet filebone CH-WARE
    
     DDS (Doorware        |D@   |http://www.doorgames.org
      Distribution System)|     | ruth@doorgames.org
      Ruth Argust         |     |
    
     Jibben Software      |D*   |http://www.jibbensoftware.com/
                          |     |  bbs-door-games.cfm
                          |     | scott@jibben.com
                          |     | 1995-99 Release dates
    
     John Dailey Software |DU   |http://www.johndaileysoftware.com
    
     Shining Star         |D*   |http://www.shiningstar.net/bbsdoors/
                          |     | nannette@shiningstar.net
                          |     | Doors are still registerable via website
    
     Sunrise Doors:       |D    |http://www.sunrisedoors.com
      Al Lawrence         |     | al@sunrisedoors.com
                          |     | Tel: (404) 256-9518
    
     T1ny's Software      |DU   |http://www.tinysbbs.com/files/tsoft/
      Shawn Highfield     |     | shighfield@gmail.com          1:229/452
                          |     | Fidonet filebone CH-WARE
    
     The Brainex System   |D    |http://www.brainex.com/brainex_system/
                          |     | stanley@brainex.com
                          |     | 1994-99 Releases
    
     Trade Wars           |D*   |http://www.eisonline.com/tradewars/
                          |     | jpritch@eisonline.com
                          |     | v3.09 (DOS-32) in 2002
    
     Vagabond Software    |DU*  |http://vbsoft.dhakota.org
                          |     | d@dhakota.org
                          |     | Last update: Apr 11 2008
    
     WWIVEdit             |DE   |http://www.weather-station.org/wwiv/
                          |     | v3.0 on 27 Jun 2011
    
    +- - - - - - - - - - -+- - -+- - - - - - - - - - - - - - - - - - - -+
    
    ==> POINT SOFTWARE
    
     CrossPoint (XP)      |P?   |http://www.crosspoint.de (German only)
                          |     | pm@crosspoint.de
                          |     | v3.12d  on Dec 22 1999
    
     FreeXP               |P    |http://www.freexp.de (German only)
                          |     | support@freexp.de
                          |     | v3.42 on Jun 27 2010
    
     FidoIP               |PO   |http://sourceforge.net/apps/mediawiki/fidoip/
                          |     | v.1.0.5 on Dec 2010
    +- - - - - - - - - - -+- - -+- - - - - - - - - - - - - - - - - - - -+
    
    ==> SYSOP MAIL EDITORS
    
     GoldEd+              |EO   |http://golded-plus.sourceforge.net/
                          |     | v1.1.5 (Snapshot) on Nov 30 2015
                          |     | NOTE: Unstable versions released often
    
     SqEd32               |E    |http://www.sqed.de            2:2476/493
                          |     | v1.15 on Dec 15 1999
                          |     | Website is in German and English
    
    +- - - - - - - - - - -+- - -+- - - - - - - - - - - - - - - - - - - -+
    
    ==> INTERNET UTILITIES
    
     Ifmail               |UIO  |http://ifmail.sourceforge.net
                          |     | crosser@average.org
    
     Internet Rex         |UI?  |http://members.shaw.ca/InternetRex/
                          |     | telnet://xanadubbs.ca         1:342/806
                          |     | v2.29 on Oct 21st 2001
    
     JamNNTPd             |UIO  |http://ftnapps.sourceforge.net/jamnntpd.html
                          |     |                               1:120/544
    
     Luckygate            |UO   | ftp://happy.kiev.ua/pub/fidosoft/gate/lgate
                          |     | gul@gul.kiev.ua
    
     MakeNL               |UO   |http://makenl.sourceforge.net
                          |     | v3.4.5 on Nov 14 2014
    
     RNtrack              |U    |hhttp://sourceforge.net/projects/ftrack-as
                          |     |2:5080/102
                          |     |stas_degteff@users.sourceforge.net
                          |     | v1.32 on Apr 29 2011
    
     TransNet             |UIO? |http://www-personal.umich.edu/~mressl/
                          |     | transnet/index.html
                          |     | transnet@ressl.com.ar
                          |     | v2.11 on Sep 13 2007
    
    +- - - - - - - - - - -+- - -+- - - - - - - - - - - - - - - - - - - -+
    
    ==> INFORMATIONAL WEBSITES/BBS LISTS
    
     Telnet/Dialup BBS    |#    |http://www.telnetbbsguide.com   1:275/89
      Guide               |     | Maintained by Dave Perrussel
                          |     | This is probably the most updated BBS
                          |     | list on the Internet for a general
                          |     | BBS list.
    
     Synchronet BBS List  |#    |http://www.synchro.net/sbbslist.html
                          |     | Maintained automatically
                          |     | This list is specifically for
                          |     | Synchronet-based BBS systems and is
                          |     | automatically updated nightly.
    
     The BBS Corner       |#    |http://www.bbscorner.com
                          |     | This website is more than just files,
                          |     | it's an encyclopedia of knowledge for
                          |     | BBS sysops and people who want to
                          |     | become sysops.  This site is run by
                          |     | the same person who does the Telnet
                          |     | BBS Guide.
    
    +- - - - - - - - - - -+- - -+- - - - - - - - - - - - - - - - - - - -+
    
     File Archives:
    
      http://archives.thebbs.org
      http://sysopscorner.thebbs.org (site is no longer maintained)
      http://www.simtel.net
      http://www.bbsfiles.com
      http://hobbes.nmsu.edu (OS/2 specific)
      http://www.filegate.net/ (FTP access via port 60721)
      http://www.tinysbbs.com/files/
    
     Note: Most also provide FTP access (use ftp instead of http above)
    
     The BBS Software List is published weekly in the FidoNews.
    
     If you have corrections, suggestions or additions to the information
     above, please contact Andrew Leary with your information via the
     FIDONEWS echo or netmail at 1:320/119.
    
    
    
    
    FIDOGAZETTE  Vol 9 No 18 	 Page  11 	 December 23, 2015
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 F I D O G A Z E T T E   B B S    L I S T
    =================================================================
    
    
    
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    !!!        G A Z E T T E   B B S   L I S T        !!!
    =-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-==-=-=-=-=-=-=-=
    By bbslist @ filegate.net    
       	
    Send updates, changes to address above or 
    to janis @ filegate.net.
    
    
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......BlackICE BBS
    FidoAddress..2:240/8001
    Software.....Mystic
    OS...........Win 7 Ultimate 32Bit
    C/B Verify...None
    Access.......First call access to doors, files, and message
                 reading. Also access to the Newscenter with
                 News, Weatherupdates, Twitter-access and many more.
                 Message posting and downloads requires sysop validation.
                 Fido write-access only with realname.
    Telnet.......blackice.bbsindex.com
    Telnet/SSH...blackice.bbsindex.com:22
    FTP..........Available for all BBS-Members
    NNTP.........Available for all BBS-Members (Fido readonly)
    WWW..........www.blackicebbs.de.vu
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......Capitol City Online
    FidoAddress..1:2320/105
    Phone........502-875-8938
    Software.....GT Power
    OS...........OS/2
    C/B Verify...None
    Access.......First Call access to most of BBS upon finishing
                 new user questionnaire
    Telnet.......cco.ath.cx
                 telnet access to GT Power BBS - same as dial-up
    www:.........http://cco.ath.cx
                 This site runs Synchronet under linux.  Requires
                 separate user registration.  Has same message
                 areas as dial-up/telnet bbs.
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......Christian Fellowship
    FidoAddress..1:266/512
    Phone........1-856-933-7096
    Software.....PCBoard 15.3
    OS...........Windows XP pro
    C/B Verify...Manually via email or voice 
                 usually within 24 hours.
    Access.......Read only until verified. Once 
                 verified write access to Msg bases, file 
                 areas, chat and doors/games.
    Telnet.......cfbbs.dtdns.net or cfbbs.no-ip.com
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......Doc's Place BBS Online
    FidoAddress..1:123/140
    Software.....Wildcat 5.42
    OS...........Windows 7 pro
    Access.......Read only until sysop verified.
    Telnet/Web:..http://www.docsplace.org/ 
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......Cyberia BBS
    FidoAddress..1:106/324
    Software.....Mystic v1.10
    OS...........Debian Wheezy
    C/B Verify...N/A
    Access.......Full Access on First Call.
                 Aliases allowed, Real Name required for Fidonet Access
    Telnet.......cyberia.darktech.org
    FTP..........cyberia.darktech.org
    Notes........HQ and support for Gryphon's Mystic MPL Mods.
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......Lightning BBS
    FidoAddress..1:311/2
    Software.....Virtual Advanced
    OS...........Windows XP
    C/B Verify...None
    Access.......First call access to doors, files and
                 message reading.  Message posting requires 
                 validation.
    Telnet.......lightningbbs.com
    www:.........http:/www.lightningbbs.com/index.php
                 Thanks to VADV-PHP you can access almost 
                 everything the BBS has to offer from the
                 web, with the exception of door games.
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=	             
    System.......Lionsden BBS
    FidoAddress..1:224/303
    Phone........613-392-8896
    Software.....Synchronet
    OS...........Windows XP
    C/B Verify...None
    Access.......First Call access to Msg bases, and file areas.
    Telnet.......lionsden.darktech.org
                 telnet access offers full features
                 of the standard bbs such as doors, 
                 qwkmail, Files, etc.
    www:.........http:/www.lionsden.darktech.org 
                 You will redirected to a menu where you can 
                 choose one of three sites.  The first one is 
                 private and requires PW to get into.
    FTP..........FTP://lionsden.darktech.org Files only
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......Omicron Theta
    FIDOAddress..1:116/18
    Software.....Wildcat! 7.0
    OS...........Windows Server 2008 Standard
    C/B Verify...None
    Access.......Full access first call.
    Telnet.......winserver.us
    WWW..........winserver.us
    Notes........Fido host for WILDCAT!_SUPPORT and JAZZ echomail 
                 areas.
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......Outpost BBS
    FidoAddress..1:18/200 Software.....MBSE 1.0.x (usually running a 
                 beta version)
    OS...........Slackware Linux 14.1
    C/B Verify...None Access.......First call access to doors, files, 
                 and message reading.
                 Posting requires sysop validation.
    Telnet.......bbs.outpostbbs.net (all users)
    SSH..........bbs.outpostbbs.net (existing users only)
    WWW access...outpostbbs.net/goto.html (HTMLTerm)
    WWW..........outpostbbs.net
    FTP..........anonymous@bbsftp.outpostbbs.net
    FREQ.........Telnet, BinkP, or ifcico
    Notes........Home of BBS_ADS, BBS_CARNIVAL, CLASSIC_COMPUTER,
                 ECHO_ADS, HOME_COOKING, OTHERNETS and SLACKWARE
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......The Positronium Repository
    FidoAddress..1:393/68
    Phone........337-984-4794
    Software.....POTS: WildCat + Telnet: Synchronet
    OS...........Windows XP
    C/B Verify...None
    Access.......First Call access to most of BBS upon finishing
                 new user questionnaire
    Telnet.......cmech.dynip.com
    www:.........http://cmech.dynip.com
                 Access to live File Areas only, over 37,000 files
                 at 13GB in library ;-) Home for BFDS, APOD (BBS is
                 Filebase.BBS)
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......<<Prism BBS
    FidoAddress..1:261/38
    Phone........607-200-4076
    Software.....BBBS/Li6 v4.10 Dada-2
    OS...........Linux (Ubuntu 12.04.5 LTS)
    C/B Verify...None
    Access.......First Call access to Msg bases, 
                 file areas, all features of the BBS.
    Telnet.......filegate.net
                 telnet access offers full features 
                 of the standard bbs such as doors,
                 qwkmail, BWmail,Files, chat, group chat,
                 upload/download messages, download URLs, 
                 ftp access to other sites by request.     
    www:.........http://www.filegate.net:8090/bbbs
                 or
                 http://www.filegate.net/ for files only.
                 web interface is limited to reading messages 
                 and replying online, or downloading messages 
                 in qwk packets, file download access.
                 Home of IFDC FileGate Project, PDN, Util*Net,
                 Win_FDN
    FREQ:        filegate.net:24554
                 or from 1:261/38 (phone modem)
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......Roach Guts BBS
    FidoAddress..1:396/60
    Software.....Mystic BBS 1.10 A38
    OS...........Debian  6.0 32-bit
    C/B Verify...None
    Access.......First call access to doors, files and
                 message reading.  Message posting requires
                 validation.
    Telnet.......kingcoder.net
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 	 
    System.......Shenk's Express
    FidoAddress..1:275/100
    Phone........757-233-9860
    Software.....SBBS
    OS...........WIN XP
    C/B Verify...None
    Access.......First Call access
    Telnet.......shenks.synchro.net
                 This site is the coordinator for Battlenet, a 
                 large BRE league with 7 BRE games.  Also hosting
                 2 FE league games. 
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......TequilaMockingbird Online
    FidoAddress..1:266/404
    Phone........973-551-0704
    Software.....Synchronet
    OS...........Windows Server 2008
    C/B Verify...None
    Access.......First Call access to most of BBS upon finishing
                 new user questionnaire
    Telnet.......tequilamockingbirdonline.net
    www:.........www.tequilamockingbirdonline.net (No access to bbs 
                 at this time.)
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......The Thunderbolt BBS
    FidoAddress..1:19/33
    Software.....GT Power 20 (telnet) - VADV-PHP (website)
    OS...........Windows 7 Professional
    C/B Verify...Answer new user questionnaire (#3) within 7 days of
                 initial logon. Optionally, ALSO leave a M)essage to
                 Sysop, telling where they heard about the BBS, and
                 what they're looking for in it.
    Access.......Full Downloads, Limited Message Areas and Doorgames
                 until after new user data is reviewed. Once upgraded,
                 full privileges (Confirmed Visiting Sysops have
                 access to additional message and file areas)
    Telnet.......wx1der.dyndns.org
    WWW..........wx1der.dyndns.org
    Notes:       The BBS is offline whenever thunderstorms threaten,
                 or are in the central Arkansas area.
                 Contact the Sysop via the website link or go to:
                 http://www.wx1der.com/fbk.htm
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......Time Warp of the Future BBS
    FidoAddress..1:340/400
    Phone........none
    Software.....sbbs 3.17a (very beta)
    OS...........win. 7 sp1
    C/B Verify...None 
    Access.......First Call access to Msg bases, and file areas.
    Telnet.......time.synchro.net:24 or time.darktech.org:24
                 telnet access offers full features
                 of the standard bbs such as doors,
                 messages or file area etc.
    www:.........http://time.synchro.net:81
                 Web interface is limited really to reading messages
                 and replying online, or downloading messages in qwk
                 packets, but not uploading them, and file download
                 access. SBBS files available.
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    System.......Top's Diamond Mine
    FidoAddress..1:120/323
    Software.....ProBoard 2.17
    OS...........Windows 7
    C/B Verufy...None
    Telnet.......bbs.tdmonline.org
    www access...www.tdmonline.org/bbs 
    www:.........www.tdmonline.org
    ftp..........ftp.tdmonline.org 
    
    
    
    
    
    FIDOGAZETTE  Vol 9 No 18 	 Page  12 	 December 23, 2015
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    				 I N F O R M A T I O N
    =================================================================
    
    
    
    INFO:
    
    Fidogazette is published by Janis Kracht, Editor.  
    
    If you have an idea for a column or a series of articles, 
    please contact me :)
    
    New! 
    Mailing-List subscriptions via 
          http://www.filegate.net/sub.html
    
    but of course you can always link into your uplink and use 
    Tick or a tick compatible program.
    
    Where to Send Your Articles
    
    Unlike most editors, I surely do not  mind running my mouth
    when there is a sparsity of articles for the 'zine.  I'd
    MUCH rather you sent in material...  lacking that, I will
    fill these issues with my meanderings and thoughts and
    hopefully we will grow into something of consequence here
    :)
    
    Write an article!
    
    If you WOULD like to submit an article, feel free to drop
    your article off at:
    
    Email attach to address: janis @ filegate.net
     
    Fidonet attach: Janis Kracht at 1:261/38
     Modem: 607-200-4076 
     Binkp: 1:261/100 filegate.net port 24555 
     telnet mailer: filegate.net
    
    If you are using routed Fidonet mail, don't send articles as routed 
    attaches.  They will fail somewhere along the path before getting here.
    Send them instead direct to filegate.net.
       
    Give it a title, sign your name and network address if you have
    one and send it along!
    
    Don't worry about the format, I can take anything you send me
    and mutilate it further as you can see above.  Linux is nice
    that way (g).  Spell checking your own work will help though
    (something I'm typically guilty of (g)).
     
    To send reviews or recipes to the Food section, email or
    netmail Janis as above.
    
    Email address for submissions to Dr.Debug:
      To send a question to Dr. Debug, email a question to:
          drdebug @  filegate.net 
      or post in the fidogazette echo!  :)
    
    To send a listing to the FidoGazette bbslist, email your 
    listing to:
      bbslist @ filegate.net 
    or post it in the fidogazette echo! 
    
    	
    
    
    FIDOGAZETTE  Vol 9 No 18 	 Page  13 	 December 23, 2015
    
    
    -----------------------------------------------------------------
    
    
     Published with MakeNews2 by Janis Kracht 2011-2012

     -=+-=+-=+-=+-=+-=+-=+-=+-=+-=+-=+-=+-=+-=+-=+-=+-=