Alle Skins für Roundcube Webmail befinden sich im Verzeichnis /usr/share/psa-roundcube/skins/
Um einen benutzerdefinierten Skin hinzuzufügen und anzuwenden, befolgen Sie die folgenden Anweisungen:
Melden Sie sich über SSH beim Plesk Server an
Erstellen Sie einen Ordner für den Skin unter /usr/share/psa-roundcube/skins/ directory, e.g. "meinskin"
<?php
// Copyright 1999-2015. Parallels IP Holdings GmbH. All Rights Reserved.
$config = array();
$config['db_dsnw'] = 'mysql://roundcube.../roundcubemail';
$config['skin'] = 'meinskin';
// replace Roundcube logo with this image
// specify an URL relative to the document root of this Roundcube installation
// an array can be used to specify different logos for specific template files, '*' for default logo
// for example array("*" => "/images/roundcube_logo.png", "messageprint" => "/images/roundcube_logo_print.png")
$config['skin_logo'] = 'https://meinlogo.ch';
// provide an URL where a user can get support for this Roundcube installation
// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
$config['support_url'] = 'https://meinsupport.ch';
// Name your service. This is displayed on the login screen and in the window title
$config['product_name'] = 'Produktname';