Archive for the ‘antivirus’ Category

[FIX] Getting a lot of notification from DrWeb

April 6, 2008

[FIX] Getting a lot of notification from DrWeb.
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.

[How To] Configuring ClamAV antivirus in Plesk

April 6, 2008

[How To] Configuring ClamAV antivirus in Plesk.
RESOLUTION
1. Download the latest version of ClamAV, supported by Plesk.

2. Install it according to vendor’s instructions.

3. Login to Plesk Control Panel, go to Server, Component management. Click Refresh to let Plesk detect the new antivirus.

4. Go to Antivirus and choose ClamAv as the default Antivirus in Plesk, save changes by clicking Ok.

What ClamAV versions are supported by Plesk?

April 5, 2008

[Info] What ClamAV versions are supported by Plesk?
RESOLUTION
Plesk supports the latest ClamWin versions only. To obtain the latest build please visit http://www.clamwin.com/ website.

Note: Plesk does not support ClamAV (clamav-devel) versions.
ADDITIONAL INFORMATION
Please see how to configure ClamAv antivirus in Plesk
Keywords: clamav support clamwin

http://kb.swsoft.com/en/1988