- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Problem sending Excel attachment using MIME
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
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
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-09-2006 01:52 AM
тАО02-09-2006 01:52 AM
Problem sending Excel attachment using MIME
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2006 02:13 AM
тАО02-09-2006 02:13 AM
Re: Problem sending Excel attachment using MIME
welcome to the OpenVMS ITRC forum.
I've tested sending a .XLS file in a MIME mail to Outlook and it worked fine.
Using OpenVMS Alpha V8.2, MIME V1.9
$ MIME
MIME> NEW x.x
...
MIME> ADD/BIN file.XLS
MIME> SAVE
$ MAIL x.x user/subj=XLS
The encoding is like this:
--OpenVMS/MIME.991954266.1139497633
Content-Type: application/octet-stream
Content-Transfer-Encoding: Base64
Content-Disposition: attachment; filename=xxx.XLS
...
How did you get the .XLS file to your OpenVMS system ? Binary mode would be required for FTP.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2006 02:30 AM
тАО02-09-2006 02:30 AM
Re: Problem sending Excel attachment using MIME
I did the following:
MIME> new x.x
MIME> add/bin sys$data1:[_test]book1.xls
MIME> save
How can I check which version of mime I am running? We are on OpenVMS 7.3-2
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2006 02:44 AM
тАО02-09-2006 02:44 AM
Re: Problem sending Excel attachment using MIME
MIME Version: V1.8
The lack of a "MIME /VERSION" is just one
more of its shortcomings.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2006 02:44 AM
тАО02-09-2006 02:44 AM
Re: Problem sending Excel attachment using MIME
MIME> SHOW VERSION
MIME Version: V1.9
Save your .XLS file back to your Pathworks file server disk from the PC and have a look with DIR/FULL, DUMP etc. to try to spot differences.
Or mail the MIME mail to your VMS system (instead of to your Windows system), extract the .XLS on the VMS system and do a DIFFERENCES.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2006 04:51 AM
тАО02-09-2006 04:51 AM
Re: Problem sending Excel attachment using MIME
Now my next hurdle is to find out how in DCL to convert a Stream formatted file to the Fixed length 512 format. Is there a simple command for that?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2006 06:20 AM
тАО02-09-2006 06:20 AM
Re: Problem sending Excel attachment using MIME
$ set file/attr=(rfm:fix,lrl:512) sys$data1:[_test]book1.xls
Try it... if that's not the answer then a
$ DIRE/FULL
of the file before and after the copy operation will likely offer clues as to how to "convert" the file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2006 06:40 AM
тАО02-09-2006 06:40 AM
Re: Problem sending Excel attachment using MIME
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2006 07:28 AM
тАО02-09-2006 07:28 AM
Re: Problem sending Excel attachment using MIME
$ set file/attr=(rfm:fix,rat:none,lrl:512) copy_file.xls
Thanks for all the help.