snappymail/snappymail/v/0.0.0/app/libraries/MailSo/Imap/Enumerations/FolderResponseStatus.php
djmaze 76630f593d Added some RFC 9051 IMAP4rev2 details
Added the missing FolderCheck() and FolderClose() commands
2021-10-29 01:57:05 +02:00

29 lines
590 B
PHP

<?php
/*
* This file is part of MailSo.
*
* (c) 2014 Usenko Timur
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace MailSo\Imap\Enumerations;
/**
* @category MailSo
* @package Imap
* @subpackage Enumerations
*/
abstract class FolderResponseStatus
{
// rfc3501
const MESSAGES = 'MESSAGES';
const RECENT = 'RECENT'; // Obsolete in IMAP4rev2
const UIDNEXT = 'UIDNEXT';
const UIDVALIDITY = 'UIDVALIDITY';
const UNSEEN = 'UNSEEN';
// rfc4551
const HIGHESTMODSEQ = 'HIGHESTMODSEQ';
}