Discuss this help topic in SecureBlackbox Forum
IMAP: Login with a username and password
To login with a username and a password you need to set Username and Password properties, and then call Login method.
Examples:
C#:
client.Username = "login";
client.Password = "password";
client.Login();
Delphi:
Client.Username := 'login';
Client.password := 'password';
Client.Login;