• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Input How to Change the SOGo Mail Icon in Plesk Interface?

majdi draouil

New Pleskian
Server operating system version
22.04.4 LTS
Plesk version and microupdate number
Plesk Obsidian 18.0.65
Hello Plesk Community,

I’ve recently installed SOGo Mail on my Plesk server, and everything is functioning well. However, I’d like to customize the SOGo Mail icon displayed in the Plesk interface to better align with the branding of my hosting environment.

I’ve searched the documentation and forums but haven’t found a clear guide on how to change or replace the default SOGo Mail icon in Plesk.

Here are some points I’d like to clarify:

  1. Where is the icon file for SOGo Mail located in the Plesk directory?
  2. Is it safe to manually replace this file with a custom icon, and if so, what format and size should the icon be?
  3. Are there alternative methods (e.g., using extensions or configuration files) to change the icon?
I appreciate any guidance, step-by-step instructions, or references to documentation that could help.
 
Hello, @majdi draouil . I am not quite sure I was able to understand which icon exactly you are referring to. If you are referring to the one displayed on the Webmail login page, it is located at:

/usr/share/GNUstep/SOGo/WebServerResources/img/sogo-full.svg

The dimensions of the original logo are width 640 heigh 350. What you can do is rename the current logo to something like sogo-full.svg_old and upload your desired SVG image into that directory under the name of 'sogo-full.svg'. I hope that helps. If that's not the image you are asking for, please confirm which one we are talking about.
 
Unfortunately, this particular directory cannot be accessed via the GUI. You will need to download/move the desired file the command line.
 
What you can do is upload the SVG file from File Manager under one of your domain names.

  1. Then move the file in the Sogo directory:

    mv /var/www/vhosts/example.com/httpdocs/your-image-name /usr/share/GNUstep/SOGo/WebServerResources/img/

    Pleases make sure to adjust /var/www/vhosts/example.com/httpdocs/your-image-name with the correct path of the directory you uploaded the image at. Unless you have custom domain docroot, you should only replace example.com and your-image-name with the corresponding values.
  2. Navigate to the Sogo directory:

    cd /usr/share/GNUstep/SOGo/WebServerResources/img/
  3. Rename the original image:

    mv sogo-full.svg sogo-full.svg_original
  4. Rename the your image:

    mv your-image-name sogo-full.svg
 
Back
Top