Applicable to:
- Plesk for Linux
- Plesk for Windows
Question
How to change the subject of the Plesk notification emails?
Answer
-
Go to Tools & Settings > Notifications.
-
Find a notification whose text and/or subject you want to edit and then click the edit icon on the corresponding line.
-
Change the notification text and/or subject.
Plesk Onyx and below
-
Connect to the server using SSH
-
Create a database backup before any updates:
# MYSQL_PWD=`cat /etc/psa/.psa.shadow` mysqldump -u admin psa > /root/psa`date +%F_%H.%M`.sql
-
Check notification subjects:
# mysql -uadmin -p`cat /etc/psa/.psa.shadow ` psa -Ne "SELECT id, subj FROM Notifications;"
+----+------------------------------------------------------------------------------+
| 1 | Notification of the customer creation. |
| 2 | Notification of the site creation. |
| 3 | Notification: Resource usage by subscription has exceeded the allotments. |
| 6 | Subscription event notification: The subscription term has expired. |
| 7 | Subscription event notification: The subscription term is about to expire. |
| 12 | Application Manager Error notification. |
| 13 | Notification of the reseller creation. |
| 16 | Notification: Resource limits exceeded by reseller account. |
| 18 | Notification: Subscription was suspended due to resource overuse. |
| 20 | Notification: Reseller account has exceeded its limits and was suspended. |
| 22 | Notification: Resources overuse blocked for reseller account. |
| 23 | Application Updates. |
| 24 | Application Updates. |
| 25 | Application Updates. |
| 26 | Attempts to exceed outgoing limits for domains, mailboxes and subscriptions. |
| 27 | Package Update Manager notification |
| 28 | Notification: Resource usage by subscription has exceeded the allotments |
+----+------------------------------------------------------------------------------+ -
Update the desired subject (use the
id
field for selecting desired event notification).For example, if you want to change event notification subject for
Notification of the customer creation
run the following:# MYSQL_PWD=`cat /etc/psa/.psa.shadow` mysql -u admin psa -e"update Notifications set subj='Changed - Notification of the customer creation' where id=1"
Note: the event notification subject also contains the hostname of the Plesk server, so the subject looks like:
CONFIG_TEXT: <example.com> Changed - Notification of the customer creation
Value
example.com
cannot be changed within notification subject.
Comments
0 comments
Please sign in to leave a comment.