T h e   F i d o G a z e t t e   Volume 10 Number 4   January 27, 2016
    +--------------------------+----------------------------------------+
    | .----------------------. |    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
    Humor:  When Kids Learn to Swear ....... 4
    Articles: 
      How to create a PEM file for BBBS .... 5
    This week's Echomail Statistics  ....... 6
    This week's FileGate File Report ....... 7
    New/Returning SysOps ................... 8
    Fidonet SoftWare List  ................. 9
    FidoGazette BBS List  .................. 10
    Information (How to Submit an Article).. 11
    
    
    FIDOGAZETTE  Vol 10 No 4			 January 27, 2016
    
    
    
    -----------------------------------------------------------------
    
    ================================================================
    			 Quote of the Day
    ================================================================
    
    
    
      
    Good people are good because they’ve come to wisdom through
    failure.  We get very little wisdom from success.
    ~William Saroyan
    
    FIDOGAZETTE  Vol 10 No 4 	 Page  2 	 January 27, 2016
    
    
    -----------------------------------------------------------------
    
    
    ================================================================
    			 E D I T O R I A L
    ================================================================
    
    
    
    First off, apologies to Daryl Stout!  Last week's issue of the
    Fidogazette had a typo and gave a wrong node number in the Good
    News article regarding his system :( As I'm sure many have you have
    noticed, Daryl's node number is 1:19/33 for The Thunderbolt BBS. 
    Sorry about that Daryl :(
    
    This week Jon Justvig notes how to use a PEM file with bbbs for
    https (secure http).  Great info there, thanks Jon!
    
    
    
    
    
    
    
    
    
    
    
    
    
    FIDOGAZETTE  Vol 10 No 4 	 Page  3 	 January 27, 2016
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 H U M O R
    =================================================================
    
    
    
    From Dave Drum, One of my Users on <<PRISM, thanks Dave!
    
    A 6-year-old and 4-year-old are upstairs in their bedroom.
    
    "You know what?" says the 6-year-old. "I think it's about time we
    started cussing."
    
    The 4-year-old nods his head in approval.
    
    The 6-year-old continues, "When we go downstairs for breakfast, I'm
    gonna say something with 'hell' and you say something with 'ass'."
    
    The 4-year-old agrees with enthusiasm and they head down stairs.
    
    When their mother walks into the kitchen and asks the 6-year-old
    what he wants for breakfast, he replies, "Aw hell, Mom.  I guess
    I'll have some Cheerios."
    
    Mom slaps him -- Whack!
    
    The older boy flies out of his chair, tumbles across the kitchen
    floor, gets up, and runs upstairs crying his eyes out with his
    mother in hot pursuit, slapping his rear with every step.  She
    locks him in his room and shouts, "You can stay in there until I
    let you out!"
    
    She then comes back downstairs, looks at the 4-year-old and asks
    with a stern voice, "And what do you want for breakfast, young man?
    
    "I don't know," he blubbers. "But you can bet your ass it won't be
    Cheerios!"
    
    
    
    
    
    FIDOGAZETTE  Vol 10 No 4 	 Page  4 	 January 27, 2016
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 A R T I C L E S
    =================================================================
    
    
    
    How to create a PEM file for BBBS
    by Jon Justvig, 1:298/25
    
    [* some command lines wrap...]
    
    I recently wanted to add a secure connection via
    HTTP to my BBBS system.  After digging up the web
    I found a way to do it that's not too complicated.
    Before I continue, this guide is for Linux based
    systems, so you might have to do some modifications
    for your OS.  First, you'll need OpenSSL and the
    libcryto library files.  Then, in a temporary
    directory, run this command to create a private key
    which you'll need to complete this whole process.
    The passphrase word it ask for is pretty much like
    a password for your certificate which we'll remove
    later.
     
    
    
        openssl genrsa -des3 -out server.key 1024
    
    Then you will want to do a certificate signing
    request and fill out the information it as for
    about yourself and your system:
    
        openssl req -new -key server.key -out server.csr
    
    Removing the passphrase from the key file:
    
        cp server.key server.key.org
        openssl rsa -in server.key.org -out server.key
    
    Now we need to create a self-signed cerficate
    for the remaining of what we need to do here.
    
    *    openssl x509 -req -days 365 -in server.csr -signkey server.key 
        -out server.crt
    
    Then in a text editor, create a new text file.
    Copy the text from the server.crt then append
    the text in server.key in this new file and
    name this file bbbsd.pem and place it in your
    root /bbbs/ directory, where you launch BBBS.
    
    Make sure when you launch bbbsd, that you include
    httpd:443:ssl after the httpd portion such as:
    
    *    ./bbbsd 2 7 telnetd:2323 ftpd:2121 httpd:8090 httpd:443:ssl 
         rawd:24554
    
    I ran into something after I was able to login with
    a secure connection.  I wanted to click [Unsecure
    WWW Login] and wasn't able to.
    
    A little note in case you use different ports such
    as I do. (i.e. 8080).  In your /bbbs/menu/ directory
    is a file called slogin.www.  Edit that file and
    look for this line:
    
        [Unsecure WWW Login]
    
    Where I have 8080 is your unsecure port number or
    default port number you use for your BBBS.  I hope
    I've helped in some form or another.
    
    That's it!  Good luck! 
    
    
    
    FIDOGAZETTE  Vol 10 No 4 	 Page  5 	 January 27, 2016
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 Echomail Statistics
    =================================================================
    
    
    
    Echomail Statistics
    Last 7 days
    By Janis Kracht, 1:261/38, janis@filegate.net
    
             Unsorted:            Sorted:                    Percent:
             ========             ======                     =======
             0  10TH_AMD          274  NHL                     11%
             0  ABLED             233  COOKING                 9%
             0  ADEPT_SYSOP       188  FIDO-REQ                7%
             0  AFTERSHOCK        177  FIDONEWS                7%
             0  ALASKA_CHAT       171  FDN_ANNOUNCE            7%
           147  ALLFIX_FILE       147  ALLFIX_FILE             6%
             0  ALLFIX_HELP       113  STATS                   4%
            23  ALL-POLITICS       95  FN_SYSOP                3%
            11  AMATEUR_RADIO      87  HOME_COOKING            3%
             0  AMIGA              82  BINKD                   3%
             0  ANTI_VIRUS         72  SYNCHRONET              2%
             9  ANTIQUES           52  MYSTIC                  2%
             0  AQUARIUM           47  HAM                     1%
             5  ARGUS              40  FIDOTEST                1%
             0  ARROWBRIDGE        38  SHAREWARE_SUPPORT       1%
             0  ARTWARE            36  MEMORIES                1%
            21  ASIAN_LINK         29  BBS_ADS                 1%
             0  AUTOMOTIVE         26  EC_SUPPORT              1%
             0  BABYLON5           26  BAMA                    1%
            26  BAMA               24  SYNC_SYSOPS             0%
             0  BATPOWER           24  OTHERNETS               0%
             0  BBBS.ENGLISH       23  CBM                     0%
             0  BBS-SCENE          23  ALL-POLITICS            0%
            29  BBS_ADS            23  ALL-POLITICS            0%
             8  BBS_CARNIVAL       21  SYNCDATA                0%
            15  BBS_PROMOTION      21  GOLDED                  0%
             0  BBS_INTERNET       21  ASIAN_LINK              0%
             0  BIBLE              20  FIDOGAZETTE             0%
            82  BINKD              15  WIN95                   0%
             0  BINKLEY            15  WEATHER                 0%
             0  BLUEWAVE           15  BBS_PROMOTION           0%
             0  CATS_MEOW          14  RBERRYPI                0%
            23  CBM                14  PASCAL                  0%
             1  CFORSALE           14  FIDO_SYSOP              0%
             0  CLASSIC_COMPUTER   14  ESSNASA                 0%
             0  COFFEE_KLATSCH     13  WINDOWS                 0%
             0  COMM               12  FUNNY                   0%
             0  CONSPRCY           11  DEBATE                  0%
             0  CONTROVERSIAL      11  AMATEUR_RADIO           0%
           233  COOKING            10  IIHF                    0%
             0  CRAFT-BEADS        10  FTSC_PUBLIC             0%
             0  CROSSFIRE          10  FILEGATE                0%
             0  CYBER-DANGER        9  WX_TALK                 0%
             0  DADS                9  ANTIQUES                0%
             1  DBRIDGE             8  VATICAN                 0%
            11  DEBATE              8  POL_INC                 0%
             0  DOGHOUSE            8  MINISTER                0%
             0  DOOM                8  LS_ARRL                 0%
             0  DOORGAMES           8  BBS_CARNIVAL            0%
             0  DOS                 7  POLITICS                0%
             0  DOS_INTERNET        6  ECHO_ADS                0%
            26  EC_SUPPORT          5  ECHOLIST                0%
             0  EC_UTIL             5  ARGUS                   0%
             6  ECHO_ADS            4  TEAMOS2                 0%
             5  ECHOLIST            4  IREX                    0%
             0  ECHOMODS            4  FIDOSOFT.HUSKY          0%
             0  EDGE_ONLINE         3  IBBSDOOR                0%
             0  ELIST               3  ENGLISH_TUTOR           0%
             0  EMERGCOM            2  PDNECHO                 0%
             3  ENGLISH_TUTOR       1  Z1C                     0%
             0  ENTHRAL             1  SURVIVOR                0%
             0  ESPOMEN             1  POINTS                  0%
            14  ESSNASA             1  MBSE                    0%
             0  FDECHO              1  HAM_TECH                0%
           171  FDN_ANNOUNCE        1  DBRIDGE                 0%
             0  FE_HELP             1  CFORSALE                0%
            20  FIDOGAZETTE         0  ZEC                     0%
           177  FIDONEWS            0  Z1_ROUTING              0%
             4  FIDOSOFT.HUSKY      0  Z1_ELECTION             0%
           188  FIDO-REQ            0  Z1_BACKBONE             0%
            14  FIDO_SYSOP          0  YAHOONEWS               0%
             0  FIDO_UTIL           0  X-FILES                 0%
            40  FIDOTEST            0  XCODE                   0%
             0  FILEFIND            0  WILDCAT!_SUPPORT        0%
            10  FILEGATE            0  WHO                     0%
             0  FLASHMARIO          0  VADV                    0%
             0  FMAIL_HELP          0  TUXPOWER                0%
            95  FN_SYSOP            0  TUB                     0%
            10  FTSC_PUBLIC         0  TREK                    0%
            12  FUNNY               0  TORNADO.SUPPORT         0%
             0  GECHO_HELP          0  TG_SUPPORT              0%
            21  GOLDED              0  TERMINAT                0%
             0  GUITAR              0  TAGLINES                0%
             0  GUN_CONTROL         0  SWL                     0%
            47  HAM                 0  SPITFIRE                0%
             1  HAM_TECH            0  SLACKWARE               0%
             0  HOLYSMOKE           0  RUSSIAN_TUTOR           0%
            87  HOME_COOKING        0  RETAIL_HORROR           0%
             0  HOTDOGED            0  RENEGADE_BBS            0%
             3  IBBSDOOR            0  RA_UTIL                 0%
            10  IIHF                0  RA_SUPPORT              0%
             0  INTERNET            0  RA_MULTI                0%
             4  IREX                0  RA_32BIT                0%
             0  JAMNNTPD            0  PUBLIC_KEYS             0%
             0  JAZZ                0  PRISM                   0%
             0  JNODE               0  POL_DISORDER            0%
             0  LINUX_BBS           0  PKEY_DROP               0%
             0  CREATIVE.LINUX      0  PERL                    0%
             0  LINUX               0  PCBOARD                 0%
             0  LINUX-UBUNTU        0  PASCAL_LESSONS          0%
             0  LINUX-UBUNTU        0  OS2USER-L               0%
             0  LIVE_AUDIO          0  OS2REXX                 0%
             0  LORD                0  OS2PROG                 0%
             8  LS_ARRL             0  OS2HARDWARE-L           0%
             0  MAKENL_NG           0  OS2DOSBBS               0%
             0  MATZDOBRE           0  OS2DOS                  0%
             1  MBSE                0  OS2BBS                  0%
            36  MEMORIES            0  OS2                     0%
             8  MINISTER            0  NFL                     0%
             0  ML_BASEBALL         0  NET_DEV                 0%
             0  MOVIES              0  MUFFIN                  0%
             0  MUFFIN              0  MOVIES                  0%
            52  MYSTIC              0  ML_BASEBALL             0%
             0  NET_DEV             0  MATZDOBRE               0%
             0  NFL                 0  MAKENL_NG               0%
           274  NHL                 0  LORD                    0%
             0  OS2BBS              0  LIVE_AUDIO              0%
             0  OS2DOSBBS           0  LINUX-UBUNTU            0%
             0  OS2DOS              0  LINUX-UBUNTU            0%
             0  OS2                 0  LINUX_BBS               0%
             0  OS2HARDWARE-L       0  LINUX                   0%
             0  OS2PROG             0  JNODE                   0%
             0  OS2REXX             0  JAZZ                    0%
             0  OS2USER-L           0  JAMNNTPD                0%
            24  OTHERNETS           0  INTERNET                0%
             0  PASCAL_LESSONS      0  HOTDOGED                0%
            14  PASCAL              0  HOLYSMOKE               0%
             0  PCBOARD             0  GUN_CONTROL             0%
             2  PDNECHO             0  GUITAR                  0%
             0  PERL                0  GECHO_HELP              0%
             0  PKEY_DROP           0  FMAIL_HELP              0%
             1  POINTS              0  FLASHMARIO              0%
             0  POL_DISORDER        0  FILEFIND                0%
             8  POL_INC             0  FIDO_UTIL               0%
            23  ALL-POLITICS        0  FE_HELP                 0%
             7  POLITICS            0  FDECHO                  0%
             0  PRISM               0  ESPOMEN                 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%
            14  RBERRYPI            0  ECHOMODS                0%
             0  RENEGADE_BBS        0  DOS_INTERNET            0%
             0  RETAIL_HORROR       0  DOS                     0%
             0  RUSSIAN_TUTOR       0  DOORGAMES               0%
             0  SLACKWARE           0  DOOM                    0%
            38  SHAREWARE_SUPPORT   0  DOGHOUSE                0%
             0  SPITFIRE            0  DADS                    0%
           113  STATS               0  CYBER-DANGER            0%
             1  SURVIVOR            0  CROSSFIRE               0%
             0  SWL                 0  CREATIVE.LINUX          0%
            21  SYNCDATA            0  CRAFT-BEADS             0%
            72  SYNCHRONET          0  CONTROVERSIAL           0%
            24  SYNC_SYSOPS         0  CONSPRCY                0%
             0  TAGLINES            0  COMM                    0%
             4  TEAMOS2             0  COFFEE_KLATSCH          0%
             0  TERMINAT            0  CLASSIC_COMPUTER        0%
             0  TG_SUPPORT          0  CATS_MEOW               0%
             0  TORNADO.SUPPORT     0  BLUEWAVE                0%
             0  TREK                0  BINKLEY                 0%
             0  TUB                 0  BIBLE                   0%
             0  TUXPOWER            0  BBS-SCENE               0%
             0  VADV                0  BBS_INTERNET            0%
             8  VATICAN             0  BBBS.ENGLISH            0%
            15  WEATHER             0  BATPOWER                0%
             0  WHO                 0  BABYLON5                0%
             0  WILDCAT!_SUPPORT    0  AUTOMOTIVE              0%
            15  WIN95               0  ARTWARE                 0%
            13  WINDOWS             0  ARROWBRIDGE             0%
             9  WX_TALK             0  AQUARIUM                0%
             0  X-FILES             0  ANTI_VIRUS              0%
             0  XCODE               0  AMIGA                   0%
             0  YAHOONEWS           0  ALLFIX_HELP             0%
             0  Z1_BACKBONE         0  ALASKA_CHAT             0%
             0  Z1_ELECTION         0  AFTERSHOCK              0%
             1  Z1C                 0  ADEPT_SYSOP             0%
             0  Z1_ROUTING          0  ABLED                   0%
             0  ZEC                 0  10TH_AMD                0%
    
    
    
    
    
    FIDOGAZETTE  Vol 10 No 4 	 Page  6 	 January 27, 2016
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 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.l22 160121    2k    0 Fidonet Nodelist Diff l22
    
    Directory: /diffzip/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     nodediff.z22 160121    2k    0 Fidonet Nodelist Diff z22
    
    Directory: /dbridge/dbinfo/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     DBNET.ZIP    160122    4k    0 DBNET in Zone 201
     USENET.ZIP   160122  608k    0 List of Usenet groups available
    
    Directory: /dbridge/dbnlist/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     DBNETLST.A22 160122    1k    0 DBNET Nodelist
    
    Directory: /dbridge/dbndiff/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     DBNETDIF.A22 160122    0k    0 DBNET Nodediff
    
    Directory: /fidogazette/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     fgav10n3.zip 160121   14k    0 T h e  F i d o G a z e t t e V10 N3
    
    Directory: /fidonews/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     FNEWSX04.ZIP 160124   10k    0 FIDONEWS 25 Jan 2016 Vol 33 No 04
    
    Directory: /dailylist/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     nodelist.z26 160125   78k    0 Daily nodelist Jan 26 2016
     nodelist.z27 160126   78k    0 Daily nodelist Jan 27 2016
    
    Directory: /info/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     filegate.zxx 160124   61k   45 Update of IFDC FileGate Echo tags
     files.zip    160126 2362k    5 Current AllFILES at <<Prism 
     pdnfiles.zip 160122  402k    1 All files list PDN file areas. 
     nfiles.zip   160127    4k    0 New Files at Prism BBS
    
    Directory: /fg_worf/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     filegate.zxx 160124   61k   14 Update of IFDC FileGate Echo tags
    
    Directory: /ipfn/i-argus/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     i-argus.z22  160121   13k    0 Argus TCP/IP nodelist 022
    
    Directory: /ipfn/i-binkd/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     BINKD.TXT    160122   67k    0 BinkD-compatible list 022
     EXCEPT.TXT   160122    8k    0 Exceptions noted
    
    Directory: /lnx4games/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     dde200L.zip  160122   48M    0 Doomsday Ver 2.0.0 build 1847
    
    Directory: /nasafdn/nasa/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     AP160120.ZIP 160120 1634k    0 NASA Astronomy Picture of the Day 
     AP160121.ZIP 160121 2400k    0 NASA Astronomy Picture of the Day 
     AP160122.ZIP 160122   82k    0 NASA Astronomy Picture of the Day 
     AP160123.ZIP 160123 4891k    0 NASA Astronomy Picture of the Day 
     AP160124.ZIP 160124 2496k    0 NASA Astronomy Picture of the Day 
     AP160125.ZIP 160125  226k    0 NASA Astronomy Picture of the Day 
     AP160126.ZIP 160126  991k    0 NASA Astronomy Picture of the Day 
    
    Directory: /nasafdn/weather/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     DAILYWET.ZIP 160126  712k    0 Daily Weather Graphics Forecasts
    
    Directory: /nodediff/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     nodediff.a22 160121    3k    0 Fidonet Nodelist Diff a22
    
    Directory: /nodelist/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     nodelist.z22 160121   78k    0 FidoNet nodelist for day 022, 2016
    
    Directory: /oddball/infopack/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     SPORTNET.ZIP 160122   19k    0 Sportnet
     AGORANET.ZIP 160124   31k    0 Agoranet
     LEGINFO.ZIP  160124   15k    0 Legion Info
    
    Directory: /pascal-net/pasndiff/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     PASNDIFF.Z22 160122    1k    0 weekly Pascal-Net Nodediff file
    
    Directory: /pascal-net/paspoint/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     PASPOINT.Z22 160122    8k    0 Weekly Pascal-Net PointList file
     ppoint.z22   160122    8k    0 Pascal-Net Zone 115 Weekly New
     pzpoint.z22  160122    5k    0 Weekly Pascal-Net PointList
    
    Directory: /pascal-net/pasnlist/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     PASNLIST.Z22 160122    9k    0 Weekly Pascal-Net Nodelist file
    
    Directory: /pascal-net/pasnet/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     pasnlist.z20 160120    6k    0 Pasnet Daily nodelist
     pasnlist.020 160120   20k    0 Daily PasNet Nodelist
     pasnlist.021 160121   30k    0 Daily PasNet Nodelist
     pasnlist.z21 160121    0k    0 Pasnet Daily nodelist
     pasnlist.z22 160122    9k    0 Pasnet Daily nodelist
     pasnlist.022 160122   30k    0 Daily PasNet Nodelist
     pasnlist.023 160123   20k    0 Daily PasNet Nodelist
     pasnlist.z23 160123    6k    0 Pasnet Daily nodelist
     pasnlist.z24 160124    9k    0 Pasnet Daily nodelist
     pasnlist.024 160124   30k    0 Daily PasNet Nodelist
     pasnlist.025 160125   30k    0 Daily PasNet Nodelist
     pasnlist.z25 160125    9k    0 Pasnet Daily nodelist
     pasnlist.z26 160126    6k    0 Pasnet Daily nodelist
     pasnlist.026 160126   20k    0 Daily PasNet Nodelist
    
    Directory: /pdn/pdnother/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     SAConftt.zip 160122   68k    0 Add multi-colored confetti
     zipfrmwk.zip 160122 5073k    0 Swift framework for zip and unzip
    
    Directory: /pdn/pdnunix/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     sd71216.zip  160122 2528k    0 Seed7 programming language
    
    
    Directory: /r50/aftnged/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     gpl60122.zip 160123  976k    0 GoldED+1.1.5 beta linux binaries
     gpl60123.zip 160123  943k    0 GoldED+1.1.5 beta linux binaries
     gpc60123.zip 160123  630k    0 GoldED+ 1.1.5  [config files]
     gps60123.zip 160123 1572k    0 GoldED+ 1.1.5   [source code]
    
    Directory: /r50/xofcfelst/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     N5020FEC.ZIP 160122    1k    0 N5020FEC information
    
    Directory: /stn/stn_list/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     stnlist.z22  160122   14k    0 Weekly Sysop TechNet Nodelist
     stndiff.z22  160122    1k    0 Weekly Sysop's TechNet Nodediff
    
    Directory: /stn/stn_olist/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     stnlist.z20  160120   13k    0 STN Daily Nodelist
     stnlist.z21  160121   14k    0 STN Daily Nodelist
     stnpoint.z22 160122    8k    0 Sysop's TechNet Weekly New
     stnpnt.z22   160122    7k    0 Weekly new STN Pointlist
     stnlist.z23  160123   13k    0 STN Daily Nodelist
     stnlist.z24  160124   14k    0 STN Daily Nodelist
     stnlist.z25  160125   14k    0 STN Daily Nodelist
     stnlist.z26  160126   13k    0 STN Daily Nodelist
    
    Directory: /stn/stn_region/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     STNZN.Z52    160126    9k    0 STN Zone file List
     STNZN.Z59    160126    9k    0 STN Zone file List
     STNZN.Z01    160126    9k    0 STN Zone file List
    
    Directory: /stn/stn_r6k/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     stn6000.z22  160121    4k    0 STN Region 6000 Nodelist
     stn6000.022  160121   12k    0 STN Region 6000 Nodelist Seg
    
    Directory: /stn/stn_r9k/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     stn9000.z22  160121    2k    0 STN Region 9000 Nodelist
     stn9000.022  160121    5k    0 STN Region 9000 Nodelist Seg
    
    Directory: /stn/stn_r8k/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     stn8000.022  160121    1k    0 STN Region 8000 Nodelist Seg
     stn8000.z22  160121    1k    0 STN Region 8000 Nodelist
    
    Directory: /stn/stn_r7k/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     stn7000.z22  160121    1k    0 STN Region 7000 Nodelist
     stn7000.022  160121    3k    0 STN Region 7000 Nodelist Seg
    
    Directory: /win_fdn/win_comm/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     ZOC7072.ZIP  160124 4678k    0 ZOC V7.07.2 Shareware comm program
    
    Directory: /win_fdn/avwinxp/*
    
     File name     Date    kB  Dlds File description
     =========     ====    ==  ==== ================
     STINGER.ZIP  160120   30M    0 stinger32/64 Weekly Stinger
    
    
    Total 96 files, 113 MB, 65 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 10 No 4 	 Page  7 	 January 27, 2016
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 New and Returning Sysops
    =================================================================
    
    
    
    New/Returning Sysops!
    
    In the works:
    
    Region 13:  Keith Cunningham Lancaster,PA
    Region 19:  Randy Henderson Wayne, OK 
                Jake Parks Kingwood, Texas
    
    Welcome all :)
    
    
    
    FIDOGAZETTE  Vol 10 No 4 	 Page  8 	 January 27, 2016
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    			 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 10 No 4 	 Page  9 	 January 27, 2016
    
    
    -----------------------------------------------------------------
    
    
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    !!!        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:8080/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.......Stepping Stone BBS
    FidoAddress..1:298/26
    Software.....Synchronet
    OS...........Linux/Ubuntu
    C/B Verify...None
    Access.......First call access to doors, files, and message
                 reading.  HQ of Whisper-Echo-Net and Legion!
    Telnet.......vintagebbsing.com:23
    FTP..........vintagebbsing.com:21
    WWW..........vintagebbsing.com:81
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    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 10 No 4 	 Page  10 	 January 27, 2016
    
    
    -----------------------------------------------------------------
    
    
    =================================================================
    				 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 10 No 4 	 Page  11 	 January 27, 2016
    
    
    -----------------------------------------------------------------
    
    
     Published with MakeNews2 by Janis Kracht 2011-2012

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