Archive for the tag 'mailbox'

Mailbox disk usage in Parallels Plesk Panel.

Problem: Parallels Plesk Panel shows incorrect statistics for the mailboxes on the domains. Domain mailboxes use less disk space then it is shown at the Control Panel. Disk usage for the mailbox is shown even if mail service is disabled on the domain.

Issue was discovered in Parallels Plesk Panel version 10.0.1.

In order to fix the issue apply hot-fix on the server.

Replace the file $PRODUCT_ROOT_D/admin/smb/application/controllers/StatisticsController.php with the file from the attachment below.

http://kb.parallels.com/Attachments/14688/Attachments/StatisticsController_linux.zip

The installation procedure is at http://kb.parallels.com/en/8083

After that recalculate statistics for the domains with the statistics utility. Statistics utility can be found in directory e $PRODUCT_ROOT_D/admin/sbin/.

/usr/local/psa/admin/sbin/statistics –calculate-one –domain-name=domain.tld

Reference : http://parallels.com/

How can I send a copy of all outgoing messages to another mailbox with Exim

The most straightforward way is to set up a system filter, and include a command such as:

unseen deliver mailbox@serverbuddies.com

This sends a copy of every message to mailbox@serverbuddies.com (unless the message already has that recipient - Exim never does duplicate deliveries). To save only outgoing messages, you need to come up with a definition of what outgoing means. Typically, this might be a check on the sender address and/or on the originating host.

Here is an example:

if $sender_address_domain is serverbuddies.com and
${mask:$sender_host_address/24} is 192.168.124.0/24
then
unseen deliver mailbox@serverbuddies.com/
endif