| +-----------------------------------------------------------------------+ $Id: viewsource.inc 8 2005-09-28 22:28:05Z roundcube $ */ // similar code as in program/steps/mail/get.inc if ($_GET['_uid']) { header('Content-Type: text/plain'); print rcmail_message_source($_GET['_uid']); } else { raise_error(array('code' => 500, 'type' => 'php', 'message' => 'Message UID '.$_GET['_uid'].' not found'), TRUE, TRUE); } exit; ?>