Quantcast
Channel: Blog | Limilabs
Viewing all articles
Browse latest Browse all 120

Aruba.it (@aruba.it, @technet.it) settings

$
0
0

For @custom-domain.ext mailbox format go here:
Aruba.it custom domains IMAP, POP3, SMTP settings

POP3

Server: pop3.aruba.it
SSL: true-implicit
Port: 995 (default)
User :  email address (e.g.: name@aruba.it or name@technet.en)

using (Pop3 client = new Pop3())
{
    client.ConnectSSL("pop3.aruba.it");
    client.UseBestLogin("user@aruba.it", "password");

    // ...

    client.Close();
}
Next step: receive emails using POP3.

IMAP

Server:  imap.aruba.it
SSL: true-implicit
Port: 993 (default)
User: email address (e.g.: name@aruba.it or name@technet.en)

using (Imap client = new Imap())
{
    client.ConnectSSL("imap.aruba.it");
    client.UseBestLogin("user@aruba.it", "password");

    // ...

    client.Close();
}

Next step: receive unseen emails using IMAP.

SMTP

Server:  smtp.aruba.it
SSL: true-implicit
Port:  465 (default)
User: email address (e.g.: name@aruba.it or name@technet.en)

using (Smtp client = new Smtp())
{
    client.ConnectSSL("smtp.aruba.it");
    client.UseBestLogin("user@aruba.it", "password");

    // ...

    client.Close();
}


Viewing all articles
Browse latest Browse all 120

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>