1 INFO-VAX	Sat, 03 May 2003	Volume 2003 : Issue 244       Contents: Re: Anyone here from Dublin ?  Re: Anyone here from Dublin ?  Re: Anyone here from Dublin ?  Re: Anyone here from Dublin ? ' Re: creating licenses for my own demos? + DCL coding (was: Re: DCL routine required.) / Re: DCL coding (was: Re: DCL routine required.) / Re: DCL coding (was: Re: DCL routine required.) / Re: DCL coding (was: Re: DCL routine required.) / Re: DCL coding (was: Re: DCL routine required.) / Re: DCL coding (was: Re: DCL routine required.) / Re: DCL coding (was: Re: DCL routine required.) / Re: DCL coding (was: Re: DCL routine required.)  Re: DCL routine required.  Re: DCL routine required. A Re: Delivery problems with Butterworth Heinemann (Digital Press)?  Re: Infoserver replacement Re: Migrate email to VMS server - Pinout of power connector on DECserver 90TL ? # Second SCSI adapter fro PSW/AU - UK ' Re: Second SCSI adapter fro PSW/AU - UK ! Re: TCP/IP Cluster Alias question  Re: Video cards for VMS   F ----------------------------------------------------------------------  $ Date: Sat, 3 May 2003 15:53:34 +0200+ From: "Hans Vlems" <hvlems.nieuw@zonnet.nl> & Subject: Re: Anyone here from Dublin ?5 Message-ID: <b90hl1$e5tvs$1@ID-143435.news.dfncis.de>   = > Hans, these were not your ordinary Irish citizens.  Ireland A > has a large "travelling people" community (mostly Romany IIRC). > > That's what you saw, and it most certainly is not typical of> > the way most Irish people live.  I'd venture to say that the< > standard of living (excluding the "travellers") in Ireland) > is probably higher than here in the UK.  > ! > > The countryside is beautiful,  > 4 > Yep, fully agreed.  One of my favourite countries. >  > > the beer is all right. > = > Alright? ALRIGHT?  Don't let anyone hear you say that, else 0 > that's you excluded.  Don't you like Guinness? > I > > If you do need the sun a lot then the place is not for you though....  > D > They say in Ireland, you get all kinds of weather ... *many times, > and every day*!  >  > Roy Omond  > Blue Bubble Ltd. >  Roy,  L the people I saw on the sidewalk were not Roma. They were Irish and not ableG to get a decent house. But that is about 10 years ago; the situation is  likely to be better. > = > Alright? ALRIGHT?  Don't let anyone hear you say that, else 0 > that's you excluded.  Don't you like Guinness? > K err, somehow I get the impression that you are not upset about my spelling, K right? Serious (we're talking beer) I like Guinness, but tend to compare it 3 with what they brew in Belgium. So alright it is...  Hans   ------------------------------  % Date: Sat, 03 May 2003 08:58:31 -0500  From: brandon@dalsemi.com & Subject: Re: Anyone here from Dublin ?1 Message-ID: <03050308583156@dscis6-0.dalsemi.com>    > > the beer is all right. > = > Alright? ALRIGHT?  Don't let anyone hear you say that, else 0 > that's you excluded.  Don't you like Guinness?  J Have not been following this thread - by accident I opened and saw "beer".  - Did someone say BEER???  My favorite subject!   P I enjoy Guinness and Boddingtons.  I have been to Germany and enjoyed the beer! G American beer - I like - however there was something about German beer.    Not to change the subject...   John Brandon VMS Systems Administrator  Dallas Semiconductor john.brandon@dalsemi.com 972.371.4172 wk  972.371.4003 fx    ------------------------------  $ Date: Sat, 3 May 2003 16:01:02 +0200+ From: "Hans Vlems" <hvlems.nieuw@zonnet.nl> & Subject: Re: Anyone here from Dublin ?5 Message-ID: <b90i31$e08qm$1@ID-143435.news.dfncis.de>       > --   > "Sore wa himitsu desu."  > To reply by email, remove  > the small snack from address. # > http://www.esatclear.ie/~rwallace   " or is it "Sore himitsu wa desu." ?   ------------------------------  # Date: Sat, 03 May 2003 16:57:42 GMT 3 From: wallacethinmintr@eircom.net (Russell Wallace) & Subject: Re: Anyone here from Dublin ?0 Message-ID: <3eb3f4fa.674969010@news.eircom.net>  / On Sat, 3 May 2003 16:01:02 +0200, "Hans Vlems"  <hvlems.nieuw@zonnet.nl> wrote:   # >or is it "Sore himitsu wa desu." ?    Nope, check Google ^.^   --   "Sore wa himitsu desu."  To reply by email, remove  the small snack from address. ! http://www.esatclear.ie/~rwallace    ------------------------------  % Date: Sat, 03 May 2003 03:19:09 -0400 * From: JF Mezei <jfmezei.spamnot@istop.com>0 Subject: Re: creating licenses for my own demos?) Message-ID: <3EB36D61.5521B745@istop.com>    Jan-Erik Sderholm wrote:  > Digital ?  > Who are they ?  I Whoever owns VMS this week. Lost track, so I still use Digital. Call me a N rebel if you wish. HP will have to take ownership and show it clearly before I! consider VMS to be an HP product.    ------------------------------  % Date: Sat, 03 May 2003 14:43:21 +0200 ) From: Bart Zorn <B.Zorn@xs4all.nospam.nl> 4 Subject: DCL coding (was: Re: DCL routine required.)6 Message-ID: <3eb3b969$0$49098$e4fe514c@news.xs4all.nl>   brandon@dalsemi.com wrote: >>HiG >>Any suggestions how I can program into my command procedure a routine H >>that tests for the first working day of the month (I.E: Mon, Tue, Wed,H >>Thu, Fri only). The routine would still have to work if the first fellH >>on a Saturday or Sunday with the first working day therefore being the >>second or third of the month.  >>Thanks in advance. >>Johno  >  > + > This should get you where you need to be>  >  > $!< > $! check that today is the first working day of the month,A > $! the symbol flag_first_of_the_month will be set TRUE or FALSE  > $!' > $ flag_first_of_the_month :== "FALSE"  > $! > $!G > $! check the day - if the day is greater than the third of the month, , > $! then the first of the month has passed. > $! > $ if (p1 .nes. "") > $ then > $   date = p1  > $ else" > $   date = f$cvtime(,"ABSOLUTE")	 > $ endif  > $!/ > $ day = f$integer(f$cvtime("''date'",,"DAY"))  > $ if (day .gt. 3) then exit  > $!; > $ weekday = f$extract(0,1,f$cvtime("''date'",,"WEEKDAY"))  > $!3 > $ if ((day .eq. 1 .and. weekday .nes. "S") .or. - 3 >       (day .eq. 2 .and. weekday .eqs. "M") .or. - 4 >       (day .eq. 3 .and. weekday .eqs. "M")) then -& >   flag_first_of_the_month :== "TRUE" > $! > $! >  > John Brandon > VMS Systems Administrator  > Dallas Semiconductor > john.brandon@dalsemi.com > 972.371.4172 wk  > 972.371.4003 fx     G I have no comments to your code as such, but there are two things that   intrigue me:   Why do you use:   # 	flag_first_of_the_month :== "TRUE"    where   ! 	flag_first_of_the_month :== TRUE    or  " 	flag_first_of_the_month == "TRUE"   Would be enough?   And why do you use:   8 	weekday = f$extract(0,1,f$cvtime("''date'",,"WEEKDAY"))   where 3 	weekday = f$extract(0,1,f$cvtime(date,,"WEEKDAY"))    would be enough?  D I know, the result is the same. But I see this kind of coding quite  often and I wonder why that is.   I Sometimes you see DCL code which creates an other DCL command file. When  L a single quote is needed in the resulting file, the following is being used:  * $ WRITE OUTFILE "$ A = ''''B''''_WHATEVER"  I I believe that code like this makes life difficult for anyone who has to  H maintain such code, including the original author. The line should read:  $ $ WRITE OUTFILE "$ A = 'B'_WHATEVER"    	 Bart Zorn    ------------------------------  % Date: Sat, 03 May 2003 08:01:15 -0500  From: brandon@dalsemi.com 8 Subject: Re: DCL coding (was: Re: DCL routine required.)1 Message-ID: <03050308011561@dscis6-0.dalsemi.com>   I > I have no comments to your code as such, but there are two things that   > intrigue me: >  > Why do you use:  > % > 	flag_first_of_the_month :== "TRUE"  >  > where  > # > 	flag_first_of_the_month :== TRUE  >  > or > $ > 	flag_first_of_the_month == "TRUE" >  > Would be enough?  7 Peter or Paul.  I have always used the :== no idea why.    > And why do you use:  > : > 	weekday = f$extract(0,1,f$cvtime("''date'",,"WEEKDAY")) >  > where 5 > 	weekday = f$extract(0,1,f$cvtime(date,,"WEEKDAY"))  >  > would be enough?  J Sure thing.  The you could use date instead of "''date'" - maybe because IC someimtes do "''date'+1-0" which would not be supported by date+1-0   F > I know, the result is the same. But I see this kind of coding quite ! > often and I wonder why that is.  > K > Sometimes you see DCL code which creates an other DCL command file. When  N > a single quote is needed in the resulting file, the following is being used: > , > $ WRITE OUTFILE "$ A = ''''B''''_WHATEVER" > K > I believe that code like this makes life difficult for anyone who has to  J > maintain such code, including the original author. The line should read: > & > $ WRITE OUTFILE "$ A = 'B'_WHATEVER"  ? You try writing code at 06:00 in the AM with a hang-over!!! ;-P        John Brandon VMS Systems Administrator  Dallas Semiconductor john.brandon@dalsemi.com 972.371.4172 wk  972.371.4003 fx    ------------------------------  % Date: Sat, 03 May 2003 08:55:59 -0500  From: brandon@dalsemi.com 8 Subject: Re: DCL coding (was: Re: DCL routine required.)1 Message-ID: <03050308555920@dscis6-0.dalsemi.com>   K > Sometimes you see DCL code which creates an other DCL command file. When  N > a single quote is needed in the resulting file, the following is being used: > , > $ WRITE OUTFILE "$ A = ''''B''''_WHATEVER" > K > I believe that code like this makes life difficult for anyone who has to  J > maintain such code, including the original author. The line should read: > & > $ WRITE OUTFILE "$ A = 'B'_WHATEVER"   You mean& $ WRITE OUTFILE "$ A = ''B'_WHATEVER"  OK, it is a typo.    I would prefer this & $ WRITE OUTFILE "$ A = ",B,"_WHATEVER"  O This may not be an issue with this line, however if the symbol B has quotations ; in its value then the ''B' translation will cause problems.      John Brandon VMS Systems Administrator  Dallas Semiconductor john.brandon@dalsemi.com 972.371.4172 wk  972.371.4003 fx    ------------------------------   Date: 3 May 03 15:43:08 +0200 ) From: p_sture@elias.decus.ch (Paul Sture) 8 Subject: Re: DCL coding (was: Re: DCL routine required.)) Message-ID: <CR13ec+zd15Y@elias.decus.ch>   M In article <03050308011561@dscis6-0.dalsemi.com>, brandon@dalsemi.com writes: J >> I have no comments to your code as such, but there are two things that  >> intrigue me:  >>   >> Why do you use: >>  & >> 	flag_first_of_the_month :== "TRUE" >>   >> where >>  $ >> 	flag_first_of_the_month :== TRUE >>   >> or  >>  % >> 	flag_first_of_the_month == "TRUE"  >>   >> Would be enough?  > 9 > Peter or Paul.  I have always used the :== no idea why.  >   F IIRC I moved from that sytnax style with the advent of the DCL changes in V4.0.   >> And why do you use: >>  ; >> 	weekday = f$extract(0,1,f$cvtime("''date'",,"WEEKDAY"))  >>   >> where6 >> 	weekday = f$extract(0,1,f$cvtime(date,,"WEEKDAY")) >>   >> would be enough?  > L > Sure thing.  The you could use date instead of "''date'" - maybe because IE > someimtes do "''date'+1-0" which would not be supported by date+1-0  > G >> I know, the result is the same. But I see this kind of coding quite  " >> often and I wonder why that is. >>    ? As I implied with my comment above, there was a change in DCL's D interpretation of symbols at V4.0 (or maybe earlier). Old habits and older code still survive.   L >> Sometimes you see DCL code which creates an other DCL command file. When O >> a single quote is needed in the resulting file, the following is being used:  >>  - >> $ WRITE OUTFILE "$ A = ''''B''''_WHATEVER"  >>  L >> I believe that code like this makes life difficult for anyone who has to K >> maintain such code, including the original author. The line should read:  >>  ' >> $ WRITE OUTFILE "$ A = 'B'_WHATEVER"   F I'll agree that all those quotes make it difficult to maintain. I tendG to go one step further and put both single and double quotes into their  own symbols:   e.g.   	$ q="'" 	$ write sys$output q,"B",q  	'B' 	$  E In contrast, there are times when I will deliberately enclose symbols C inside "", for example to ensure the resulting string is treated as  one parameter.   > A > You try writing code at 06:00 in the AM with a hang-over!!! ;-P  >    :-)    --  
 Paul Sture   ------------------------------  % Date: Sat, 03 May 2003 16:07:13 +0200 ) From: Bart Zorn <B.Zorn@xs4all.nospam.nl> 8 Subject: Re: DCL coding (was: Re: DCL routine required.)6 Message-ID: <3eb3cd13$0$49098$e4fe514c@news.xs4all.nl>   brandon@dalsemi.com wrote:K >>Sometimes you see DCL code which creates an other DCL command file. When  N >>a single quote is needed in the resulting file, the following is being used: >>, >>$ WRITE OUTFILE "$ A = ''''B''''_WHATEVER" >>K >>I believe that code like this makes life difficult for anyone who has to  J >>maintain such code, including the original author. The line should read: >>& >>$ WRITE OUTFILE "$ A = 'B'_WHATEVER" >  > 
 > You mean( > $ WRITE OUTFILE "$ A = ''B'_WHATEVER"  > OK, it is a typo.   G No it is NOT a typo! I have reread what I wrote and it IS what I mean!  D Note that the firts line (with a lot of single quotes) has the same H effect as the second line. The intention is to get single quotes in the F output line, not to have the symbol B substituted before the WRITE is 	 executed.   F The example that you give is syntactically correct, but has a totally  different effect!    >  > I would prefer this ( > $ WRITE OUTFILE "$ A = ",B,"_WHATEVER" > Q > This may not be an issue with this line, however if the symbol B has quotations = > in its value then the ''B' translation will cause problems.  >  >  > John Brandon > VMS Systems Administrator  > Dallas Semiconductor > john.brandon@dalsemi.com > 972.371.4172 wk  > 972.371.4003 fx   	 Bart Zorn    ------------------------------  % Date: Sat, 03 May 2003 10:40:38 -0500 1 From: "David J. Dachtera" <djesys.nospam@fsi.net> 8 Subject: Re: DCL coding (was: Re: DCL routine required.)' Message-ID: <3EB3E2F6.70B38055@fsi.net>    Paul Sture wrote:  > O > In article <03050308011561@dscis6-0.dalsemi.com>, brandon@dalsemi.com writes: K > >> I have no comments to your code as such, but there are two things that  > >> intrigue me:  > >> > >> Why do you use: > >>, > >>      flag_first_of_the_month :== "TRUE" > >>
 > >> where > >>* > >>      flag_first_of_the_month :== TRUE > >> > >> or  > >>+ > >>      flag_first_of_the_month == "TRUE"  > >> > >> Would be enough?  > > ; > > Peter or Paul.  I have always used the :== no idea why.  > >   6 ":=" indicates the result will be a string assignment.   DJAS01::DDACHTERA$ a = 0 DJAS01::DDACHTERA$ sh sym a -   A = 0   Hex = 00000000  Octal = 00000000000  DJAS01::DDACHTERA$ a := 0  DJAS01::DDACHTERA$ sh sym a 	   A = "0"   H The double equal indicates the result will be assigned to process globalG symbol table rather than the symbol table local to the current "depth".    >  >         $ q="'" $ >         $ write sys$output q,"B",q
 >         'B'  >         $    DJAS01::DDACHTERA$ a = "'B'" DJAS01::DDACHTERA$ sh sym a    A = "'B'"  DJAS01::DDACHTERA$ say a   'B'    Six of one, ... :-)    --   David J. Dachtera  dba DJE Systems  http://www.djesys.com/  ( Unofficial Affordable OpenVMS Home Page: http://www.djesys.com/vms/soho/    ------------------------------  % Date: Sat, 03 May 2003 12:18:40 -0500  From: brandon@dalsemi.com 8 Subject: Re: DCL coding (was: Re: DCL routine required.)1 Message-ID: <03050312184098@dscis6-0.dalsemi.com>   I > No it is NOT a typo! I have reread what I wrote and it IS what I mean!  F > Note that the firts line (with a lot of single quotes) has the same    oh-oh - firts?  J > effect as the second line. The intention is to get single quotes in the H > output line, not to have the symbol B substituted before the WRITE is  > executed.   C Fine!  What I really want to know is, what the hell is "firts"?  ;)    John Brandon VMS Systems Administrator  Dallas Semiconductor john.brandon@dalsemi.com 972.371.4172 wk  972.371.4003 fx    ------------------------------  % Date: Sat, 03 May 2003 19:41:33 +0200 4 From: Didier Morandi <Didier.Morandi.nospam@Free.fr>8 Subject: Re: DCL coding (was: Re: DCL routine required.)& Message-ID: <3EB3FF4D.4040102@Free.fr>   Bart Zorn wrote: ../.. / > The intention is to get single quotes in the  H > output line, not to have the symbol B substituted before the WRITE is  > executed.    I do:   
 $ quote = "'" = $ write ch "some text ",quote,"var",quote," some other text".    D.   ------------------------------  $ Date: Sat, 3 May 2003 11:57:38 +0200+ From: "Hans Vlems" <hvlems.nieuw@zonnet.nl> " Subject: Re: DCL routine required.5 Message-ID: <b903ql$duavc$1@ID-143435.news.dfncis.de>   ; "Johno" <JohnEllicottington@lycos.co.uk> schreef in bericht 7 news:10822590.0305021947.70bd8f5d@posting.google.com...  > HiG > Any suggestions how I can program into my command procedure a routine H > that tests for the first working day of the month (I.E: Mon, Tue, Wed,H > Thu, Fri only). The routine would still have to work if the first fellH > on a Saturday or Sunday with the first working day therefore being the > second or third of the month.  > Thanks in advance. > Johno  Have look at f$cvtime: $ a=f$cvtime(,,"WEEKDAY") 
 $ sh sym a   A = "Saturday" $ 2 The first argument in f$cvtime is the actual date.# $ a=f$cvtime("tomorrow",,"WEEKDAY") 
 $ sh sym a   A = "Sunday" $ ( Of course you can put in an actual date:& $ a=f$cvtime("29-feb-2256",,"WEEKDAY")
 $ sh sym a   A = "Friday" $  Hans   ------------------------------  % Date: Sat, 03 May 2003 06:10:55 -0500  From: brandon@dalsemi.com " Subject: Re: DCL routine required.1 Message-ID: <03050306105504@dscis6-0.dalsemi.com>    > HiG > Any suggestions how I can program into my command procedure a routine H > that tests for the first working day of the month (I.E: Mon, Tue, Wed,H > Thu, Fri only). The routine would still have to work if the first fellH > on a Saturday or Sunday with the first working day therefore being the > second or third of the month.  > Thanks in advance. > Johno   ) This should get you where you need to be>    $!: $! check that today is the first working day of the month,? $! the symbol flag_first_of_the_month will be set TRUE or FALSE  $!% $ flag_first_of_the_month :== "FALSE"  $! $!E $! check the day - if the day is greater than the third of the month, * $! then the first of the month has passed. $! $ if (p1 .nes. "") $ then
 $   date = p1  $ else  $   date = f$cvtime(,"ABSOLUTE") $ endif  $!- $ day = f$integer(f$cvtime("''date'",,"DAY"))  $ if (day .gt. 3) then exit  $!9 $ weekday = f$extract(0,1,f$cvtime("''date'",,"WEEKDAY"))  $!1 $ if ((day .eq. 1 .and. weekday .nes. "S") .or. - 1       (day .eq. 2 .and. weekday .eqs. "M") .or. - 2       (day .eq. 3 .and. weekday .eqs. "M")) then -$   flag_first_of_the_month :== "TRUE" $! $!   John Brandon VMS Systems Administrator  Dallas Semiconductor john.brandon@dalsemi.com 972.371.4172 wk  972.371.4003 fx    ------------------------------   Date: 3 May 03 11:37:44 +0200 ) From: p_sture@elias.decus.ch (Paul Sture) J Subject: Re: Delivery problems with Butterworth Heinemann (Digital Press)?) Message-ID: <fFMpFDUDuWm3@elias.decus.ch>    In article <00A1F426.B8724F79@SSRL.SLAC.STANFORD.EDU>, winston@SSRL.SLAC.STANFORD.EDU ("Alan Winston - SSRL Admin Cmptg Mgr") writes: z > In article <5VNqKD5B0JIn@eisner.encompasserve.org>, clubley@remove_me.eisner.decus.org-Earth.UFP (Simon Clubley) writes:W >>In article <oPMEXKCsQEuv@elias.decus.ch>, p_sture@elias.decus.ch (Paul Sture) writes: F >>> Well I finally got around to ordering Alan Winston's "OpenVMS with3 >>> Apache, OSU & WASD" from Butterworth Heinemann.  >>> L >>> In spite of the claimed 7-10 day delivery time, I have waited since 19thH >>> March. An email last Friday asking them where it was appears to have8 >>> done something as today a package from them arrived. >>> F >>> My name and address and book details on the label, a book entitledH >>> "Natural Gas Hydrates" and invoice to somone in Milan on the inside. >>>  >>> Doh! >>>  >> >>:-)  >>N >>Look at it this way: at least someone else is now going to become aware of a" >>operating system called VMS. :-) >  > That's encouraging, anyway.  > A > I have forwarded Paul's note to my editor at Digital Press (er, M > Butterworth-Heinemann, er, Reed Elsevier) who has been able to resolve some H > of these problems in the past.  She's out of the office today, though. >   L And the invoice is from, er, Harcourt Education, "distributor for Heinemann,! Rigby, Butterworth Heinemann" :-)    Thanks for that.  J > I'd certainly like for anybody who's trying to get a copy of my book to  > be able to do so.  >    --  
 Paul Sture   ------------------------------  % Date: Sat, 03 May 2003 07:25:37 -0400 2 From: rdeininger@mindspring.com (Robert Deininger)# Subject: Re: Infoserver replacement L Message-ID: <rdeininger-0305030725370001@user-105n8iu.dialup.mindspring.com>  3 In article <OOBI0EUF$cX8@eisner.encompasserve.org>, C clubley@remove_me.eisner.decus.org-Earth.UFP (Simon Clubley) wrote:   C >In article <3EB25DE0.6190.14A76F57@localhost>, "Stanley F. Quayle"  <stan@stanq.com> writes: >>  D >> If HP would release the documentation on the Infoserver protocol I >> (LAD, LAST, etc.), I bet the open-source community would jump on it.    > N >About 3-4 years ago, when I got my first hobbyist machine, a VAX, I asked oneG >of the VMS engineers informally if there was any chance of having this K >information released, as writing a Infoserver protocol level emulation was H >precisely what I wanted to do. I was told that this information was not= >available and that there were no plans to make it available.   J Since there have been 2 or 3 reorganizaions since then, it might be a good idea to re-ask the question.   ------------------------------   Date: 3 May 03 11:57:02 +0200 ) From: p_sture@elias.decus.ch (Paul Sture) ( Subject: Re: Migrate email to VMS server) Message-ID: <65IoGqJ7j7as@elias.decus.ch>   ` In article <3EB2FF8C.188E6532@ost.cdrh.fda.gov>, Jonathan Boswell <jsb@ost.cdrh.fda.gov> writes: > Dave Greenwood wrote: M >> If you copy the unix mail file to your VMS server you can try the DCL/Teco R >> script posted by Skip Morris (morris@mv.mv.com) back in 1995.  I've never tried( >> it myself.  See (watch for url wrap): >>   >>  <URL: http://groups.google.com/groups?q=group:comp.os.vms+author:morris%40mv.mv.com&hl=en&lr=&ie=UTF-8&scoring=r&selm=DK8E95.Dt1%40mv.mv.com&rnum=9 >  > P > Interesting.  I think I'll save that somewhere for future reference.  At firstQ > blush, it appears that Skip is using TECO for the same reason as my TPU program R > MX2VMSMAIL: it massages headers into a format that VMS understands.  DCL is used4 > to do the actual message import with the commands: >  > $ open/append file 'tempcom' > $ write file "$ mail"  > $ write file "set file ",p1 1 > $ write file "copy/all ",p3," ",p2,"/noconfirm"  > $ write file "exit"  > $ close file > $ @'tempcom' > P > Having issued the MAIL COPY command by hand ad nauseum over the last couple ofO > days, I can assure you that it injects a spurious CR after the VMS header and D > therefore the email client won't understand it as a MIMEd message.  = Can you not write another DCL snippet to remove the extra CR?    --  
 Paul Sture   ------------------------------  % Date: Sat, 03 May 2003 16:39:39 +0200 9 From: Jan-Erik =?iso-8859-1?Q?S=F6derholm?= <aaa@aaa.com> 6 Subject: Pinout of power connector on DECserver 90TL ?' Message-ID: <3EB3D4AB.971383A2@aaa.com>    Hi. 8 I'v got a DECserver 90TL (DSRVE-M), but no power supply.8 The unit needs +5v and +12v, but I don't have the pinout* of the round power connector on the back . Anyone having this ?   Best Regards	 Jan-Erik.    ------------------------------  % Date: Sat, 03 May 2003 12:32:36 +0100 6 From: Chris Townley <news@townleyc.nospam.demon.co.uk>, Subject: Second SCSI adapter fro PSW/AU - UK8 Message-ID: <as97bvg67vgvhfd1703c4mo5klkm1hhu4h@4ax.com>  F I want to add a second  SCSI adapter to my home PSW 433 AU in order toE use a BA356 shelf. This should be fast, rather than ultra, as it is a  beige shelf.  5 Currently have "device type Qlogic ISP1020 SCSI port"   D Is this the best to get, and if so where can I get one at a sensible price in the UK?   TIA  --  
 Chris Townley ) chris at townleyc dot demon dot co dot uk    ------------------------------  % Date: Sat, 03 May 2003 18:01:40 +0200 6 From: =?ISO-8859-1?Q?Arne_Vajh=F8j?= <arne@vajhoej.dk>0 Subject: Re: Second SCSI adapter fro PSW/AU - UK' Message-ID: <3EB3E7E4.60103@vajhoej.dk>    Chris Townley wrote:H > I want to add a second  SCSI adapter to my home PSW 433 AU in order toG > use a BA356 shelf. This should be fast, rather than ultra, as it is a  > beige shelf. > 7 > Currently have "device type Qlogic ISP1020 SCSI port"  > F > Is this the best to get, and if so where can I get one at a sensible > price in the UK?   Try and look at:%    http://www.hpaq.net/raid_scsi.html    Arne   ------------------------------  % Date: Sat, 03 May 2003 11:27:47 +0200  From: Dirk Munk <munk@home.nl>* Subject: Re: TCP/IP Cluster Alias question2 Message-ID: <b902bp$6en$1@news1.tilbu1.nb.home.nl>   Christopher Francis wrote:G > I have a cluster running VMS 7.3-1 with TCP/IP services. Each machine H > has 2 network interface cards. The cluster sits on 2 IP subnets. I wasF > wondering if it is possible to set up TCP/IP to have a cluster alias4 > for each subnet that the computer was attached to. >  > For example:C > The subnets are 192.168.1.x and 192.168.2.x. On the 192.168.1.x I F > would like users to be able to connect to the cluster alias DSPSRV1,B > and on the other subnet I would like then to connect to DSPSRV2. >  > Thanks for your help.   O You don't state how you want to set up this cluster. If you use the loadbroker  R with a dynamic BIND server, it does not matter on which subnet(s) the systems are.   ------------------------------  % Date: Sat, 03 May 2003 11:42:25 +0200  From: Dirk Munk <munk@home.nl>  Subject: Re: Video cards for VMS2 Message-ID: <b90377$ck2$1@news1.tilbu1.nb.home.nl>   Dean Woodward wrote: > Aren't these decent cards?  . They sure are, but not supported in VMS ......   > @ > Compaq / Digital Equipment PowerStorm 4D40T PCI Graphics card:T > http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&category=11212&item=3021459967&rd=1  >  >  >  >    ------------------------------   End of INFO-VAX 2003.244 ************************