- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Mail/subject Need with an attachment
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
Forums
Discussions
Discussions
Discussions
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
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
02-13-2006 04:09 AM
02-13-2006 04:09 AM
EXAMPLE:
`mail /subject=" SUPER Access Report" SUPER.Rpt SMPT%"Joseph_Drozdz\@hth.com"`;
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 04:30 AM
02-13-2006 04:30 AM
Re: Mail/subject Need with an attachment
I do not recall a way to directly do this using standard HP-supplied components.
You can implement this with a C-Kermit script which connects to the local SMTP server directly (I know that it can be done because a client of mine had precisely this need a while ago, and it worked perfectly).
C-Kermit is available as a download from Columbia University (http://www.columbia.edu).
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 04:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 04:49 AM
02-13-2006 04:49 AM
Re: Mail/subject Need with an attachment
As Richard has kindly pointed out, there is the MIME tool.
What version of OpenVMS are you running?
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 09:07 AM
02-13-2006 09:07 AM
Re: Mail/subject Need with an attachment
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 07:27 PM
02-13-2006 07:27 PM
Re: Mail/subject Need with an attachment
$ Uuen :== $tcpip$uuencode
$ Uuen input_file output_file.uue
$ mail/subj="..." output_file.uue recipient
Outlook, for example, recognizes this as an empty mail with an attachment.
cu,
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 08:50 PM
02-13-2006 08:50 PM
Re: Mail/subject Need with an attachment
I've attached a procedure we use to email messages directly from VMS with multiple attachments. It even has a HTML message body for that all important SPAM look :)
Rob.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 09:18 PM
02-13-2006 09:18 PM
Re: Mail/subject Need with an attachment
http://wwwvms.mppmu.mpg.de/util/com/send_attach.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2006 01:47 AM
02-16-2006 01:47 AM
Re: Mail/subject Need with an attachment
UUE == "$SYS$SYSTEM:TCPIP$UUENCODE.EXE"
UUE call_rpt.xls Recall_rpt.UUE
MAIL/subject="Today's report"/SIGNATURE_FILE=QRT_Recall_rpt.UUE mms_orders_fc.txt SMPT%"Joseph_Drozdz@HTH.COM"
del call_rpt.UUE;*
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2006 01:51 AM
02-16-2006 01:51 AM
Re: Mail/subject Need with an attachment
Seriously though... Nice trick.
Thanks for reporting back.
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2006 01:54 AM
02-16-2006 01:54 AM
Re: Mail/subject Need with an attachment
Joseph, I'll put that nice idea into my toolbox.
cu,
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2006 03:15 AM
02-16-2006 03:15 AM
Re: Mail/subject Need with an attachment
since the mail does not have correct MIME headers, not all readers will recognize the result as attachments, most notably on VMS:
Yahmail just gets the uuencoded as text, doesn't interpret it as attachment.
VMS UUDECODE does not decode the /noheader extracted file: You have to edit and remove the SMTP headers before uudecode.
The VMS MIME utility does not recognize the uuencoded as an attachment.
Well, on VMS one can use MUNPACK, this works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2006 01:34 PM
02-16-2006 01:34 PM
Re: Mail/subject Need with an attachment
For safety, you need to verify that the format and the headers match the SMTP and MIME RFCs (These are available from http://www.ietf.org).
If you are not compliant with the appliable RFCs, then you will encounter problems with different mail readers. Remember, just as the old saw about "One swallow does not make a spring", the fact that a single mail reader processes the message correctly does not guarantee that the format is correct. Correctness is defined as conforming to the RFC.
- Bob Gezelter, http://www.rlgsc.com
Author, History and Evolution of Electronic Mail, Handbook of Information Security
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2006 06:44 PM
02-16-2006 06:44 PM
Re: Mail/subject Need with an attachment
>>>
since the mail does not have correct MIME headers, not all readers will recognize the result as attachments [...]
<<<
Technically speaking, this isn't a MIME mail at all (so there are neither MIME headers, nor MIME multipart bodies). It's just that some MUAs (most notably Outlook) show UUEncoded files embedded in a mail as an attachment.
Binary attachments contained in MIME mails are most often encoded using Base64, as this produces less overhead than UUE.
cu,
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2006 12:42 AM
02-17-2006 12:42 AM
Re: Mail/subject Need with an attachment
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2006 10:27 PM
02-17-2006 10:27 PM
Re: Mail/subject Need with an attachment
from your Forum Profile:
I have assigned points to 56 of 72 responses to my questions.
It really is only about one stream, dating back to 2004.
Maybe you can find some time to do some assigning?
http://forums1.itrc.hp.com/service/forums/helptips.do?#33
Mind, I do NOT say you necessarily need to give lots of points. It is fully up to _YOU_ to decide how many. If you consider an answer is not deserving any points, you can also assign 0 ( = zero ) points, and then that answer will no longer be counted as unassigned.
Consider, that every poster took at least the trouble of posting for you!
To easily find your streams with unassigned points, click your own name somewhere.
This will bring up your profile.
Near the bottom of that page, under the caption "My Question(s)" you will find "questions or topics with unassigned points " Clicking that will give all, and only, your questions that still have unassigned postings.
Thanks on behalf of your Forum colleagues.
PS. - nothing personal in this. I try to post it to everyone with this kind of assignment ratio in this forum. If you have received a posting like this before - please do not take offence - none is intended!
Proost.
Have one on me.
jpe