PowerBuilder
PowerBuilder
Set the Decryption Certificate for MailMan
See more POP3 Examples
Demonstrates the Chilkat MailMan.SetDecryptCert method, which explicitly specifies the certificate to use when decrypting encrypted email. The certificate must correspond to the recipient certificate used to encrypt the message and must have access to its private key. This example loads the certificate from a PFX, registers it, and fetches a message that Chilkat can then decrypt.
Background: Decrypting S/MIME mail requires the recipient's private key, so the certificate you supply must carry it — which is why a PFX (certificate + private key in one password-protected file) is used here. Chilkat can find installed certificates automatically on Windows and macOS;
SetDecryptCert is how you point it at a specific one instead. If the certificate and key live in separate files, use SetDecryptCert2.Chilkat PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_Mailman
oleobject loo_Cert
oleobject loo_Email
li_Success = 0
// Demonstrates the MailMan.SetDecryptCert method, which explicitly specifies the certificate
// to use when decrypting encrypted email. The certificate must correspond to the recipient
// certificate used to encrypt the message, and must have access to its private key.
loo_Mailman = create oleobject
li_rc = loo_Mailman.ConnectToNewObject("Chilkat.MailMan")
if li_rc < 0 then
destroy loo_Mailman
MessageBox("Error","Connecting to COM object failed")
return
end if
// Configure the POP3 server connection.
loo_Mailman.MailHost = "pop.example.com"
loo_Mailman.MailPort = 995
loo_Mailman.PopSsl = 1
loo_Mailman.PopUsername = "user@example.com"
loo_Mailman.PopPassword = "myPassword"
// Load the certificate together with its private key from a PFX file.
loo_Cert = create oleobject
li_rc = loo_Cert.ConnectToNewObject("Chilkat.Cert")
li_Success = loo_Cert.LoadPfxFile("qa_data/certs/decryption.pfx","pfx_password")
if li_Success = 0 then
Write-Debug loo_Cert.LastErrorText
destroy loo_Mailman
destroy loo_Cert
return
end if
// Specify the certificate to use when decrypting downloaded email.
li_Success = loo_Mailman.SetDecryptCert(loo_Cert)
if li_Success = 0 then
Write-Debug loo_Mailman.LastErrorText
destroy loo_Mailman
destroy loo_Cert
return
end if
// Fetch a message; if it is encrypted, Chilkat decrypts it using this certificate.
loo_Email = create oleobject
li_rc = loo_Email.ConnectToNewObject("Chilkat.Email")
li_Success = loo_Mailman.FetchOne(0,0,1,loo_Email)
if li_Success = 0 then
Write-Debug loo_Mailman.LastErrorText
destroy loo_Mailman
destroy loo_Cert
destroy loo_Email
return
end if
Write-Debug "ReceivedEncrypted = " + string(loo_Email.ReceivedEncrypted)
Write-Debug "Decrypted = " + string(loo_Email.Decrypted)
// Note: The path "qa_data/certs/decryption.pfx" is a relative local filesystem path,
// relative to the current working directory of the running application.
// Note: Explicitly connecting/authenticating is optional. Chilkat MailMan automatically
// connects and authenticates -- using the property settings above -- whenever a server
// operation requires it. Calling the explicit connect/authenticate methods can still be
// helpful to determine whether a failure occurs while connecting or while authenticating.
destroy loo_Mailman
destroy loo_Cert
destroy loo_Email