diff options
author | thomascube <thomas@roundcube.net> | 2007-08-07 21:02:12 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-08-07 21:02:12 +0000 |
commit | 6d969b4d9020560d3491d19a5b0487e325e9bce4 (patch) | |
tree | 030bc9d63bf4dc40b8bbf1cefd00e5ad6b460439 /program/include/rcube_smtp.inc | |
parent | 93be5b7606ed7a85323732b074ce380ac06875b7 (diff) |
Documentation, code style and cleanup
Diffstat (limited to 'program/include/rcube_smtp.inc')
-rw-r--r-- | program/include/rcube_smtp.inc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/program/include/rcube_smtp.inc b/program/include/rcube_smtp.inc index 2ddb5cf17..7b839873e 100644 --- a/program/include/rcube_smtp.inc +++ b/program/include/rcube_smtp.inc @@ -5,7 +5,7 @@ | program/include/rcube_smtp.inc | | | | This file is part of the RoundCube Webmail client | - | Copyright (C) 2005, RoundCube Dev. - Switzerland | + | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland | | Licensed under the GNU GPL | | | | PURPOSE: | @@ -19,6 +19,11 @@ */ +/** + * SMTP delivery functions + * + * @package Mail + */ // include required PEAR classes require_once('Net/SMTP.php'); @@ -47,7 +52,6 @@ $SMTP_CONN = null; * @param string The full text of the message body, including any Mime parts, etc. * * @return bool Returns TRUE on success, or FALSE on error - * @access public */ function smtp_mail($from, $recipients, &$headers, &$body, &$response) { @@ -342,6 +346,9 @@ function smtp_parse_rfc822($recipients) } +/** + * @access private + */ function smtp_explode_quoted_str($delimiter, $string) { $quotes=explode("\"", $string); |