mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 08:27:03 +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
|
abstract class FolderResponseStatus
|
||||||
{
|
{
|
||||||
|
// rfc3501
|
||||||
const MESSAGES = 'MESSAGES';
|
const MESSAGES = 'MESSAGES';
|
||||||
const RECENT = 'RECENT';
|
const RECENT = 'RECENT';
|
||||||
const UNSEEN = 'UNSEEN';
|
|
||||||
const UIDNEXT = 'UIDNEXT';
|
const UIDNEXT = 'UIDNEXT';
|
||||||
const HIGHESTMODSEQ = 'HIGHESTMODSEQ';
|
|
||||||
const UIDVALIDITY = 'UIDVALIDITY';
|
const UIDVALIDITY = 'UIDVALIDITY';
|
||||||
|
const UNSEEN = 'UNSEEN';
|
||||||
|
// rfc4551
|
||||||
|
const HIGHESTMODSEQ = 'HIGHESTMODSEQ';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,10 +18,14 @@ namespace MailSo\Imap\Enumerations;
|
||||||
*/
|
*/
|
||||||
abstract class FolderStatus
|
abstract class FolderStatus
|
||||||
{
|
{
|
||||||
|
// rfc3501
|
||||||
const MESSAGES = 'MESSAGES';
|
const MESSAGES = 'MESSAGES';
|
||||||
const RECENT = 'RECENT';
|
const RECENT = 'RECENT';
|
||||||
const UNSEEN = 'UNSEEN';
|
|
||||||
const UIDNEXT = 'UIDNEXT';
|
const UIDNEXT = 'UIDNEXT';
|
||||||
const HIGHESTMODSEQ = 'HIGHESTMODSEQ';
|
|
||||||
const UIDVALIDITY = 'UIDVALIDITY';
|
const UIDVALIDITY = 'UIDVALIDITY';
|
||||||
|
const UNSEEN = 'UNSEEN';
|
||||||
|
// rfc4551
|
||||||
|
const HIGHESTMODSEQ = 'HIGHESTMODSEQ';
|
||||||
|
// rfc8474
|
||||||
|
const MAILBOXID = 'MAILBOXID';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1453,6 +1453,10 @@ class MailClient
|
||||||
|
|
||||||
TO
|
TO
|
||||||
[IMAP] addr-mailbox of the first "To" address.
|
[IMAP] addr-mailbox of the first "To" address.
|
||||||
|
|
||||||
|
RFC 5957:
|
||||||
|
$this->oImapClient->IsSupported('SORT=DISPLAY')
|
||||||
|
DISPLAYFROM, DISPLAYTO
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$aResultUids = false;
|
$aResultUids = false;
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
</td>
|
</td>
|
||||||
<!-- ko if: $root.displaySpecSetting -->
|
<!-- ko if: $root.displaySpecSetting -->
|
||||||
<td data-i18n="[title]SETTINGS_FOLDERS/HELP_CHECK_FOR_NEW_MESSAGES">
|
<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>
|
<i class="icon-check-mark-circle-two"></i>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue