ZP-828 Remove access keyword for extra include files. Released under the...

ZP-828 Remove access keyword for extra include files. Released under the Affero GNU General Public License (AGPL) version 3.
parent c14488a9
......@@ -146,7 +146,6 @@ function update_calendar_attendee($uid, $mailto, $status) {
*
* @param Mail_mimeDecode $message
* @return boolean
* @access private
*/
function has_calendar_object($message) {
if (is_calendar($message)) {
......@@ -172,7 +171,6 @@ function has_calendar_object($message) {
*
* @param Mail_mimeDecode $message
* @return boolean
* @access private
*/
function is_calendar($message) {
return isset($message->ctype_primary) && isset($message->ctype_secondary) && $message->ctype_primary == "text" && $message->ctype_secondary == "calendar";
......@@ -183,7 +181,6 @@ function is_calendar($message) {
* Converts a text/calendar part into SyncMeetingRequest
* This is called on received messages, it's not called for events generated from the mobile
*
* @access private
* @param $part MIME part
* @param $output SyncMail object
* @param $is_sent_folder boolean
......@@ -365,7 +362,6 @@ function parse_meeting_calendar($part, &$output, $is_sent_folder) {
/**
* Modify a text/calendar part to transform it in a reply
*
* @access private
* @param $part MIME part
* @param $response Response numeric value
* @param $condition_value string
......
......@@ -48,7 +48,6 @@
* @param Mail_mimePart $email reference to the object
* @param array $parts array of parts
*
* @access private
* @return void
*/
function add_extra_sub_parts(&$email, $parts) {
......@@ -85,7 +84,6 @@ function add_extra_sub_parts(&$email, $parts) {
* @param Mail_mimePart $email reference to the object
* @param object $part message part
*
* @access private
* @return void
*/
function add_sub_part(&$email, $part) {
......@@ -155,7 +153,6 @@ function add_sub_part(&$email, $part) {
* @param Mail_mimePart $email reference to the object
* @param object $part message part
*
* @access private
* @return void
*/
function change_charset_and_add_subparts(&$email, $part) {
......@@ -184,7 +181,6 @@ function change_charset_and_add_subparts(&$email, $part) {
*
* @param array $message array returned from Mail_mimeDecode->decode
*
* @access public
* @return string MIME message
*/
function build_mime_message($message) {
......@@ -300,7 +296,6 @@ function build_mime_message($message) {
*
* @param Mail_mimeDecode $message
* @return boolean
* @access public
*/
function is_smime($message) {
$res = false;
......@@ -322,7 +317,6 @@ function is_smime($message) {
*
* @param Mail_mimeDecode $message
* @return boolean
* @access public
*/
function is_encrypted($message) {
$res = false;
......@@ -341,7 +335,6 @@ function is_encrypted($message) {
*
* @param Mail_mimeDecode $message
* @return boolean
* @access public
*/
function is_multipart($message) {
return isset($message->ctype_primary) && $message->ctype_primary == "multipart";
......
......@@ -45,7 +45,6 @@
/**
* Returns the default value for "From"
*
* @access private
* @return string
*/
function getDefaultFromValue($username, $domain) {
......@@ -80,7 +79,6 @@ function getDefaultFromValue($username, $domain) {
/**
* Return the default value for "FullName"
*
* @access private
* @param string $username Username
* @return string
*/
......@@ -107,7 +105,6 @@ function getDefaultFullNameValue($username, $domain) {
/**
* Generate the "From"/"FullName" value stored in a LDAP server
*
* @access private
* @params string $username username value
* @params string $domain domain value
* @params string $identity pattern to fill with ldap values
......@@ -170,7 +167,6 @@ function getIdentityFromLdap($username, $domain, $identity, $encode = true) {
/**
* Generate the "From" value stored in a SQL Database
*
* @access private
* @params string $username username value
* @params string $domain domain value
* @return string
......@@ -214,7 +210,6 @@ function getIdentityFromSql($username, $domain, $identity, $encode = true) {
/**
* Generate the "From" value from the local posix passwd database
*
* @access private
* @params string $username username value
* @params string $domain domain value
* @return string
......@@ -262,7 +257,6 @@ function getIdentityFromPasswd($username, $domain, $identity, $encode = true) {
/**
* Encode the From value as Base64
*
* @access private
* @param string $from From value
* @return string
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment