1
I discovered that xmail does not allow attachments of the new MS Office filetypes: docx, etc.
The modification appears to be a simple one. I modified the include file called mimetype.php.
Look for this statement:
"doc" => "application/msword",
Add these statements:
"docx" => "application/mswordx",
"ppt" => "application/mspowerpoint",
"pptx" => "application/mspowerpointx",
"xls" => "application/msexcel",
"xlsx" => "application/msexcelx",
I hope this helps.