From 4b75957a7c86966f8f4ced4bb12185cfe809c19e Mon Sep 17 00:00:00 2001 From: 641i130 Date: Sun, 30 Oct 2022 12:20:32 -0500 Subject: [PATCH] Fixed README.md formatting back to original --- examples/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/README.md b/examples/README.md index b4c9044..de1cb54 100644 --- a/examples/README.md +++ b/examples/README.md @@ -1,13 +1,13 @@ -# Examples +Examples +======== This directory contains examples of working with the IMAP client. Examples: - -- basic - This is a very basic example of using the client. -- gmail_oauth2 - This is an example using oauth2 for logging into gmail as a secure appplication. -- idle - This is an example showing how to use IDLE to monitor a mailbox. -- rustls - This demonstrates how to use Rustls instead of Openssl for secure connections (helpful for cross compilation). -- starttls - This is an example showing how to use STARTTLS after connecting over plaintext. -- timeout - This demonstrates how to use timeouts while connecting to an IMAP server by using a custom TCP/TLS stream initialization and creating a `Client` directly instead of using the `ClientBuilder`. -- plaintext - This demonstrates how to make an unencrypted IMAP connection (usually over 143) with a `Client` using a naked TCP connection. + * basic - This is a very basic example of using the client. + * gmail_oauth2 - This is an example using oauth2 for logging into gmail as a secure appplication. + * idle - This is an example showing how to use IDLE to monitor a mailbox. + * rustls - This demonstrates how to use Rustls instead of Openssl for secure connections (helpful for cross compilation). + * starttls - This is an example showing how to use STARTTLS after connecting over plaintext. + * timeout - This demonstrates how to use timeouts while connecting to an IMAP server by using a custom TCP/TLS stream initialization and creating a `Client` directly instead of using the `ClientBuilder`. + * plaintext - This demonstrates how to make an unencrypted IMAP connection (usually over 143) with a `Client` using a naked TCP connection.