POP3::pass( $pass = "" )


Description Description


Source Source

File: wp-includes/class-pop3.php

140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
function pass ($pass = "")     {
    // Sends the PASS command, returns # of msgs in mailbox,
    // returns false (undef) on Auth failure
 
    if(empty($pass)) {
        $this->ERROR = "POP3 pass: " . _("No password submitted");
        return false;
    } elseif(!isset($this->FP)) {
        $this->ERROR = "POP3 pass: " . _("connection not established");
        return false;
    } else {
        $reply = $this->send_cmd("PASS $pass");
        if(!$this->is_ok($reply)) {
            $this->ERROR = "POP3 pass: " . _("Authentication failed") . " [$reply]";
            $this->quit();
            return false;
        } else {
            //  Auth successful.
            $count = $this->last("count");
            $this->COUNT = $count;
            return $count;
        }
    }
}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.