• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

action log - possible to email ?

As possible solution you can use following custom script:

Code:
#!/bin/bash
SUBJECT="Plesk action log"
TO="[email protected]"
MESSAGE="/tmp/plesk_action_log.log"

mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa -e "select la.date, la.ip_address, la.user, a.name, lc.component, lc.old_value, lc.new_value from actions a, log_actions la, log_components lc where lc.action_id=la.id and la.action_id=a.id" >> $MESSAGE

/bin/mail -s "$SUBJECT" "$TO" < $MESSAGE

rm $MESSAGE

exit 0
 
thx Igor

(The following errors occurred with your submission:

1. The message you have entered is too short. Please lengthen your message to at least 10 characters.)
 
Back
Top