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 :
MailPreferences.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 MailPreferences { /** * @Type("PleskExt\RestApi\v2\Entity\OutgoingMessages") * @var OutgoingMessages */ public $outgoing_messages; /** * @Type("PleskExt\RestApi\v2\Entity\NonExistentUser") * @var NonExistentUser */ public $nonexistent_user; /** * It specifies whether mail users will have access to their mail via a webmail application. * @Type("bool") * @var bool */ public $webmail; /** * If the DomainKeys spam protection is available on the server, the node specifies whether the spam protection is turned on on the site. * @Type("bool") * @var bool */ public $spam_protect_sign; /** * If the greylisting spam protection is available on the server, the node specifies whether the spam protection is turned on on the site. * @Type("bool") * @var bool */ public $greylisting; /** * It switches on or off the mail service on a specified domain. * @Type("bool") * @var bool */ public $mailservice; }