home *** CD-ROM | disk | FTP | other *** search
/ The Elite Hackers Toolkit / TheEliteHackersToolkitVolume1_1998.rar / HACKERS.BIN / appcraks / DSI_CM11.ZIP / ERRCODES.TXT < prev    next >
Text File  |  1990-01-01  |  5KB  |  176 lines

  1. THIS FILE CONTAINS LIST OF ERROR CODES FOR CGIMailer v1.11.
  2.  
  3. 0    - Reserved
  4.  
  5. 1    - CONTENT_LENGTH variable is not passed.
  6.     When HTTP server executes an CGI program it is supposed to
  7.     pass CONTENT_LENGTH environment variable to program.
  8.     This error may occur due to server error.
  9.     On this error CGIMailer always responses with internal error
  10.     message.
  11.  
  12. 2    - Error reading STDIN.
  13.     This error is generated if CGIMailer can't read number of
  14.     bytes specified in CONTENT_LENGTH variable.
  15.     On this error CGIMailer always responses with internal error
  16.     message.
  17.  
  18. 3    - Not enough memory.
  19.     This error occurs if CGIMailer fails to allocate memory
  20.     required to operate properly.
  21.  
  22. 4    - Name of configuration file is not passed.
  23.     CGIMailer expects name of configuration file to be passed as
  24.     command line parameter or in SYS.CONFIGFILE variable.
  25.     If this is not case it generates error with this code.
  26.     If this error occurs check calling HTML code to see if the
  27.     name of configuration file is correctly passed, also be sure
  28.     to use POST method for calling CGIMailer.
  29.     On this error CGIMailer always responses with internal error
  30.     message.
  31.  
  32. 5    - Syntax error in configuration file.
  33.     This error is generated when CGIMailer finds unexpected line
  34.     in configuration file.
  35.     Also check if all variable names in configuration file are
  36.     written correctly.
  37.  
  38.  
  39. 6    - Reserved
  40.  
  41. 7    - Error reading configuration file.
  42.  
  43. 8    - Error reading response template.
  44.     This error is generated when response template is successfully
  45.     opened but CGIMailer can't read complete file.
  46.  
  47. 9    - Error reading error template.
  48.     This error is generated when error template is successfully
  49.     opened but CGIMailer can't read complete file.
  50.     On this error CGIMailer always responses with internal error
  51.     message.
  52.  
  53. 10    - Error reading message template.
  54.     This error is generated when message template is successfully
  55.     opened but CGIMailer can't read complete file.
  56.  
  57. 11    - Internal error
  58.  
  59. 12    - Error opening response template.
  60.     This error is generated when CGIMailer fails to open response
  61.     template.
  62.     If this error occurs check if TEMPLATE variable points to an
  63.     existing file, also check access permissions for that file.
  64.     All variables pointing to files are expected to contain path
  65.     relative to cgimail.exe or an absolute path.
  66.  
  67. 13    - Error opening message template.
  68.     This error is generated when CGIMailer fails to open input
  69.     template.
  70.     If this error occurs check if MSGTEMPLATE variable points
  71.     to an existing file, also check access permissions for
  72.     that file.
  73.     All variables pointing to files are expected to contain path
  74.     relative to cgimail.exe or an absolute path.
  75.  
  76. 14    - Error opening error template.
  77.     This error is generated when CGIMailer fails to open error
  78.     template.
  79.     If this error occurs check if ERRTEMPLATE variable points to
  80.     an existing file, also check access permissions for that file.
  81.     All variables pointing to files are expected to contain path
  82.     relative to cgimail.exe or an absolute path.
  83.  
  84. 15    - Error opening configuration file.
  85.     This error is generated when CGIMailer fails to open
  86.     configuration file.
  87.     If this error occurs check if name of configuration file passed to
  88.     CGIMaier points to an existing file.
  89.     All variables pointing to files are expected to contain path
  90.     relative to cgimail.exe or an absolute path.
  91.     On this error CGIMailer always responses with internal error
  92.     message.
  93.  
  94. 16    - Reserved
  95.  
  96. 17    - Reserved
  97.  
  98. 18    - Reserved
  99.  
  100. 19    - Failed to sent mail.
  101.     This error is generated when CGIMailer can't send mail for an
  102.     unknown reason.
  103.  
  104. 20    - Reserved
  105.  
  106. 21    - Reserved
  107.  
  108. 22    - Sender not acceptable.
  109.     SMTP does not accepts address stated in FROM variable as valid.
  110.  
  111. 23    - Recipient not acceptable.
  112.     SMTP server refuses one(or more) address(es) listed in TO, CC or BCC.
  113.  
  114. 24    - Required variable is not set.
  115.     This error will be generated if CGIMailer finds required
  116.     variable with value which is not set.
  117.  
  118. 25    - Reserved
  119.  
  120. 26    - Reserved
  121.  
  122. 27    - Reserved
  123.  
  124. 28    - Reserved
  125.  
  126. 29    - TEMPLATE variable is not set.
  127.     CGIMailer generates this error when TEMPLATE variable in
  128.     configuration file can not be found.
  129.  
  130. 30    - Reserved
  131.  
  132. 31    - TO variable is not set.
  133.     CGIMailer generates tihs error when TO variable in
  134.     configuration file can not be found.
  135.  
  136. 32    - Reserved
  137.  
  138. 33    - Reserved
  139.  
  140. 34    - Reserved
  141.  
  142. 35    - Reserved
  143.  
  144. 36    - Connection timed out.
  145.     There was no response from server whithin TIMEOUT seconds.
  146.     See TIMEOUT variable in configuration file.
  147.  
  148. 37    - Connection reset by SMTP server.
  149.  
  150. 38    - Invalid TIMEOUT value.
  151.  
  152. 39    - Failed to initialise Windows socket subsystem.
  153.  
  154. 40    - Network is down.
  155.  
  156. 41    - Host is unreachable.
  157.     This means that CGIMailer cant't reach SMTP server specified
  158.     in GATEWAY variable in configuration file.
  159.  
  160. 42    - Connection is refused.
  161.     SMTP server specified in GATEWAY variable in configuration
  162.     file refuses conections on specified port (PORT variable).
  163.  
  164. 43    - Network is unreachable.
  165.  
  166. 44    - SMTP server can not be found.
  167.     CGIMailer can not find SMTP server's IP address.
  168.  
  169. 45    - SMTP connection failed.
  170.     CGIMailer generates this error when is connected to
  171.     server but SMTP conversation failes.
  172.  
  173. 46    - Unknown network error.
  174.     An network error occured while sending mail.
  175.  
  176.