[FIX] Getting a lot of notification from DrWeb.

Article ID: 970 
Last Review: Oct,6 2008
Author: Oleg Beznosov APPLIES TO:
  • Plesk 7.5.x for Windows
  • Plesk 7.5.6 for Windows
  • Plesk 7.5.5 for Windows
  • Plesk 7.6.x for Windows
  • Plesk 7.6.1 for Windows
  • Plesk 8.1.0 for Windows
  • Plesk 8.1.1 for Windows
  • Plesk 8.1 for Windows
  • Plesk 8.1.1.2 for Windows
  • Plesk 8.2 for Windows

Resolution

It is possible to disable notifications from DrWeb. In order to do so, several corrections should be made in the Plesk database:


1.Connect to the database:

"%plesk_dir%\mysql\bin\mysql" -uadmin -padmin_password -P8306 psa

2. Make sure that the record  regarding antivirus notifications exists in psa.misc table. It can be verified using the following SQL query:

select val from misc where param = 'AntivirusNotifyAdmin';

The query should return one of the values below:


0 - notifications are disabled;
1 - notifications are enabled;


Notification can be enabled or disabled by switching the parameter using one of the queries below:

To disable notifications


update misc set val='0' where param = 'AntivirusNotifyAdmin';

To enable notifications

update misc set val='1' where param = 'AntivirusNotifyAdmin';

Non-existent record can be inserted using the query:

insert into misc values ('AntivirusNotifyAdmin','0');


Notifications to sender and/or recipient of infected email can also be enabled by adding the values as below:

'AntivirusNotifyAdmin' - parameter controls notifications to Plesk administrator.

'AntivirusNotifySender' - email sender will be notified about an infected email.

'AntivirusNotifyRecipients' - email recipient will be notified about an infected email.
Subscription for this article changesSubscription for this article changes

Please provide feedback on this article

Did this article help you solve your issue?
Yes
No
Partially
I do not know yet
 
Strongly Agree   Strongly Disagree
  9 8 7 6 5 4 3 2 1
The article is easy to understand
The article is accurate
Additional Comments:
*Please provide us with your email address in case we need to contact you.
captcha *Please type the code you can see.
* - required fields