User Tools

Site Tools


Sidebar

en:objects:mail:pop3:pop3_connect

pop3_connect

pop3_connect($server, $port, $login, $password , $ssl_option = 1 , $cert_type="s, c, h, e", $timeout = 3000); - connects to the POP3 server. If there was another POP3 connection before, it will be disconnected from it.

The function accepts parameters as input:

  • $server – SMTP server
  • $port – SMTP server port
  • $login – login
  • $password – password
  • $ssl_option – how to use SSL

    • 0 : without using SSL or TLS.
    • 1 : to determine Automatically.
    • 2 : the connection must use SSL or TLS.
    • 3 : use TLS + STARTTLS. the
    • 4 : to Use TLS..
  • $cert_type – SSL authentication certificate types ("s, c, h, e")
  • $timeout – timeout
After testing, the function returns the result of its work to the script :
  • true – successfully connected
  • false – failed to connect

    PHP example:

    <?php $xhe_host = "127.0.0.1:707";
    //+ cef
    //connect the object to control the emulator, if not already connected
    if(!isset($path))
      $path = "../../../Templates/xweb_human_emulator.php";
    require($path);
     
    //Start
    echo "<hr> <font color = blue> webpage->".basename(__FILE__)."</font> <hr>";
     
    //through a proxy
    $mail->set_proxy("socks://127.0.0.1: 9150");
     
    //1
    echo "1.Let's connect to Yandex POP3:";
    echo $mail->pop3_connect("pop.rambler.ru", 995, "loginovskiyy-guriyy", "rieqoo")." n";
     
    //2
    echo "2.Get the number of letters:";
    echo $mail->get_message_count_via_pop3()." n";
     
    //no proxy
    $mail->set_proxy("");
     
    //3
    echo "3.Let's connect to POP3 mail.ru:";
    echo $mail->pop3_connect("pop.mail.ru", 995, "arna.pervak", "msnijwdx")." n";
     
    //4
    echo "4.Get the number of letters:";
    echo $mail->get_message_count_via_pop3()." n";
     
    //five
    echo "5.Disconnect from POP3:";
    echo $mail->pop3_disconnect()." n";
     
     
    //end
    echo "<hr> <br>";
     
    //Quit
    $app->quit();
    ?>

    Python example:

    # Additional paths
    import sys
    sys.path.insert(0, '../../../Templates PY/')
     
    xhe_host = "127.0.0.1:7057"
    from xweb_human_emulator import *
     
    # Start
    echo("<hr> <font color = blue> mail.xxxxxxxxx </font> <hr>")
     
    # via proxy
    mail.set_proxy("socks://127.0.0.1: 9150")
     
    # 1
    echo("1.Let's connect to Yandex POP3:")
    echo(mail.pop3_connect("pop.rambler.ru", 995, "loginovskiyy-guriyy", "rieqoo"), "
    ")
     
    # 2
    echo("2.Get the number of emails:")
    echo(mail.get_message_count_via_pop3(), "
    ")
     
    # no proxy
    mail.set_proxy("")
     
    # 3
    echo("3.Let's connect to POP3 mail.ru:")
    echo(mail.pop3_connect("pop.mail.ru", 995, "arna.pervak", "msnijwdx"), "
    ")
     
    # 4
    echo("4.Get the number of emails:")
    echo(mail.get_message_count_via_pop3(), "
    ")
     
    # five
    echo("5.Disconnect from POP3:")
    echo(mail.pop3_disconnect(), "
    ")
     
     
    # end
    echo("<hr> <br>")
     
    # Quit
    app.quit()

    C# example:

    #region using
     
    using System;
    using System.Diagnostics;
    using System.Collections.Generic;
    using System.Linq;
    using System.IO;
    using System.Text;
    using System.Threading;
     
    using XHE;
    using XHE.XHE_DOM;
    using XHE.XHE_System;
    using XHE.XHE_Window;
    using XHE.XHE_Web;
     
    #endregion
     
     class Program: XHEScript
     {
    static void Main(string [] args)
    {
    //init XHE
    server = "127.0.0.1:7057";
    InitXHE();
     
               //Start
                echo("<hr> <font color = blue> mail->pop3_connect </font> <hr>");
     
               //through a proxy
                mail.set_proxy("socks://127.0.0.1: 9150");
     
               //1
                echo("1.Let's connect to Yandex POP3:");
                echo(mail.pop3_connect("pop.rambler.ru", 995, "loginovskiyy-guriyy", "rieqoo") + " n");
     
               //2
                echo("2.Get the number of letters:");
                echo(mail.get_message_count_via_pop3() + " n");
     
               //no proxy
                mail.set_proxy("");
     
               //3
                echo("3.Let's connect to POP3 mail.ru:");
                echo(mail.pop3_connect("pop.mail.ru", 995, "arna.pervak", "msnijwdx") + " n");
     
               //4
                echo("4.Get the number of letters:");
                echo(mail.get_message_count_via_pop3() + " n");
     
               //five
                echo("5.Disconnect from POP3:");
                echo(mail.pop3_disconnect() + " n");
     
     
               //end
                echo("<hr> <br>");
     
               //Quit
                app.quit();
          }
    }

    Java Script example:

    xhe_host = "127.0.0.1:7057";
    echo = require("../../../Templates JS/xweb_human_emulator.js");
     
    //Start
    echo("<hr> <font color = blue> mail->pop3_connect </font> <hr>");
     
    //through a proxy
    mail.set_proxy("socks://127.0.0.1: 9150");
     
    //1
    echo("1.Let's connect to Yandex POP3:");
    echo(mail.pop3_connect("pop.rambler.ru", 995, "loginovskiyy-guriyy", "rieqoo") + " n");
     
    //2
    echo("2.Get the number of letters:");
    echo(mail.get_message_count_via_pop3() + " n");
     
    //no proxy
    mail.set_proxy("");
     
    //3
    echo("3.Let's connect to POP3 mail.ru:");
    echo(mail.pop3_connect("pop.mail.ru", 995, "arna.pervak", "msnijwdx") + " n");
     
    //4
    echo("4.Get the number of letters:");
    echo(mail.get_message_count_via_pop3() + " n");
     
    //five
    echo("5.Disconnect from POP3:");
    echo(mail.pop3_disconnect() + " n");
     
     
    //end
    echo("<hr> <br>");
     
    //Quit
    app.quit();
  • en/objects/mail/pop3/pop3_connect.txt · Last modified: 2026/08/05 22:46 (external edit)