Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(SQL Server) Using Client Certificate w/ IMAP SSLDemonstrates how to use a client-side certificate with an IMAP SSL connection. The SetSslClientCert method is called to specify a certificate to be used for the SSL connection.
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls. -- CREATE PROCEDURE ChilkatSample AS BEGIN DECLARE @hr int DECLARE @iTmp0 int -- Important: Do not use nvarchar(max). See the warning about using nvarchar(max). DECLARE @sTmp0 nvarchar(4000) -- This example assumes the Chilkat API to have been previously unlocked. -- See Global Unlock Sample for sample code. DECLARE @imap int -- Use "Chilkat_9_5_0.Imap" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Imap', @imap OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END -- To use a secure SSL connection, set SSL and the port: EXEC sp_OASetProperty @imap, 'Ssl', 1 -- The typical port for IMAP SSL is 993 EXEC sp_OASetProperty @imap, 'Port', 993 -- Load a certificate from a PFX file and use it. -- Note: Other methods are available to load pre-installed -- certificates from registry-based certificate stores. -- Create an instance of a certificate store object, load a PFX file, -- locate the certificate we need, and use it for signing. -- (a PFX file may contain more than one certificate.) DECLARE @certStore int -- Use "Chilkat_9_5_0.CertStore" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.CertStore', @certStore OUT -- The 1st argument is the filename, the 2nd arg is the -- PFX file's password: DECLARE @success int EXEC sp_OAMethod @certStore, 'LoadPfxFile', @success OUT, 'myCertWithPrivateKey.pfx', 'secret' IF @success <> 1 BEGIN EXEC sp_OAGetProperty @certStore, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @imap EXEC @hr = sp_OADestroy @certStore RETURN END -- Find the certificate by the subject common name: DECLARE @cert int EXEC sp_OAMethod @certStore, 'FindCertBySubjectCN', @cert OUT, 'Chilkat Software, Inc.' EXEC sp_OAGetProperty @certStore, 'LastMethodSuccess', @iTmp0 OUT IF @iTmp0 = 0 BEGIN EXEC sp_OAGetProperty @certStore, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @imap EXEC @hr = sp_OADestroy @certStore RETURN END -- If a PFX file is known to contain a single certificate, -- you may load it directly into a Chilkat certificate object. -- This snippet of source code shows how: DECLARE @cert2 int -- Use "Chilkat_9_5_0.Cert" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Cert', @cert2 OUT -- The 1st argument is the filename, the 2nd arg is the -- PFX file's password: EXEC sp_OAMethod @cert2, 'LoadPfxFile', @success OUT, 'myClientCert.pfx', 'secret' IF @success <> 1 BEGIN EXEC sp_OAGetProperty @cert, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @imap EXEC @hr = sp_OADestroy @certStore EXEC @hr = sp_OADestroy @cert2 RETURN END -- Use the cert: EXEC sp_OAMethod @imap, 'SetSslClientCert', @success OUT, @cert -- Connect to an IMAP server. EXEC sp_OAMethod @imap, 'Connect', @success OUT, 'imap.someMailServer.com' IF @success <> 1 BEGIN EXEC sp_OAGetProperty @imap, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @imap EXEC @hr = sp_OADestroy @certStore EXEC @hr = sp_OADestroy @cert2 RETURN END -- Login EXEC sp_OAMethod @imap, 'Login', @success OUT, 'myLogin', 'myPassword' IF @success <> 1 BEGIN EXEC sp_OAGetProperty @imap, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @imap EXEC @hr = sp_OADestroy @certStore EXEC @hr = sp_OADestroy @cert2 RETURN END -- Select an IMAP mailbox EXEC sp_OAMethod @imap, 'SelectMailbox', @success OUT, 'Inbox' IF @success <> 1 BEGIN EXEC sp_OAGetProperty @imap, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @imap EXEC @hr = sp_OADestroy @certStore EXEC @hr = sp_OADestroy @cert2 RETURN END DECLARE @messageSet int -- We can choose to fetch UIDs or sequence numbers. DECLARE @fetchUids int SELECT @fetchUids = 1 -- Get the message IDs of all the emails in the mailbox EXEC sp_OAMethod @imap, 'Search', @messageSet OUT, 'ALL', @fetchUids EXEC sp_OAGetProperty @imap, 'LastMethodSuccess', @iTmp0 OUT IF @iTmp0 = 0 BEGIN EXEC sp_OAGetProperty @imap, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @imap EXEC @hr = sp_OADestroy @certStore EXEC @hr = sp_OADestroy @cert2 RETURN END -- Fetch the emails into a bundle object: DECLARE @bundle int EXEC sp_OAMethod @imap, 'FetchBundle', @bundle OUT, @messageSet EXEC sp_OAGetProperty @imap, 'LastMethodSuccess', @iTmp0 OUT IF @iTmp0 = 0 BEGIN EXEC @hr = sp_OADestroy @messageSet EXEC sp_OAGetProperty @imap, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @imap EXEC @hr = sp_OADestroy @certStore EXEC @hr = sp_OADestroy @cert2 RETURN END -- Loop over the bundle and display the FROM and SUBJECT of each. DECLARE @i int SELECT @i = 0 DECLARE @numEmails int EXEC sp_OAGetProperty @bundle, 'MessageCount', @numEmails OUT WHILE @i < @numEmails BEGIN DECLARE @email int EXEC sp_OAMethod @bundle, 'GetEmail', @email OUT, @i EXEC sp_OAGetProperty @email, 'From', @sTmp0 OUT PRINT @sTmp0 EXEC sp_OAGetProperty @email, 'Subject', @sTmp0 OUT PRINT @sTmp0 PRINT '--' EXEC @hr = sp_OADestroy @email SELECT @i = @i + 1 END -- Disconnect from the IMAP server. EXEC sp_OAMethod @imap, 'Disconnect', @success OUT EXEC @hr = sp_OADestroy @messageSet EXEC @hr = sp_OADestroy @bundle EXEC @hr = sp_OADestroy @imap EXEC @hr = sp_OADestroy @certStore EXEC @hr = sp_OADestroy @cert2 END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.