Re: mixed case messages

2008-05-20 Thread Kris Buelens
Good point, but for QUERY commands PIPE's CP stage will re-issue the command (with a larger buffer) if the default buffer is too small. But, as a Q RDR is relatively costly, this repetition can indeed be avoided by specifying a buffer. To insert between both pipes: if n='NO' then files.0=0 els

Re: mixed case messages

2008-05-20 Thread Rob van der Heij
On Tue, May 20, 2008 at 3:17 PM, Richard Corak <[EMAIL PROTECTED]> wrote: > Since one might have as many as RDR files, > this EXEC could be inadequate to retrieve everything. > Consider a QUERY FILES first. Even though the output > from QUERY RDR isn't 100 bytes, I use the extra size > for s

Re: mixed case messages

2008-05-20 Thread Richard Corak
Since one might have as many as RDR files, this EXEC could be inadequate to retrieve everything. Consider a QUERY FILES first. Even though the output from QUERY RDR isn't 100 bytes, I use the extra size for self-defense. /* R E X X */ Address Command 'PIPE CP QUERY FILES *', '| S

Re: mixed case messages

2008-05-19 Thread Kris Buelens
receives. Of course DIAG() will also yield unmodified > results, but you can do so much more with PIPE :) > > -Mike > > -Original Message- > From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On > Behalf Of Jim Bohnsack > Sent: Monday, May 19, 2008 8:29

Re: mixed case messages

2008-05-19 Thread Bruce Hayden
Pipelines can certainly do that (as well as diag and EXECIO). This is very quick & dirty to get the spool file numbers of any file with lower case in its name. /* R E X X */ Address Command 'PIPE cp Q RDR * ALL', '| drop 1', '| xlate 54-71 a-z a', '| locate 54-71 "a"', '| spec w2 1',

Re: mixed case messages

2008-05-19 Thread Michael Coffin
will also yield unmodified results, but you can do so much more with PIPE :) -Mike -Original Message- From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of Jim Bohnsack Sent: Monday, May 19, 2008 8:29 AM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: mixed case messages

Re: mixed case messages

2008-05-19 Thread Jim Bohnsack
In a similiar vein, how can I get the lower case information which may be returned from querying the rdr. RDRLIST does it, at least it displays the lower case names in the User at Node columns. I believe that I could stop 99.9% of the spam that enters the system with an SMTP exit that would c

Re: mixed case messages

2008-05-19 Thread Shimon Lebowitz
Ray and Richard, Thanks to you both for jiggling my partial memory! :-) Shimon

Re: mixed case messages

2008-05-19 Thread Richard Troth
In my experience, you've got to *always* drive 'CP MSG' from the Diag() function or DiagRC() function in REXX, or some equivalent. Going through normal CMS command processing performs an up-case on the command so that CMS can remain case insensitive. On Mon, May 19, 2008 at 7:37 AM, Shimon Lebow

Re: mixed case messages

2008-05-19 Thread Ray Mansell
Shimon Lebowitz wrote: "CP MSG " variable_with_mixedcase_text What have I missed? Thanks! Shimon Try this: Address command "CP MSG " variable_with_mixedcase_text Ray

mixed case messages

2008-05-19 Thread Shimon Lebowitz
Hi, I was under the impression that a CP message/smsg could be mixed case, as long as it was sent directly from an EXEC or other program (and not from the command line which would uppercase all the console input). 1) Is this in fact true? (documented?) 2) IF it's true, what could be causing my m