mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-26 00:28:04 +08:00
18 lines
246 B
PHP
18 lines
246 B
PHP
|
<?php
|
||
|
|
||
|
namespace MailSo\Imap\Enumerations;
|
||
|
|
||
|
/**
|
||
|
* @category MailSo
|
||
|
* @package Imap
|
||
|
* @subpackage Enumerations
|
||
|
*/
|
||
|
class ResponseStatus
|
||
|
{
|
||
|
const OK = 'OK';
|
||
|
const NO = 'NO';
|
||
|
const BAD = 'BAD';
|
||
|
const BYE = 'BYE';
|
||
|
const PREAUTH = 'PREAUTH';
|
||
|
}
|