2013-05-14 01:32:19 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class MetaMTAReceivedMailStatus
|
|
|
|
extends MetaMTAConstants {
|
|
|
|
|
2013-05-14 19:57:41 +02:00
|
|
|
const STATUS_DUPLICATE = 'err:duplicate';
|
|
|
|
const STATUS_FROM_PHABRICATOR = 'err:self';
|
|
|
|
const STATUS_NO_RECEIVERS = 'err:no-receivers';
|
|
|
|
const STATUS_ABUNDANT_RECEIVERS = 'err:multiple-receivers';
|
2013-05-15 17:44:54 +02:00
|
|
|
const STATUS_UNKNOWN_SENDER = 'err:unknown-sender';
|
2013-05-17 12:49:29 +02:00
|
|
|
const STATUS_DISABLED_SENDER = 'err:disabled-sender';
|
|
|
|
const STATUS_NO_PUBLIC_MAIL = 'err:no-public-mail';
|
|
|
|
const STATUS_USER_MISMATCH = 'err:bad-user';
|
|
|
|
const STATUS_POLICY_PROBLEM = 'err:policy';
|
|
|
|
const STATUS_NO_SUCH_OBJECT = 'err:not-found';
|
|
|
|
const STATUS_HASH_MISMATCH = 'err:bad-hash';
|
2013-05-14 01:32:19 +02:00
|
|
|
|
|
|
|
}
|