• 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.

Question Need to change a single roundcube redirect from webmail to something else

electricd7

New Pleskian
Hello,

I have an existing transfer customer that already has a redirect at webmail.domain.com which forwards their users to their Exchange OWA. I need to replicate that change in the new Plesk setup. This would be very straightfoward by simply creating a forward for this subdomain, except we have RoundCube for webmail installed so anything pointed towards webmail.domain.com automatically brings you to the roundcube login. I have been searching around and it appears that there are roundcube config files at /etc/nginx/plesk.conf.d/webmails/ for each of my vhosts. I would think I could edit these as they spell out the redirects as follows"

server {
listen 11.111.111.111:80;
server_name "webmail.domain.com";

client_max_body_size 128m;

location / {
proxy_pass http://11.111.111.111:7080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

So I did some searching and found that these files are generated by a file at "/usr/local/psa/admin/conf/templates/default/webmail/nginxWebmailPartial.php". I was able to change this file and reset the reference from "webmail" to "mywebmail". This works (after reboot), but the issue is that it affects EVERY domain on the server and I only want to make this change for a single domain. How can I go about this and change only a single domain instead of all?
 
Last edited:
Are you able to change the URL for their OWA?

If so, you could then setup this as an additional webmail platform in Plesk and assign it to their domain. You'll want to to disable the "Ability to change mail settings" for each subscription though so other users don't see it.

Definitely a hack-worthy suggestion.
 
Back
Top