From 8cba263bbcc182839695c068abf145195a07bffc Mon Sep 17 00:00:00 2001 From: uckelman Date: Sat, 20 Mar 2010 13:46:11 +0000 Subject: Completed tests for most EmailMessage methods. git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6619 67b53d14-2c14-4ace-a08f-0dab2b34000c --- src/EmailMessage.php | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 src/EmailMessage.php (limited to 'src/EmailMessage.php') diff --git a/src/EmailMessage.php b/src/EmailMessage.php new file mode 100644 index 0000000..d6ff762 --- /dev/null +++ b/src/EmailMessage.php @@ -0,0 +1,73 @@ +msg = EMailMessage::decode_raw_message($input); + } + + public function getSource() { +# FIXME: fill in! + return null; + } + + public function getPostId() { +# FIXME: get from message-id to post-id database + return null; + } + + public function getFrom() { + return EMailMessage::parse_addr($this->msg->headers['from']); + } + + public function getSubject() { + return $this->msg->headers['subject']; + } + + public function getMessageId() { + return $this->msg->headers['message-id']; + } + + public function getInReplyTo() { + return $this->msg->headers['in-reply-to']; + } + + public function getReferences() { + return $this->msg->headers['references']; + } + + public function getBody() { + return $this->msg->body; + } + + protected static function decode_raw_message($input) { + $params['include_bodies'] = true; + $params['decode_bodies'] = true; + $params['decode_headers'] = true; + $params['input'] = $input; + $params['crlf'] = "\r\n"; + + $msg = Mail_mimeDecode::decode($params); + + if (count($msg->headers) == 1 && array_key_exists(null, $msg->headers)) { + # An empty message has one null header. + trigger_error('No message', E_USER_ERROR); + } + + return $msg; + } + + protected static function parse_addr($s) { + $addr = Mail_RFC822::parseAddressList($s); + return strtolower($addr[0]->mailbox . '@' . $addr[0]->host); + } +} + +?> -- cgit v1.2.3