D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
rest-api
/
v2
/
externals
/
Entity
/
Filename :
OutgoingMessages.php
back
Copy
<?php // Copyright 1999-2024. WebPros International GmbH. All rights reserved. namespace PleskExt\RestApi\v2\Entity; use PleskRestApi\JMS\Serializer\Annotation\Type; /** */ class OutgoingMessages { /** * Mailname outgoing messsages (per hour). * @Type("integer") * @var int */ public $mbox_limit; /** * Domain outgoing messages (per hour). * @Type("integer") * @var int */ public $domain_limit; /** * Subscription outgoing messages (per hour). * @Type("integer") * @var int */ public $subscription_limit; /** * Scripts will be able to send mail even when the limits on outgoing messages are reached for the corresponding mailbox and domain. * @Type("bool") * @var bool */ public $enable_sendmail; /** * Percentage of email messages to accept into mail queue and retry for delivery in next hour. * @Type("integer") * @var int */ public $overlimit_percent; }