- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Sending email from OpenVMS
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2006 08:58 AM
тАО11-29-2006 08:58 AM
Looking for very basic outbound email capability with minimal expense. I'm in contact with Process about PMDF, but on a limited budget for software.
Short of having navtive VMS code, I'm looking at creating a pc based solution with our Windows-to-OpenVMS middleware to drive the emailing.
Thanks,
John Farmer
john dot farmer at genworth dot com
OpenVMS 7.2-1
DEC Alpha DS20e
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2006 09:23 AM
тАО11-29-2006 09:23 AM
Re: Sending email from OpenVMS
What TCP/IP stack are you using? (MultiNet, TCPware or TCP/IP Services).
From DCL:
$ mail [filespec] [recipient-name]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2006 09:24 AM
тАО11-29-2006 09:24 AM
Re: Sending email from OpenVMS
How about just good old VMS Mail and TCPIP SMTP? Works great for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2006 09:35 AM
тАО11-29-2006 09:35 AM
Re: Sending email from OpenVMS
You may also have to look at your gateway definitions and MX records in your networking configuration, however something like this should work
$ mail/subject="whatever" message.txt "smtp%name@domain"
Phil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2006 09:36 AM
тАО11-29-2006 09:36 AM
Re: Sending email from OpenVMS
%MAIL-E-ERRACTRNS, error activating transport SMTP
%LIB-E-ACTIMAGE, error activating image CLIAXP$DKA0:[SYS0.SYSCOMMON.][SYSLIB]SMTP_MAILSHR.EXE;
-RMS-E-FNF, file not found
So I assume the SMTP_MailShr.exe process is not installed. Is that part of VMS, the TCP/IP stack or other?
Thanks,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2006 09:48 AM
тАО11-29-2006 09:48 AM
Re: Sending email from OpenVMS
_TNA120:tcpip show config smtp
SMTP Configuration
Options
Initial interval: 0 00:30:00.00 Address_max: 16 NOEIGHT_BIT
Retry interval: 0 01:00:00.00 Hop_count_max: 16 RELAY
Maximum interval: 3 00:00:00.00 TOP_HEADERS
Timeout Initial Mail Receipt Data Terminate
Send: 5 5 5 3 10
Receive: 5
Alternate gateway: xxxxxxxxx.xxxxxxxxxx.xxx.xx
General gateway: not defined
Substitute domain: not defined
Zone: not defined
Postmaster: TCPIP$SMTP
Log file: SYS$SPECIFIC:[TCPIP$SMTP]TCPIP$SMTP_LOGFILE.LOG
Generic queue Queues Participating nodes
TCPIP$SMTP_C22_00 1 C22
_TNA120:
If it is not enabled, you will have to run
Directory SYS$COMMON:[SYSMGR]
TCPIP$SMTP_STARTUP.COM;6
Phil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2006 09:55 AM
тАО11-29-2006 09:55 AM
Re: Sending email from OpenVMS
$ show network
Something like that should show up:
Product: DECNET Node: HNAC Address(es): 1.3
Product: TCP/IP Node: HNAC.northernhealth.ca Address(es): 10.171.2.7
$
Assuming you are using TCP/IP services for OpenVMS, you can say
$ TCPIP
TCPIP> SHOW MAIL ...
to monitor your mail service. The SMTP protocol is not enabled by default. To enable it, use:
$ @sys$manager:TCPIP$CONFIG
Then select option 2 (client components) from the menu. Then select option 6 (SMTP) from the next menu to enable and start it.
Good luck!
Ziggy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2006 06:41 PM
тАО11-29-2006 06:41 PM
Re: Sending email from OpenVMS
You only have to modify logical names (or define them) and modify alarm reporting (check for the word WMS).
If you want to mail old style reports (esp. with width larger than 132) the PDF option is handy but requires the freeware program txt2pdf in a modified form (see other thread where I posted the changes).
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2006 07:14 PM
тАО11-29-2006 07:14 PM
Solutionsimple procedure to enable SMTP:
- identifiy an SMTP server that will accept mails from your VMS box (e.g. the Exchange server)
- log into a privileged account
- $ TCPIP SET CONFIG SMTP -
/GATEWAY=ALTERNATE=smtp_server -
/ZONE=hostname_of_your_vms_box
That way, all mail that's not directed at your VMS box is sent to the SMTP server.
- $ @SYS$MANAGER:TCPIP$CONFIG.COM
In the Client Components (item 2), choose SMTP, then choose "Enable and start service"
You should now be ready to send mails via SMTP, e.g.
$ MAIL/SUBJECT="Test" NL: "a@mail.address"
In older VMS versions, you'd have to prefix the recipient address with "SMTP%" (without the quotes).
HTH,
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2006 07:48 PM
тАО11-29-2006 07:48 PM
Re: Sending email from OpenVMS
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1075329
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1001087
Rob.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-30-2006 01:45 AM
тАО11-30-2006 01:45 AM
Re: Sending email from OpenVMS
I am a developer, and haven't done any VMS software installations. I'm sure I can get more than enough instruction from this forum, just don't want to be a pest, as I would require MUCH guidance. So, we need to start with getting the SMTP stuff installed, then the config questions will start.
Is there a good HP reference/doc on the SMTP subject, that you can point me to?
Also, being behind on vms versions doesn't help matters. We have planned to get more current in first qtr 2007.
Thanks,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-30-2006 01:48 AM
тАО11-30-2006 01:48 AM
Re: Sending email from OpenVMS
Run SYS$MANAGER:TCPIP$CONFIG, and select option 2 - Client Components, then option 6 - SMTP.
Choose to enable and start the service.
Rob.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-30-2006 01:53 AM
тАО11-30-2006 01:53 AM
Re: Sending email from OpenVMS
> TCPIP$SMTP_MAILSHR.EXE image is not
> installed. Is that something where HP
> Support (via our support contract) would
> help, or are we on our own to get it
> "installed"?
Well, yes, but ...
> $ @sys$manager:TCPIP$CONFIG
Still worth a try.
> Is there a good HP reference/doc on the
> SMTP subject, that you can point me to?
Start with TCPIP SHOW VERSION, then deviate
accordingly:
http://h71000.www7.hp.com/doc/index.html
http://h71000.www7.hp.com/doc/tcpip56.html
http://h71000.www7.hp.com/doc/tcpip53.html (?)
http://h71000.www7.hp.com/doc/73final/6526/6526pro.HTML
Or wander around a little in that
neighborhood.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-30-2006 02:57 AM
тАО11-30-2006 02:57 AM
Re: Sending email from OpenVMS
>>>
SHOW MAIL in TCPIP indicates the TCPIP$SMTP_MAILSHR.EXE image is not installed. Is that something where HP Support (via our support contract) would help, or are we on our own to get it "installed"?
<<<
I think you mis-interpret the meaning of "installed" here. It does not have to do with software installation. Look for yourself: I'm sure the file SYS$SHARE:TCPIP$SMTP_MAILSHR.EXE is already there.
>>>
So, we need to start with getting the SMTP stuff installed, then the config questions will start.
<<<
Okay, let's assume SMTP already is installed (it is - trust me ;-).
So, start configuring by follow my config procedure posted above.
HTH,
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-30-2006 09:24 AM
тАО11-30-2006 09:24 AM
Re: Sending email from OpenVMS
Yes, you were correct. The SMTP service was DISABLED. I ENABLED/STARTED the service. I am trying to locate the IP address of the corporate SMTP server. The value I had for SET CONFIG was not correct, so the mail messages are bouncing back... But we've made progress!!! Will update you all when I get and try that info.
Thanks,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-30-2006 11:30 AM
тАО11-30-2006 11:30 AM
Re: Sending email from OpenVMS
nslookup -type=mx genworth.com
but it's really a question for your corporate
network folks, who may have some other ideas.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-30-2006 12:01 PM
тАО11-30-2006 12:01 PM
Re: Sending email from OpenVMS
You'll need to get on the SMTP server and allow your VMS server have the ability to relaying messages through, especially the Exchange server.
Jorge
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-01-2006 01:47 AM
тАО12-01-2006 01:47 AM
Re: Sending email from OpenVMS
Was able to locate an SMTP server on the network, set smtp config, as noted above, and successfully sent and email from VMS to my exchange email, and to my cell phone (text message). There may be a few other tweaks as I learn more, but I reached my goal. Thanks for all the wonderful help on the subject.
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-01-2006 04:52 AM
тАО12-01-2006 04:52 AM
Re: Sending email from OpenVMS
I didn't see your "Enclosed Procedure" for email attachments. Is that in another thread?
Thanks,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-12-2006 04:42 AM
тАО12-12-2006 04:42 AM
Re: Sending email from OpenVMS
Thanks,
John