Andrew Fletcher published: 20 January 2021 1 minute read
Working through migration on a new Centos 7 server, the default mailbox size is 100MB. Yes a well organised account doesn't need more than 100MB. However, how to resolve this size for the outlier people with big mailboxes.
In one of our domains being migrated contains an account with 300MB plus and on another domain 400MB plus. To change the default size from 100MB run through shell the following command
plesk bin subscription_settings --update example.com -mbox_quota 400M
That's it... change the example.com to your domain and 400M to meet your requirements.
For a few more details read the How to manage the default mailbox size in Plesk with Web Admin edition?
Related articles
Andrew Fletcher
•
07 Jan 2025
Managing DDEV environment troubleshooting and setting up multiple Drupal projects
DDEV has become a popular tool for local web development, offering a streamlined approach to managing Docker-based environments. However, setting up and managing DDEV projects, particularly with the latest versions of Docker Desktop, can present challenges. This article guides you through resolving...
Andrew Fletcher
•
28 Dec 2024
Optimising file transfers by improving efficiency from cp to rsync
Transferring files between development and production environments is a critical task in the deployment process. However, I continue to come across multiple approaches that scale from awesome automation using pipelines to the basic of direct command line entry. Where the basic approaches rely on...
Andrew Fletcher
•
13 Sep 2024
Enforcing HTTPS on an Nginx server: a step-by-step guide
In today's security-conscious world, enforcing HTTPS on your web applications is no longer optional—it's essential. Whether you're dealing with government reports or routine security audits, failing to enforce HTTPS can trigger warnings that leave you scrambling for a solution.In this article, I’ll...