> > I didn't think that would be the problem because the attachment won't > even appear in the list. You click Browse to locate the file, then > click add - but the file doesn't get added to the list at the bottom > of the page. Any other type of file seems to work fine. > > Also - we can send pages documents as attachments through the same > mail server using a normal imap client just fine. > > Any other ideas? Or am I wrong and could this still some how be the > mail server? Could you show list of enabled PHP extensions? All extension and zend_extension lines in your php.ini and PHP ./configure line or output of phpinfo() (http://www.squirrelmail.org/wiki/TestPHPSettings). Could you check size of these files? Some PHP versions silently fail on very large attachments. If you have PHP4.2 or newer, modify src/compose.php. Find lines with ---- /* get out of here if no file was attached at all */ if (! is_uploaded_file($_FILES['attachfile']['tmp_name']) ) { return true; } ---- and change them to ---- /* get out of here if no file was attached at all */ if (! is_uploaded_file($_FILES['attachfile']['tmp_name']) ) { error_log($_FILES['attachfile']['error'],3,'/tmp/somelog'); return true; } ---- Then show numbers written in '/tmp/somelog' -- Tomas -- View this message in context: http://www.nabble.com/Attaching-documents-made-with-Apples-iWork-Pages-program-tf4511187.html#a12872887 Sent from the squirrelmail-users mailing list archive at Nabble.com. ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ -- squirrelmail-users mailing list Posting Guidelines: http://www.squirrelmail.org/wiki/MailingListPostingGuidelines List Address: squirrelmail-users@xxxxxxxxxxxxxxxxxxxxx List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users