Skip to main content

How to back up your email accounts via cPanel’s File Manager

 

How to back up your email accounts via cPanel’s File Manager

Backing up your email accounts (and messages) via cPanel File Manager is a wise way of preserving your email accounts if you want to archive them, restore them, or take extra precautions before migrating your account. 

You can still create a full (or partial) cPanel backup using the Backup tool within cPanel, but often there are situations where you only need to back up email-related data. This tutorial walks you through creating a backup of email data onto your local computer.

Backing up your email accounts

To back up your email accounts using the cPanel File Manager, follow these steps:

  1. Log in to cPanel.
    If you do not know how to log in to your cPanel account, please see this article.
  2. Open the File Manager:
    • If you are using the Jupiter theme, on the Tools page, in the Files section, click File Manager:

      cPanel - File Manager icon (Jupiter theme)

    • If you are using the Paper Lantern theme, in the FILES section of the cPanel home page, click File Manager:

      cPanel - File Manager icon

  3. In the home directory of your hosting account (which typically is labeled as /home/(your username)/) find the Mail folder.

    Mail directory within File Manager

  4. Within the Mail folder, find a folder labeled after your domain name. This will be the file we will compress and backup.

    domain mail folder

  5. Next, right-click the domain mail folder. Of the several options that appear, click on Compress:

    Compress file option

  6. You will then choose which format you would like your files to be compressed in. The following formats are available to choose from:

    compression file options
    The table below gives a summary of the four compression types and their usage:

    Compression TypeAcronymUsage
    Zip Archive.zipThis type of compression offers maximum compatibility, standard compression, and is typically used by Windows or macOS users.
    Tar Archive.tarThe backup file will not be compressed, and the data is placed into an archive.
    GZiped Tar Archive.tar.gzFiles are compressed using the gzip algorithm (which has nice compression ratios,) and this type of compression is typically used by Linux users.
    Bzip2ed Tar Archive.tar.bz2Files are compressed using the bzip2 algorithm. This type of compression offers better compression than GZiped Tar (.tar.gz) but the algorithm is slower.
  7. Select the compression type that best suits your needs, and click Compress File(s).
  8. Your new compressed file will now be listed as one of the available files in that section of File Manager’s directory. Right-click the compressed file and click Download. This will download the compressed file onto your local machine. It is highly advisable to save this file to both your local computer and/or several machines.

    Download compressed file within File Manager

  9. To save space on your hosting account, it highly advised that you delete the compressed file within File Manager. Simply right-click the compressed file and click Delete to remove it.

  10. You have now created a backup of your email (and messages.)

  11. To save your entire mail directory, follow the same steps as above, but simply click on Mail in File Manager and not the mail for an individual domain.

Comments

Popular posts from this blog

Two simple ways to block internet browsing using Windows Firewall.

  Here are two simple ways to block internet browsing using Windows Firewall. Choose Method A (Block all browsers) or Method B (Block specific browsers like Chrome/Edge/Firefox). ✅ METHOD A — BLOCK ALL INTERNET BROWSING (Recommended) This blocks ALL internet access for ALL applications except those you allow. Steps: Press Windows + R Type: wf.msc Press Enter On the left, click Outbound Rules On the right, click New Rule… Select Custom → Next Under Program , choose All programs → Next Under Protocol and Ports , click Next Under Scope , click Next Under Action , select: ✔ Block the connection Click Next Under Profile , select: ✔ Domain ✔ Private ✔ Public Click Next Name the rule: Block Internet Browsing Click Finish ✔ This will instantly disable ALL internet access. 🟨 OPTIONAL: Allow exceptions If you want to allow EXCEPTIONS (example: allow only MT5, or allow Windows Update): Create a New Outbound Rule Select Program Browse to the app...

Block Browser Using Software Restriction Policy

Here are several alternative ways to block web browsers in Windows (Chrome, Edge, Firefox, etc.) without using the firewall method you mentioned earlier . Choose the method that best fits your need. 1 . Block Browser Using AppLocker (Windows Pro/Enterprise) Blocks the browser application from opening completely. Steps: Press Win + R , type: secpol.msc Go to: Application Control Policies → AppLocker → Executable Rules Right-click → Create New Rule Select: Deny User = Standard user (not Admin) Choose Path : Chrome: C:\Program Files\Google\Chrome\Application\chrome.exe Edge: C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe Firefox: C:\Program Files\Mozilla Firefox\firefox.exe Apply. Result: User cannot open the browser. Admin still can. 2 . Block Browser Using Software Restriction Policy For Windows Pro. Steps: Press Win + R , type: gpedit.msc Navigate to: Computer Configuration → Windows Settings → Security Settings → Soft...

How to connect your Website domain name to a Cloud VPS hosting environment running XAMPP

To connect your Website domain name to a Cloud VPS hosting environment running XAMPP, follow these steps: Obtain Your VPS IP Address : Log in to your Contabo account and navigate to your VPS management section to find your server's public IP address. Configure Your Domain's DNS Settings : Access your domain registrar's control panel. Locate the DNS management section. Create an 'A' record pointing your domain (e.g., yourdomain.com ) to your VPS's public IP address. If you want ' www.yourdomain.com ' to also point to your VPS, add a 'CNAME' record for 'www' pointing to 'yourdomain.com'. Set Up Virtual Hosts in XAMPP : On your VPS, open the httpd-vhosts.conf file located at C:\xampp\apache\conf\extra\httpd-vhosts.conf . Add the following configuration, replacing placeholders with your actual domain and directory paths: <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/xampp/ht...