phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] CVS: felamimail/inc class.bofilter.inc.php,1.1,1.2 cl


From: Lars Kneschke <address@hidden>
Subject: [Phpgroupware-cvs] CVS: felamimail/inc class.bofilter.inc.php,1.1,1.2 class.phpmailer.inc.php.working,NONE,1.1 class.sieve.inc.php,1.1,1.2 class.smtp.php.working,NONE,1.1 class.uidisplay.inc.php,1.1,1.2 class.uifilter.inc.php,1.1,1.2 class.uipreferences.inc.php,NONE,1.1 class.uisieve.inc.php,1.1,1.2 hook_about.inc.php,1.4,1.5 hook_manual.inc.php,1.1,1.2 hook_settings.inc.php,1.1,1.2
Date: Sat, 23 Nov 2002 19:36:08 -0500

Update of /cvsroot/phpgroupware/felamimail/inc
In directory subversions:/tmp/cvs-serv28942/inc

Added Files:
        class.bofilter.inc.php class.phpmailer.inc.php.working 
        class.sieve.inc.php class.smtp.php.working 
        class.uidisplay.inc.php class.uifilter.inc.php 
        class.uipreferences.inc.php class.uisieve.inc.php 
        hook_about.inc.php hook_manual.inc.php hook_settings.inc.php 
Log Message:
adding some missing files




--- NEW FILE ---
<?php
////////////////////////////////////////////////////
// phpmailer - PHP email class
//
// Version 1.50, Created 11/08/2001
//
// Class for sending email using either
// sendmail, PHP mail(), or SMTP.  Methods are
// based upon the standard AspEmail(tm) classes.
//
// Author: Brent R. Matzelle <address@hidden>
//
// License: LGPL, see LICENSE
////////////////////////////////////////////////////

/**
 * phpmailer - PHP email transport class
 * @author Brent R. Matzelle
 */
[...1199 lines suppressed...]
     * @returns string
     */
    function AddMSMailHeaders() {
        $MSHeader = "";
        if($this->Priority == 1)
            $MSPriority = "High";
        elseif($this->Priority == 5)
            $MSPriority = "Low";
        else
            $MSPriority = "Medium";

        $MSHeader .= sprintf("X-MSMail-Priority: %s\r\n", $MSPriority);
        $MSHeader .= sprintf("Importance: %s\r\n", $MSPriority);

        return($MSHeader);
    }

}
// End of class
?>


--- NEW FILE ---
<?php
    /*
     * File: smtp.php
     *
     * Description: Define an SMTP class that can be used to connect
     *              and communicate with any SMTP server. It implements
     *              all the SMTP functions defined in RFC821 except TURN.
     *
     * Creator: Chris Ryan <address@hidden>
     * Created: 03/26/2001
     *
     * TODO:
     *     - Move all the duplicate code to a utility function
     *           Most of the functions have the first lines of
     *           code do the same processing. If this can be moved
     *           into a utility function then it would reduce the
     *           overall size of the code significantly.
     */

[...966 lines suppressed...]
                    echo "SMTP -> get_lines(): \$data was \"$data\"" .
                             $this->CRLF;
                    echo "SMTP -> get_lines(): \$str is \"$str\"" .
                             $this->CRLF;
                }
                $data .= $str;
                if($this->do_debug >= 4) {
                    echo "SMTP -> get_lines(): \$data is \"$data\"" . 
$this->CRLF;
                }
                # if the 4th character is a space then we are done reading
                # so just break the loop
                if(substr($str,3,1) == " ") { break; }
            }
            return $data;
        }

    }


 ?>



***** Error reading new file: [Errno 2] No such file or directory: 
'class.uipreferences.inc.php'








reply via email to

[Prev in Thread] Current Thread [Next in Thread]