Hi,
centos7
Plesk onyx
in Plesk 12.5 i created in /templates/custom/roundcube.php another alias
i edited
ServerAlias roundcube.webmail.*
to
ServerAlias roundcube.webmail.* mailcc.serverdomain.com
and roundcube was reachable under mailcc.serverdomain.com
but now in onyx the roundcube.php is different and there is no line i can edit ServerAlias
i found in /usr/local/psa/admin/conf/templates/default/webmail/webmail.php
copy this to /usr/local/psa/admin/conf/templates/custom/webmail/webmail.php
i changed to
but this doesnt work.
Where is my error ?
centos7
Plesk onyx
in Plesk 12.5 i created in /templates/custom/roundcube.php another alias
i edited
ServerAlias roundcube.webmail.*
to
ServerAlias roundcube.webmail.* mailcc.serverdomain.com
and roundcube was reachable under mailcc.serverdomain.com
but now in onyx the roundcube.php is different and there is no line i can edit ServerAlias
i found in /usr/local/psa/admin/conf/templates/default/webmail/webmail.php
copy this to /usr/local/psa/admin/conf/templates/custom/webmail/webmail.php
Code:
ServerName "webmail.<?php echo $VAR->domain->asciiName ?>"
<?php foreach ($VAR->domain->mailAliases as $alias): ?>
ServerAlias "webmail.<?php echo $alias->asciiName ?>"
<?php endforeach; ?>
i changed to
Code:
ServerName "webmail.<?php echo $VAR->domain->asciiName ?>"
<?php foreach ($VAR->domain->mailAliases as $alias): ?>
ServerAlias "webmail.<?php echo $alias->asciiName ?>" mailcc.serverdomain.com
<?php endforeach; ?>
but this doesnt work.
Where is my error ?