Skip to content
  • Solutions
    By Role
    • For Developers
    • For Content Managers
    • For Agencies
    • For IT Admins
    • For Web Hosters
    • For Developers
    • For Content Managers
    • For Agencies
    • For IT Admins
    • For Web Hosters
    By Infrastructure
    • Overview
    • AWS
    • Microsoft Azure
    • Alibaba Cloud
    • Google Cloud Platform
    • Vultr
    • Overview
    • AWS
    • Microsoft Azure
    • Alibaba Cloud
    • Google Cloud Platform
    • Vultr
    • Digital Ocean
    • Linode
    • Upcloud
    • Oracle
    • OVH
    • Digital Ocean
    • Linode
    • Upcloud
    • Oracle
    • OVH
  • Product
    • Plesk Features
    • Plesk Editions
    • What’s new
    • Pricing
    • Roadmap
    • Lifecycle Policy
    • Extensions Catalogue
  • Pricing
  • Extensions
    Featured Extensions
    • SocialBee
    • WP Toolkit
    • Sitejet Builder for Plesk
    • SEO Toolkit
    • Joomla! Toolkit
    • Premium Email
    • Email Security
    • SocialBee
    • WP Toolkit
    • Sitejet Builder for Plesk
    • SEO Toolkit
    • Joomla! Toolkit
    • Premium Email
    • Email Security
    Bundles and packs:
    • Business and Collaboration Edition
    • WP pack
    • Hosting pack
    • Power pack
    • Language pack
    • Business and Collaboration Edition
    • WP pack
    • Hosting pack
    • Power pack
    • Language pack

    See all Extensions

  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
  • Pricing
  • Solutions
    • By Role
      • For Developers
      • For Content Managers
      • For Agencies
      • For IT Admins
      • For Web Hosters
    • By Infrastructure
      • Overview
      • Plesk on Amazon Web Services (AWS & Lightsail)
      • Microsoft Azure
      • Alibaba Cloud
      • Google Cloud Platform
      • Vultr
      • DigitalOcean
      • Linode
      • UpCloud
      • Oracle
      • OVH
  • Products
  • Pricing
  • Extensions
    • Featured Extensions
      • SocialBee
      • WP Toolkit
      • Sitejet Builder for Plesk
      • SEO Toolkit
      • Joomla! Toolkit
      • Premium Email
      • Email Security
    • Bundles and packs:
      • Business and Collaboration Edition
      • WP pack
      • Hosting pack
      • Power pack
      • Language pack
      • See all Extensions
  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate Program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
  • Pricing
  • Solutions
    • By Role
      • For Developers
      • For Content Managers
      • For Agencies
      • For IT Admins
      • For Web Hosters
    • By Infrastructure
      • Overview
      • Plesk on Amazon Web Services (AWS & Lightsail)
      • Microsoft Azure
      • Alibaba Cloud
      • Google Cloud Platform
      • Vultr
      • DigitalOcean
      • Linode
      • UpCloud
      • Oracle
      • OVH
  • Products
  • Pricing
  • Extensions
    • Featured Extensions
      • SocialBee
      • WP Toolkit
      • Sitejet Builder for Plesk
      • SEO Toolkit
      • Joomla! Toolkit
      • Premium Email
      • Email Security
    • Bundles and packs:
      • Business and Collaboration Edition
      • WP pack
      • Hosting pack
      • Power pack
      • Language pack
      • See all Extensions
  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate Program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
Plesk 360 login
Free Trial

Knowledge Base

How to manage Plesk email notifications via CLI?

 
antivirusclidatabaseemailplesk for linux

Question

How to manage the email notifications from Tools & Settings > Notifications list via CLI?

For example, for the following components:

  • WP Toolkit
  • Imunify

Answer

Use the plesk bin notification utility. The general syntax is as follows:

# plesk bin notification --update -code <notification code> -send2admin false -send2reseller false -send2client false -send2email false

where:

  • <notification code> - the required notification's code. Can be looked up in Plesk documentation or the ModuleSettings database table
  • -send2admin - determines whether or not the notification will be sent to the Administrator. Can be set to true or false
  • -send2reseller - determines whether or not the notification will be sent to the resellers. Can be set to true or false
  • -send2client - determines whether or not the notification will be sent to the customers. Can be set to true or false
  • -send2email - determines whether or not the notification will be sent to a specific email address set in Tools & Settings > Notifications. Can be set to true or false

Visit the Plesk documentation page for additional details.

Use the examples below to manage specific notifications:

Note: The examples below describe how to disable notifications. To enable notifications, replace the corresponding false with true.

WP Toolkit

1. WordPress application updates (administrator's digest)

# plesk bin notification --update -code ext-wp-toolkit-notification-admin_updates -send2admin false -send2reseller false -send2client false -send2email false

2. WordPress application updates (reseller's digest)

# plesk bin notification --update -code ext-wp-toolkit-notification-reseller_updates -send2admin false -send2reseller false -send2client false -send2email false

3. WordPress application updates (customer's digest)

# plesk bin notification --update -code ext-wp-toolkit-notification-client_updates -send2admin false -send2reseller false -send2client false -send2email false

4. WordPress installation is quarantined (administrator's digest)

# plesk bin notification --update -code ext-wp-toolkit-notification-admin_suspicious_instance -send2admin false -send2reseller false -send2client false -send2email false

5. WordPress installation is quarantined (reseller's digest)

# plesk bin notification --update -code ext-wp-toolkit-notification-reseller_suspicious_instance -send2admin false -send2reseller false -send2client false -send2email false

6. WordPress installation is quarantined (customer's digest)

# plesk bin notification --update -code ext-wp-toolkit-notification-client_suspicious_instance -send2admin false -send2reseller false -send2client false -send2email false

Imunify

1. Imunify Admin notifications

# plesk bin notification --update -code ext-revisium-antivirus-notification-admin_notification -send2admin false -send2reseller false -send2client false -send2email false

2. Imunify Reseller’s notifications

# plesk bin notification --update -code ext-revisium-antivirus-notification-reseller_notification -send2admin false -send2reseller false -send2client false -send2email false

3. Imunify Client’s notifications

# plesk bin notification --update -code ext-revisium-antivirus-notification-client_notification -send2admin false -send2reseller false -send2client false -send2email false

Tweet
Share
Share
Email
0 Shares
Read the full article
Related Posts

Plesk with Centralized Database and Network File System

Read More »

Advanced Techniques for Building an Email List

Read More »

6 Things to Keep in Mind When Choosing an Ideal Server for Big Data Requirements

Read More »
Knowledge Base

Duplicate entries in Plesk WP Toolkit: nginx: [emerg] duplicate location “/fake-hotlink-stub”

Read More »

WP Toolkit Cloning hangs or stops after 60 seconds on a Plesk server

Read More »

Unable to manage files in Plesk File Manager or install WordPress via WP Toolkit: Disk quota exceeded

Read More »

Unable to clone WordPress instance in WP Toolkit : PHP Fatal error: Uncaught Error: Class “WP_Upgrader_Skin” not found

Read More »

Hosting Wiki

  • CLI
  • Linux
  • Joomla! Toolkit
  • WP Toolkit
  • WordPress
  • Plesk
  • SQL database
  • NoSQL Database
  • Email Autoresponder
  • Email Alias
  • Email Virus Protection
  • Email Forwarding
X-twitter Linkedin Youtube Reddit Github
  • Product
  • Login
  • Pricing
  • Editions
  • For Partners
  • Partner Program
  • Contributor Program
  • Affiliate Program
  • Plesk University
  • Company
  • Blog
  • Careers
  • Events
  • About Plesk
  • Our Brand
  • Resources
  • User and Admin guides
  • Help Center
  • Migrate to Plesk
  • Contact Us
  • Hosting Wiki
  • Forum
  • Legal
  • Legal
  • Privacy Policy
  • Imprint

© 2025 WebPros International GmbH

Part of the WebPros®  Family