GMail IMAP OAuth2 – A Walkthrough

This blog post covers from start to finish the process for getting a desktop application working with GMail using the IMAP protocol with OAuth2 authentication. Start here:  https://console.developers.google.com/apis/credentials (1) The first step is to create credentials.  Your app is a desktop application.  HOWEVER, you will be creating credentials as if your app is a web app. See this YouTube video […]

Apple Mail warning: Unable to Verify Message Signature

If Apple Mail displays the warning “Unable to verify message signature”, and when clicking details it says: The digital signature is incorrect. The message may have been tampered with or corrupted since signed by (sender’s name). the reason is due to a bug in Apple Mail (possibly introduced in a recent version of MacOSX). See https://apple.stackexchange.com/questions/343251/apple-mail-warning-unable-to-verify-message-signature “When Mail is set […]

Chilkat v9.5.0.83 Release Notes

The previous version release notes: Chilkat v9.5.0.82 Release Notes The next version release notes: Chilkat v9.5.0.84 Release Notes Chilkat v9.5.0.83 Release Notes 25-Mar-2020 SHA3: Added the SHA3 hash algorithms: sha3-224, sha3-256, sha3-384, sha3-512. The SHA3 hash algorithms may generally be used in any property or method of any Chilkat class where a hash algorithm is specified. 25-Mar-2020 MailMan: Added OAuth2 […]

Receiving a Webhook JSON POST in Classic ASP

Question: I need to setup a page in Classic ASP to serve as a webhook endpoint listener in Classic ASP The form product we are using (Paperform) posts the data to our endpoint as a JSON post payload. https://help.paperform.co/en/articles/2073207-how-to-use-webhooks Submission payload Webhooks POST a JSON payload on submission to the webhook URL. The JSON payload looks like the following: { “data”: […]