From e31b4f4b752ddd8d25c04a5046069e843dcdf47f Mon Sep 17 00:00:00 2001 From: djmaze <> Date: Thu, 6 Jan 2022 10:32:58 +0100 Subject: [PATCH] Added some comments --- .../v/0.0.0/app/libraries/MailSo/Imap/SequenceSet.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/snappymail/v/0.0.0/app/libraries/MailSo/Imap/SequenceSet.php b/snappymail/v/0.0.0/app/libraries/MailSo/Imap/SequenceSet.php index 5754c3442..c57c1c2a3 100644 --- a/snappymail/v/0.0.0/app/libraries/MailSo/Imap/SequenceSet.php +++ b/snappymail/v/0.0.0/app/libraries/MailSo/Imap/SequenceSet.php @@ -7,6 +7,10 @@ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * Messages in IMAP4rev1 are accessed by the use of numbers. + * These numbers are either message sequence numbers or unique identifiers. + * https://datatracker.ietf.org/doc/html/rfc3501#section-2.3.1 */ namespace MailSo\Imap; @@ -17,6 +21,9 @@ namespace MailSo\Imap; */ class SequenceSet /*extends \SplFixedArray*/ implements \Countable { + /** + * By default the numbers are unique identifiers as this is more reliable. + */ public $UID = true; private $data = [];