Box 24

 Home   Infos   Tipps   Webmail   Humor   Polizei   Gästebuch   Downloads   Chat   Suchen   Feedback   Links 

 

 Anmelden/Login   Neuanmeldung/New User   Java Telnet Applet   Telnet   
 

5.6 Build 450.7: Info on update released June 18, 2003

Special notes about this update

  • IMPORTANT: If you are upgrading from Wildcat! v5.4 or less, please read the change history in AUP v5.5.450.2. A few conversion steps must be performed before running this new update as outlined in the 450.2 Special Notes. The Wildcat! server will also inform you of this required conversion if it not done.
  • IMPORTANT: If you are upgrading from Wildcat! v5.5.450.2, please read the change history in AUP v5.6.450.3. In AUP 450.3, new optional internet security features (SSL and SASL) were added and wcConfig components related to Mail Operations was reorganized and consolidated under one section called "Mail Server."
  • If you have the add-on product "Wildcat! List Server", it will automatically perform a conversion the first time you run the new wcListServeSetup.exe configuration utility.
  • In this v5.6.450.7 update, we concentrated on many enhancements and fixes, especially in regards to the Internet E-mail system. Much emphasis was placed on addressing SPAM mail with the enhancements to the Wildcat! SMTP SMTPFilter wcBasic hook system. The FTP server has many new extended support features. Many enhancements and new SDK/wcBasic features were added. It is now possible for 3rd party developers to write remote WEB configuration features using wcBasic.

wcServer

  • Minor change to UpdateFileRec() when renaming a file. If the record exist for renaming, the original file does not exist but the new file exist, then it will check for the old file before it internally renames the file. This helps the situation when a file is named externally and the sysop uses the File Manager to correct the record file name. With this change, the new file name was deleted.
  • Enhanced the Configuration Login client session to check for WCX access by remote client IP address. This augments the new ability for wcBasic WCX applications to perform configuration operations. See the new wcConfig | System Securities options.
  • Added logic to address the intermittent Windows 2000 "RPC Error 1740" when wcServer is started. This may occur for some systems because there is an Windows 2000 installation problem causing duplicate NCALRPC end-points. The Wildcat! Server will now ignore the second NCALRPC thus allowing it to continue to start. However, please note that this is still considered a Windows 2000 installation issue that should be addressed. We don't know  why this happens. It seems harmless but it does seem to be an Windows  installation issue. wcServer will write a warning in WILDCAT.LOG if it finds duplicate end-points. If you find there are strange RPC related issues, you might want to check the log for this "duplicate RPC end-point" warning and address the installation issue until wcServer no longer issues the warning in the log.

wcConfig

  • wcMenu was cleaned up. Printing the menu tree was enhanced.
  • Fixed Bounce Mail option (was forcing true)
  • Added new SMTP Server options:
  • Added new System Security Options.
    In wcConfig | System Securities, there are two new options: (Detail)
    • Allow WCX Configuration
    • Check Client IP Network Access

wcSSLConfig

  • Updated help for Verify Level. If you are using an InstantSSL certificate, you need to set the Verify Level to "FAIL IF NO PEER CERTIFICATE", and you need to make sure the file ssl\cacert\ca-bundle.txt is updated with the new Comodo Trusted Root Certificate. You can download the latest version from the following URL:
    ftp://ftp.santronics.com/wildcat/ssl/cacert/ca-bundle.txt.
    Using your mouse, Right Click the URL and select "Save Target As" and save the file in your SSL\CACERT directory.

wcWeb

  • Fixed a memory handle leak
  • Fixed the WEB SSL option, "Required for all connections." Now it is possible to use the WEB server for SSL operations only.
  • Changed logic for automatically creation of counter files (Detail)
  • The WEB server questionnaire processor will now support the phone number validation check file, data\badphone.lst . If the phone number or mask is in this file, the user be redirected to the error file InvalidPhone.htm (more about error files).The default message is:
    Phone number is invalid or not permitted.
    Click the browser back button and try again.
  • Cleaned up the WEB server questionnaire processor when dealing with double entries in the answer file. This might occur if a questionnaire expired or the original URL did not have &js=1 .
    For example: /ques?ques2
    Without the &js=1 parameter, the web server will generate a non-javascript questionnaire HTML form with a small JavaScript to redirect back to the same question. If the browser supports JavaScript, the form is regenerated with JavaScript form field validation logic.   Under this situation, a double entry of the answer file occurred. This is now fixed.

wcBasic

  • Fixed a compiler bug for an ASC conversion to a const integer.
    Example: Const xxxxx = asc("$")
  • Fixed a bug in the DATELIB.WCC library function DayOfWeekStr() showing wrong day of week string.
    Note: The GetDateOfWeek() returns an index of 1 to 7 where 1 corresponds to Sunday.
  • Fixed a bug in the Questionnaire handler (QUES.WCC) where it was not updating user time remaining when a security was changed.
  • Main.wcc version display information was updated.
  • Exposed existing Wildcat! SDK function WildcatLoggedIn() to wcBasic
  • Added wcBasic compiler defines:
    BUILD_450_7
    WILDCAT_V56

    example:

    #ifdef BUILD_450_7
      if (WildcatLoggedIn(0) <> clSessionUser) then
       print "User not logged in"
       end
      end if
    #else
      if (user.info.id = 0) then
       print "User not logged in"
       end
      end if
    #endif

  • Added wcBasic constant WC_VERSION: returns the current version info, i.e., "v5.6.450.7" (more constants)
  • New Configuration Library.
    wcBasic now offers support for using the configuration SDK, wcsmw.dll and wcsgate.dll, functions.
    New headers are provided, wcsmw.wch, wctypemw.wch, wcsgate.wch and wcgtype.wch. The best way to use the configuration library is by using the new contextlib.wch library header which offers a way to prepare a configuration context session in standalone applications and via the web.

wcFTP

  • Registry Option for passive and non-passive FTP Data-Port (Detail)
  • Enhanced FTP wildcard search specification to better support the '?' character in search specification.
  • Fixed an explicit SSL connection problem with FTP client WS_FTP.
  • Fixed a state machine problem with the DATA port. This showed up when using extended QUOTE commands. It was not a problem for standard FTP client operations.
  • Added a FTPLOGON.WCX hook for FTP login operations.
    Now it is possible to perform customize user operations when a user logs in. The most obvious feature is to switch to a particular user directory, another could be to send a message to the sysop when the user logs in.
  • Added support for extended FTP commands, MLST and MLSD. Supportive FTP client required. The MLSx commands show extended information about the file.
    • MLST will show infomation for one file
    • MLSD will list the directory extended information.
  • Added support for MSDOS or UNIX style directory displays.
    The default style is unix which is the standard among FTP servers. The key difference is the MSDOS format offers a complete DATE/TIME format for the file.
    With the unix style, depending on the FTP server, the time of the file could be the YEAR or TIME depending on the age of the file.
  • Added support for "Unix-style 6 month range" for date/time display of directory listings of files.
  • Added support checking the data\badfiles.lst list file for uploads.
    If the file name or mask is found in the badfiles.lst file, the upload is not permitted with a 550 response code.
    Example:
       ftp> put command.com
       550 Specific file name not permitted.

wcSMTP

  • Added Enable Receiver Bin ON/OFF log entry in wcSMTP.
  • Now supports the Return-Path: header line for better identication of bounce addresses.
    This fixes a bounce mail problem where under special conditions, an extra unnecessary messages can be created.
  • Added some enhancements for SMTPFILTER.WCC operations to better support 3rd party ANTI -SPAM applications using the SMTPFILTER technology in Wildcat!.
  • Fixed EHLO/HELO command for non-extended SMTP servers when the option
    [X] Enable SSL Outbound SMTP
    is enabled. If the server did not support the EHLO command, wcSMTP was not trying the HELO command. You could just turn off the option, but this update fixes the problem. wcSMTP will try HELO if EHLO fails at the remote server.
  • The registry option EnableReceiverBin was required to enabled the SMTPFILTER.WCX operation. This option will be now be available as a Check Box in the wcConfig | MAIL SERVER | SMTP SERVER setup as:
    [X] Enable Receiver Bin (for SMTPFILTER operations)
    Note: If you had this registry option enabled, you need to now set it in wcConfig to enable the SMTP filter system.
  • SMTPFILTER.WCC Enhancements:
    wcSMTP will now look for the wcx SmtpFilterHookLoader.wcx before looking for SmtpFilter.wcx. (Detail)
  • Standard TSL AUTH (sasllogin.dll) is now automatically installed for SMTP AUTH operations. This reduces the need to unzip this file from wcSASL.ZIP.
  • New Auto-Forwarding Feature
  • Fixed the "Use SSL for Outgoing mail" option. It was not working. Now it is.

wcPOP3

  • New registry option to add the Received: when the user picks up his mail. This use to be TRUE by default. However, some mail clients do not sort multiple received mail well with this option.
    HKLM\Software\SSI\Wildcat\wcPOP3
    DWORD: EnableReceivedLine
    VALUE: 1 or 0

wcMail

  • Fixed the reloading of cached information when a restart signal is sent to wcMail.
  • Now supports Return-Path: header line for bounce messages.

wcNNTPServer

  • Changed "Authentication Required" response code from 502 to 480.
    This will have no effect on news readers. However, 480 is the proper response to used when authentication is required.

wcReports

  • Fixed the automated script command line mode where an extra "Cancel Update?" window prompt was displayed.

© 2003 Hector Santos, http://www.santronics.com