net-pop
net-pop copied to clipboard
This library provides functionality for retrieving email via POP3, the Post Office Protocol version 3. For details of POP3
Hello, I would like to add `OAUTH2` support to this library and I started working on it. This is what I came up with right now. I'm not 100% sure...
When updating to net-pop 0.1.2, this PR came into play: https://github.com/ruby/net-pop/pull/10/files Now, not requiring `digest` is perfectly valid as of Ruby 3.0, when `digest` became a [default ruby library gem](https://stdgems.org/compare/)...
This adds support for asking a POP server about its capabilities ([RFC2449]). * Adds Net::POP3Command#capa, which issues the CAPA command and encodes the result as a hash of {tag =>...
* update `POP3.foreach`, `POP3.delete_all`, and `POP3.auth_only` to forward all arguments (`*arg, **kwarg`) to `POP3.start`. * update `auth_only` to *only* forward args to `start` and return `true` * marked `POP3.create_ssl_params` with...
In order to support POP3 with STARTTLS, before setting up the secure connection with OpenSSL, the client should send the command `STLS` over the unencrypted TCP connection first.
Dear @ruby team, In first, I wish you a Happy New Year! 20 November 2008: CRAM-MD5 to Historic: - https://tools.ietf.org/html/draft-ietf-sasl-crammd5-to-historic-00 29 June 2017: CRAM-MD5 to Historic: - https://tools.ietf.org/html/draft-zeilenga-luis140219-crammd5-to-historic-00 July 2011:...
Dear @ruby team, In first, I wish you a Happy New Year! Can you add supports of : - SCRAM-SHA-1 - SCRAM-SHA-1-PLUS - SCRAM-SHA-256 - SCRAM-SHA-256-PLUS - SCRAM-SHA-512 - SCRAM-SHA-512-PLUS...
The `Net::POP3#enable_starttls` method supports the POP3 STARTTLS extension [RFC 2595]. * https://github.com/ruby/net-pop/issues/14 I believe it is valuable to offer a secure option for port 110 access because there are still...
Hello, Thank you for your continuous contributions to Ruby. I am using this library for work, and I have encountered a peculiar issue where UIDLs are sometimes missing. I attempted...