• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

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