Operating System - HP-UX
1752777 Members
6304 Online
108789 Solutions
New Discussion юеВ

Re: Sending attachments with elm - corrupted format

 
Tirza Kiesler
Occasional Advisor

Sending attachments with elm - corrupted format

We send financial reports in ELM attachement. The source is an ASCII file, where all the amounts are displayed in columns, and the amounts are right justified. When we open the attachment in e-mail, the spaces between the columns have been shrinked, and the columns look like snakes. Any clue?
5 REPLIES 5
Mark Grant
Honored Contributor

Re: Sending attachments with elm - corrupted format

My first question would be if the columns are lined up with tabs or spaces and you are using a mail reader that defaults to html? If you look at an ascii file as html it will look as you describe.

Never preceed any demonstration with anything more predictive than "watch this"
Tirza Kiesler
Occasional Advisor

Re: Sending attachments with elm - corrupted format

The columns are lined up with spaces, not tabs. The mail reader doesn't default to html.
A. Clay Stephenson
Acclaimed Contributor

Re: Sending attachments with elm - corrupted format

It's possible that tabs have been expanded to spaces but this may simply be an artifact of your methods of viewing the file on different platforms. The only way to know for sure is to use a tool like od or hexedit that will allow you to see the ASCII characters as well as the octal/hex values. You then compare the original to the received file.


You might also change the attachment instructions to:
[include myfile1 application/octet-stream base64]

so that myfile1 will be sent and converted on the receiving end exactly as it was.
If it ain't broke, I can fix that.
Steven E. Protter
Exalted Contributor

Re: Sending attachments with elm - corrupted format

I ran into this problem with elm as well.

It was actually the Symantec firewall that was mishandling the attadhments. It required a software patch.

If you use the DS directive in sendmail to relay mail off an smtp server, you need to have that checked.

I'm attaching a production sendmail script that will assist in testing.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Tirza Kiesler
Occasional Advisor

Re: Sending attachments with elm - corrupted format

Where can I see the attachment (sorry, it's my first time in the forum...)

Can you also give more details about the patch?