git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9394
7612ce4b-ef26-0410-bec9-
ea0150e637f0
* Copyright (c) 2003-2005 The SquirrelMail Project Team
* Licensed under the GNU GPL. For full terms see the file COPYING.
*
- * This contains functions needed to handle mime messages.
+ * This file should contain class needed to handle Language properties in
+ * mime messages. I suspect that it is RFC2231
*
* @version $Id$
* @package squirrelmail
+ * @since 1.3.2
*/
/**
- * Undocumented class
+ * Class that can be used to handle language properties in MIME headers.
+ *
* @package squirrelmail
+ * @since 1.3.0
*/
class Language {
+ /**
+ * Class constructor
+ * @param mixed $name
+ */
function Language($name) {
- $this->name = $name;
- $this->properties = array();
+ /** @var mixed */
+ $this->name = $name;
+ /**
+ * Language properties
+ * @var array
+ */
+ $this->properties = array();
}
}
* Copyright (c) 2003-2005 The SquirrelMail Project Team
* Licensed under the GNU GPL. For full terms see the file COPYING.
*
- * This contains functions needed to handle mime messages.
+ * This file contains class needed to handle SMIME mime messages.
*
+ * @link http://www.ietf.org/html.charters/smime-charter.html
* @version $Id$
* @package squirrelmail
+ * @since 1.3.2
*/
/**
- * Incomplete class, undocumented.
+ * Unimplemented class.
* @package squirrelmail
+ * @todo implement smime parsing
*/
class SMimeMessage {