Changeset 1588 for trunk/ReleaseTool.cfg


Ignore:
Timestamp:
Jun 28, 2011, 1:49:33 AM (14 years ago)
Author:
John Small
Message:

1) Fix bug causing crash during NNTP send.
2) Changed version format to use x.yy.x format consistently
3) Added support for SMTP ports other than 25
4) Improved internal documentation for ReleaseTool.cfg

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ReleaseTool.cfg

    r1575 r1588  
    2020;     Section lines mark the start of a new set of data.  The section
    2121;     name (within the brackets) defines which type of data follows.
    22 ;     Initially ReleaseTool supports only two section names: FTP and NNTP.
     22;     ReleaseTool currently supports section names: FTP, NNTP and SMTP.
    2323
    2424;     FTP sections are used to define data for uploading one or more files
     
    2727;     NNTP sections are used to define data for uploading messages to one
    2828;     or more newsgroups on a single newsgroup server.
     29
     30;     SMTP sections are used to define data for sending email messages
     31;     through a single email server. SMTP sections can be set up to use
     32;     an external program, like PMMail/2 or REXXMAIL, by defining an
     33;     appropriate command. If no command is defined then email is sent
     34;     using Releasetool's internal REXX code for opeing a socket to an
     35;     SMTP server, loggin in and sending the message.
    2936
    3037;  4) Data lines. These lines provide the actual data to ReleaseTool.
     
    6673;                                         in the same directory as ReleaseTool.
    6774;     NEWSGROUPS           NNTP     1     A comma-separated list of newsgroups for this host.
     75;     PORT                 SMTP     5     Port number. Default: port 25
    6876
    6977;     Codes:
     
    7280;        3: Required, one or more per section
    7381;        4: Optional, one or more per section
     82;        5: Optional, one per section
    7483
    7584;     "Special" key-values:
     
    8796
    8897;     "From" notes:
    89 ;        -  For newsgroups you may want to use a disguied email address to avoid spam.
     98;        -  For newsgroups you may want to use a disguised email address to avoid spam.
    9099;        -  Accepted formats:
    91100;           "Full name" <user@domain.net>
     
    121130
    122131[NNTP]                  ; ReleaseTool user's news server/groups definition
    123 Newsgroups  = comp.os.os2.apps,comp.os.os2.utilities
    124 ;Newsgroups  = alt.test
     132;Newsgroups  = comp.os.os2.apps,comp.os.os2.utilities
     133Newsgroups  = alt.test
    125134Host        =
    126135Userid      =
     
    134143;Command     = call d:\utils\internet\rexxmail\rexxmail /NewMessageSend "%%TO%% ?subject=%%SUBJECT%% &body=%%MESSAGE_BODY_FILE%%" /Address=%%FROM%% /SMTPServer=%%SERVER%% /SMTPUSER=%%USERID%% /SMTPPASSWORD=%%PASSWORD%% /TimeZone=%%UTCOFFSET%%
    135144Host        = smtp.toast.net
     145Port        = 587
    136146Userid      = jsmall@toast.net
    137147From        = "John Small" <jsmall@os2world.net>
Note: See TracChangeset for help on using the changeset viewer.