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

  1. GBMailer for Windows 95/NT
  2. January 1998 version 1.01
  3.  
  4. Author:
  5. Goran Boban
  6. boban@student.math.hr
  7.  
  8. Freeware.
  9. Permition to freely use and distribute GBMailer version 1.01 is granted.
  10.  
  11.  
  12.  
  13. NOTE:     GBMailer is version 1.01 of my program wich I named Quick Mail
  14.     not knowing that Quick Mail is a registered trademark of
  15.     CE Software Inc. so I changed this name to GBMailer.
  16.     Thus, I want to make an apology to:
  17.  
  18.         - CE Software Inc. for using their trademark for my
  19.         program.
  20.         
  21.         - All users who downloaded version 1.00 and may be
  22.         confused with this change of name.
  23.  
  24.  
  25.  
  26.     1. Description
  27.     --------------
  28.  
  29. GBMailer is command-line mailer wich will send an text file as mail.
  30. It is written to be executed from CGI-scripts, but it can be ussed for 
  31. any other purpose.
  32.  
  33. See history.txt for list of removed bugs in this rvision.
  34. See todo.txt for list of things I want to implement in future.
  35.  
  36.  
  37. USSAGE:
  38.  
  39. gbmail [-v] -file <filename> [-h <smtp.server.name>] [-p <port_number>]
  40.     [-from <address>] -to <address list...> [-cc <address list...>]
  41.     [-s <Subject>] [-t <timeout>]
  42.  
  43.  
  44. OPTIONS:
  45.  
  46.     -v    verbose output.
  47.  
  48.     -file    REQUIRED    Name of text file to send as message body.
  49.                 If this option is not set GBMailer will
  50.                 report an error.
  51.  
  52.     -h    Name of SMTP server to connect. If this option is not set
  53.         GBMailer will assume 'localhost'.
  54.  
  55.     -p    Port number for SMTP protocol. Port is set to 25 by default.
  56.  
  57.     -from    An optional e-mail ddress of sender. If not set GBMailer
  58.         will try to assume an e-mail address by combinating name of
  59.         current user and name of local machine.
  60.         You should set this option in most cases.
  61.  
  62.     -to    REQUIRED    E-mail addres (or addresses) of recipient(s).
  63.                 Put here all addresses which you don't want to
  64.                 be listed in Cc: field.
  65.                 At least one address must cast after -to switch.
  66.  
  67.     -cc    E-mail addresses of recipients which will be listed in Cc: field.
  68.  
  69.     -s    Subject of message.
  70.  
  71.     -t    Timeout for socket operations (in seconds). Set to 300 secs by
  72.         default.
  73.  
  74.  
  75. EXAMPLE:
  76.  
  77. gbmail -file message.txt -h smtp.server.com -from me@my.machine.com -to you@your.machine.com -s "Hello there"
  78.  
  79.  
  80.     2. Bugs
  81.     -------
  82.     Please send bug reports and sugestions to:
  83.  
  84.     gboban@cursor.net
  85.  
  86.  
  87.  
  88.