mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-05 07:27:04 +03:00
Added some comments
This commit is contained in:
parent
476fe63999
commit
e31b4f4b75
1 changed files with 7 additions and 0 deletions
|
|
@ -7,6 +7,10 @@
|
||||||
*
|
*
|
||||||
* For the full copyright and license information, please view the LICENSE
|
* For the full copyright and license information, please view the LICENSE
|
||||||
* file that was distributed with this source code.
|
* 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;
|
namespace MailSo\Imap;
|
||||||
|
|
@ -17,6 +21,9 @@ namespace MailSo\Imap;
|
||||||
*/
|
*/
|
||||||
class SequenceSet /*extends \SplFixedArray*/ implements \Countable
|
class SequenceSet /*extends \SplFixedArray*/ implements \Countable
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* By default the numbers are unique identifiers as this is more reliable.
|
||||||
|
*/
|
||||||
public $UID = true;
|
public $UID = true;
|
||||||
|
|
||||||
private $data = [];
|
private $data = [];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue