Re: Send SMS from z/OS

2011-09-04 Thread Timothy Sipples
If you want/need to bypass the e-mail to SMS path, instead using something more direct -- and can arrange a more direct connection with your wireless carrier -- then you could send a text message using SMPP (Short Message Peer to Peer protocol). If you search on SMPP there are several places where

Re: Speculation: Random thoughts on "web based" report access

2011-09-04 Thread Brian Westerman
Hi John, A very similar function to this is part of our newer releases of SyzSPOOL/z. We have made part of the SyzSpool log (where everything is indexed) file available to the web interface, depending on your settings on the web side of things, and what the mainframe side has set, you can see

Speculation: Random thoughts on "web based" report access

2011-09-04 Thread John McKown
Taking reports from the SPOOL and putting them in some sort of archive is now rather well established. I remember host based-only systems such as SAR, RMDS, InfoPAC (now ViewDirect?) and others. And they still exist and are in use. They seem to fall into two groups. The first consists of actual re

Re: Send SMS from z/OS

2011-09-04 Thread Shmuel Metz (Seymour J.)
In , on 09/04/2011 at 08:25 AM, Mike Schwab said: >PRIORITY: URGENT It's non-standard, so there's no guaranty that his provider will recognize it. -- Shmuel (Seymour J.) Metz, SysProg and JOAT ISO position; see We don't care. We don

Re: Send SMS from z/OS

2011-09-04 Thread Shmuel Metz (Seymour J.)
In <4e6371b5.6080...@isis-papyrus.com>, on 09/04/2011 at 02:40 PM, Miklos Szigetvari said: >How can I set the priority in an SMTP message ? Ask your provider; RFC 5322 doesn't define a header field for priority. -- Shmuel (Seymour J.) Metz, SysProg and JOAT ISO position; see

Re: Send SMS from z/OS

2011-09-04 Thread Miklos Szigetvari
Hi Thank you very much , at last with X-PRIORITY: 1 worked (got the SMS) On 9/4/2011 3:25 PM, Mike Schwab wrote: http://docs.bvstools.com/home/mailtool/releasenotes Try adding this line: PRIORITY: URGENT On Sun, Sep 4, 2011 at 7:40 AM, Miklos Szigetvari wrote: Hi Would like to send SMS

Re: Send SMS from z/OS

2011-09-04 Thread Miklos Szigetvari
Hi Thank you, till now no luck, Don't get from SMTP Something like this: //OUTPUTOUTPUT DEST=JES2P390.SMTP //ISDICLEM EXEC PGM=IEBGENER //SYSIN DD DUMMY //SYSPRINT DD SYSOUT=* //SYSUT2DD SYSOUT=A,OUTPUT=*.OUTPUT //SYSUT1DD * helo jes2p390 mail from: rcpt to:<436502130...@

Re: CA-1 TMSXITJ

2011-09-04 Thread Peter Relson
... > L R3,ASXBFTCB > > Unfortunately, under z/OS it produces the address of a random TCB. We > tried changing the code to obtain the TCB address directly from PSATOLD > but that doesn't seem to be working either. > This does not produce, and never has produced, "the address of a ran

Re: Send SMS from z/OS

2011-09-04 Thread Mike Schwab
http://docs.bvstools.com/home/mailtool/releasenotes Try adding this line: PRIORITY: URGENT On Sun, Sep 4, 2011 at 7:40 AM, Miklos Szigetvari wrote: > Hi > > Would like to send SMS from z/OS in case of an alert situation. > My mobile provider forwards Email's to mobile if the priority of the Email

Send SMS from z/OS

2011-09-04 Thread Miklos Szigetvari
Hi Would like to send SMS from z/OS in case of an alert situation. My mobile provider forwards Email's to mobile if the priority of the Email is highest . (other providers has other rules? ) How can I set the priority in an SMTP message ? ---