• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved Mailserver in "Mail Client configuration" (Customer Backend) wrong

Julian Johannsen

Basic Pleskian
Dear Pleskians,

i have a issue with the configuration details in my customer backend.

Every customer can view the configuration details for every E-Mail-Address in the backend.

Now there is only the domain name, but the hostname is needed ... how can i change the output value?

Otherwise a FQDN is also possible, like "imap.domain.tld" or "smtp.domain.tld"

System: Plesk Onyx (current update / release) / Debian 8 x64

Thanks for your help
JJN

upload_2018-2-21_10-20-55.png
 
Dear Igor,

thank you for your fast reply.

Now i have a final question, what is the variable in this configuration file to set the hostname?

Code:
<?php echo $this->lmsg('fieldIncomingServer'); ?>: <?php echo $this->escape($this->domainName); ?><br>
<?php echo $this->lmsg('fieldOutgoingServer'); ?>: <?php echo $this->escape($this->domainName); ?><?php echo ($this->hasSmtpAuth) ? (' (' . $this->lmsg('smtpAuth') . ')') : ''; ?><br>

Can i use here hostName instead of domainName ? And is this change safe in front of Plesk updates?

Greetings,
JJN
 
No, you can't use any variables except domainName variable or direct IMAP/SMTP hostname of Plesk server there. Bug PPPM-4687 still not fixed. I have updated it with your case.
 
There is a small solution for this problem. TESTED

Code:
<?php
// Copyright 1999-2017. Parallels IP Holdings GmbH. All Rights Reserved.
?>
<?php echo $this->lmsg('fieldUsername'); ?>: <?php echo $this->escape($this->userName); ?><br>
<?php echo $this->lmsg('fieldIncomingServer'); ?>: <?php echo gethostname(); ?><br>
<?php echo $this->lmsg('fieldOutgoingServer'); ?>: <?php echo gethostname(); ?><?php echo ($this->hasSmtpAuth) ? (' (' . $this->lmsg('smtpAuth') . ')') : ''; ?><br>
<?php echo $this->lmsg('fieldIncomingProtocols'); ?>: <?php echo $this->escape($this->incomingProtocols); ?><br>
<?php echo $this->lmsg('fieldOutgoingProtocols'); ?>: SMTP<br>
 
Back
Top