예제 #1
0
파일: rcube_imap.php 프로젝트: ehmedov/www
 /**
  * Sends the whole message source to stdout
  *
  * @param int  Message UID
  */
 function print_raw_body($uid)
 {
     iil_C_HandlePartBody($this->conn, $this->mailbox, $uid, true, NULL, NULL, true);
 }
예제 #2
0
 /**
  * Sends the whole message source to stdout
  *
  * @param int  Message UID
  */
 function print_raw_body($uid)
 {
     if (!($msg_id = $this->_uid2id($uid))) {
         return FALSE;
     }
     iil_C_HandlePartBody($this->conn, $this->mailbox, $msg_id, NULL, 2);
 }