Changeset 1608
- Timestamp:
- Aug 8, 2011, 1:29:58 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ReleaseTool.cmd
r1605 r1608 1162 1162 cfg.SMTP.0 = 0 1163 1163 cfg.FTP.keys = 'DESCRIPTION COMMAND HOST USERID PASSWORD DIRECTORY FILE' 1164 cfg.NNTP.keys = 'DESCRIPTION COMMAND HOST USERID PASSWORD TO FROM SIGNATURE NEWSGROUPS'1164 cfg.NNTP.keys = 'DESCRIPTION COMMAND HOST USERID PASSWORD TO FROM SIGNATURE' 1165 1165 cfg.SMTP.keys = 'DESCRIPTION COMMAND HOST USERID PASSWORD PORT TO FROM SIGNATURE UTCOFFSET' 1166 1166 … … 1866 1866 when option = 'T' then 1867 1867 do 1868 b4_timestamp = SysGetFileDateTime( tempfile)1868 b4_timestamp = SysGetFileDateTime(body_file) 1869 1869 say 'The current body of the newsgroup message will now be loaded into an editor.' 1870 1870 say 'Make desired changes, if any, and save the file.' … … 1873 1873 call SysGetKey 1874 1874 say 1875 call ExecCmd cmd.editor tempfile1876 if b4_timestamp \= SysGetFileDateTime( tempfile) then1875 call ExecCmd cmd.editor body_file 1876 if b4_timestamp \= SysGetFileDateTime(body_file) then 1877 1877 _text = '<Modified>' 1878 1878 end … … 1893 1893 say 1894 1894 say 'Host :' cfg.NNTP.s.host 1895 say 'To :' cfg.NNTP.s. newsgroups1895 say 'To :' cfg.NNTP.s.to 1896 1896 say 'From :' cfg.NNTP.s.from 1897 1897 say 'UserID :' cfg.NNTP.s.userid … … 1920 1920 do 1921 1921 say 'Enter a comma=separated list of newagroup(s) (followed by the ENTER key).' 1922 cfg.NNTP.s. newsgroups= linein()1922 cfg.NNTP.s.to = linein() 1923 1923 end 1924 1924 when option = 'F' then … … 1979 1979 _command = part1 || cfg.NNTP.s.from || part2 1980 1980 end 1981 do while pos('## NEWSGROUPS##', _command) > 01982 parse var _command part1 '## NEWSGROUPS##' part21983 _command = part1 || cfg.NNTP.s. newsgroups|| part21981 do while pos('##TO##', _command) > 0 1982 parse var _command part1 '##TO##' part2 1983 _command = part1 || cfg.NNTP.s.to || part2 1984 1984 end 1985 1985 rcx = ExecCmd(_command) … … 2095 2095 end 2096 2096 rc = SockSend(socket, 'From:' cfg.NNTP.s.from || cfg.crlf || , 2097 'Newsgroups:' cfg.NNTP.s. newsgroups|| cfg.crlf || ,2097 'Newsgroups:' cfg.NNTP.s.to || cfg.crlf || , 2098 2098 'Subject:' cfg.NNTP.subject || cfg.crlf || , 2099 2099 'User-Agent:' cfg.user_agent || cfg.crlf || , … … 2368 2368 say ' Requesting that Netlabs move the uploaded file.' 2369 2369 say ' Email notifications of the release (to lists and/or individuals).' 2370 say ' Newsgroup notifications of the release (to v raious newsgroups).'2370 say ' Newsgroup notifications of the release (to various newsgroups).' 2371 2371 say 2372 2372 say "Enter the first letter of the activity to configure or..."
Note:
See TracChangeset
for help on using the changeset viewer.