How to retain email attachment format from FreeBSD to Win 10.

The format of email attachments sent from FreeBSD to Win 10 is largely unreadable. Is there a configuration process to maintain the English format from one to the other?
If so, which operating system is that to be done in & what is the methodology?

Thanks
 
I think it is not problem with FreeBSD and Windows 10 but specific email clients. Try different email client for FBSD. What is attached - file, text?
 
The format of email attachments sent from FBSD to Win 10 is largely unreadable.
Typically MIME.

Is there a configuration process to maintain the English format from one to the other?
Language has very little to do with the format of the email. The SMTP protocol uses ASCII. There are several ways you could send an email in a different character set, but all of them rely on some translation to ASCII in order for it to be sent with SMTP. Encoding the text (and/or attachments) using base64 is the simplest way of doing that.
 
Summarized: it is a question of compliance of old and recognized standards by email clients. Nothing to do with
the OS except of its support of decent mail clients, and both, windows and FreeBSD do it.
 
I remember having that kind of problem in the past, but it was in the opposite direction - from winXP to Solaris. Nowadays, a decently recent version of sendmail will do a much better job of preserving the attached files, and not try to mangle text encodings.
 
Send a simple test email and post here the raw text of message. Maybe "text" is some type of document like .ODT?
 
As far as I remember there has been a program under cygwin which transferred an Outlook mailbox to the maildir or the mbox format. Depending on you issues this might be of some help. Unfortunately I do not remember its name.
 
Very old mail servers (like from 2000 - 2005) might still mangle the outgoing emails. That's because text encodings and network packet formation were not properly buttoned up back then. With recent versions of just about all the software in the stack, mangling of emails and attachments is much less of an issue.
 
Back
Top