mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-28 11:39:21 +03:00
Document some code
This commit is contained in:
parent
d0210bd09a
commit
85e7cbc206
4 changed files with 15 additions and 5 deletions
|
|
@ -18,10 +18,12 @@ namespace MailSo\Imap\Enumerations;
|
|||
*/
|
||||
abstract class FolderResponseStatus
|
||||
{
|
||||
// rfc3501
|
||||
const MESSAGES = 'MESSAGES';
|
||||
const RECENT = 'RECENT';
|
||||
const UNSEEN = 'UNSEEN';
|
||||
const UIDNEXT = 'UIDNEXT';
|
||||
const HIGHESTMODSEQ = 'HIGHESTMODSEQ';
|
||||
const UIDVALIDITY = 'UIDVALIDITY';
|
||||
const UNSEEN = 'UNSEEN';
|
||||
// rfc4551
|
||||
const HIGHESTMODSEQ = 'HIGHESTMODSEQ';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,10 +18,14 @@ namespace MailSo\Imap\Enumerations;
|
|||
*/
|
||||
abstract class FolderStatus
|
||||
{
|
||||
// rfc3501
|
||||
const MESSAGES = 'MESSAGES';
|
||||
const RECENT = 'RECENT';
|
||||
const UNSEEN = 'UNSEEN';
|
||||
const UIDNEXT = 'UIDNEXT';
|
||||
const HIGHESTMODSEQ = 'HIGHESTMODSEQ';
|
||||
const UIDVALIDITY = 'UIDVALIDITY';
|
||||
const UNSEEN = 'UNSEEN';
|
||||
// rfc4551
|
||||
const HIGHESTMODSEQ = 'HIGHESTMODSEQ';
|
||||
// rfc8474
|
||||
const MAILBOXID = 'MAILBOXID';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1453,6 +1453,10 @@ class MailClient
|
|||
|
||||
TO
|
||||
[IMAP] addr-mailbox of the first "To" address.
|
||||
|
||||
RFC 5957:
|
||||
$this->oImapClient->IsSupported('SORT=DISPLAY')
|
||||
DISPLAYFROM, DISPLAYTO
|
||||
*/
|
||||
|
||||
$aResultUids = false;
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
</td>
|
||||
<!-- ko if: $root.displaySpecSetting -->
|
||||
<td data-i18n="[title]SETTINGS_FOLDERS/HELP_CHECK_FOR_NEW_MESSAGES">
|
||||
<span class="e-action" data-bind="css: {'check-folder':checkable(), 'unchecked-folder':!checkable()}, visible: canBeSelected() && subscribed(), click: function(oFolder) { $root.toggleFolderCheckable(oFolder); }">
|
||||
<span class="e-action" data-bind="css: {'check-folder':checkable(), 'unchecked-folder':!checkable()}, visible: canBeSelected() && subscribed(), click: $root.toggleFolderCheckable">
|
||||
<i class="icon-check-mark-circle-two"></i>
|
||||
</span>
|
||||
</td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue