Rust Requires Chilkat v11.0.0+
Rust
IMAP SSH Tunneling (Port Forwarding)
Demonstrates how to setup and use an SSH tunnel for IMAP.Chilkat Rust Downloads
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let imap = chilkat::Imap::new();
// The SSH hostname may be a hostname or an
// IP address, such as "192.168.1.108".
// The port is typically 22 (the standard port for SSH).
let ssh_hostname = "www.mysshserver.com".to_string();
let ssh_port = 22;
// Connect to an SSH server and establish the SSH tunnel:
if imap.ssh_open_tunnel(&ssh_hostname, ssh_port).is_err() {
println!("{}", imap.last_error_text());
return;
}
// Authenticate with the SSH server via a login/password
// or with a public key.
// This example demonstrates SSH password authentication.
// Note: This is not authenticating with the IMAP server, it is
// for authenticating with the SSH server, which is separate.
if imap.ssh_authenticate_pw("mySshLogin", "mySshPassword").is_err() {
println!("{}", imap.last_error_text());
return;
}
// OK, the SSH tunnel is setup. The IMAP component may
// be used exactly the same as usual, except all communications
// are sent through the SSH tunnel.
// Connect to an IMAP server via the SSH tunnel.
// Because the SSH tunnel has been previously setup,
// this does not establish a direct connection with the IMAP
// server. It directs the SSH server to establish the connection.
// In this example, the IMAP server requires SSL/TLS. The TLS connection
// will be enclosed within the SSH tunnel.
imap.set_ssl(true);
imap.set_port(993);
if imap.connect("imap.my-imap-server.com").is_err() {
println!("{}", imap.last_error_text());
return;
}
// Authenticate with the IMAP server via the SSH tunnel.
if imap.login("myLogin", "myPassword").is_err() {
println!("{}", imap.last_error_text());
return;
}
// Select an IMAP mailbox
if imap.select_mailbox("Inbox").is_err() {
println!("{}", imap.last_error_text());
return;
}
// How many messages in Inbox?
let msg_count = imap.num_messages();
if msg_count == 0 {
println!("No messages found.");
return;
}
let mut upper_bound = 10;
if msg_count < upper_bound {
upper_bound = msg_count;
}
// Download up to the 1st 10 messages.
let email = chilkat::Email::new();
let b_uid = false;
for i in 1..=upper_bound {
if imap.fetch_email(false, i as u32, b_uid, &email).is_err() {
println!("{}", imap.last_error_text());
return;
}
println!("{}", email.from());
println!("{}", email.subject());
println!("----");
}
// Disconnect from the IMAP server.
// The SSH tunnel remains open.
if imap.disconnect().is_err() {
println!("{}", imap.last_error_text());
return;
}
// It is possible to re-use the existing SSH tunnel for the next connection:
if imap.connect("imap.my-imap-server2.com").is_err() {
println!("{}", imap.last_error_text());
return;
}
// Review the LastErrorText to see that the connection was made via the SSH tunnel:
println!("{}", imap.last_error_text());
if imap.disconnect().is_err() {
println!("{}", imap.last_error_text());
return;
}
// Finally, close the SSH tunnel.
if imap.ssh_close_tunnel().is_err() {
println!("{}", imap.last_error_text());
return;
}
println!("IMAP SSH tunneling example completed.");