- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
03-19-2018 12:22 PM
Hi all,
I would like to change the URL that is written in the guest sponsorship emails to reflect the proper FQDN. Currently it points directly to one of the servers (not the cluster IP) with an incorrect domain for the installed certificate.
When I checked on it, it's a big string of variables and whatnot.
<a href="{'guest_register_confirm.php'|NwaGetAppUrl:false:$u.require_auth}?{if $u.source}gsr_id={$u.source|rawurlencode}&{/if}token={$u.register_token|rawurlencode}" target="_blank">
Is there somewhere where I can tell Guest to use the correct FQDN?
Thanks,
--Ben
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator
03-20-2018 04:50 AM
Hi,
You can hard code the correct FQDN, just replace "{'guest_register_confirm.php'|NwaGetAppUrl:false:$u.require_auth}" to "https://<clearpass-fqdn>/guest/guest_register_confirm.php".
Ex:
<a href="https://<clearpass-fqdn>/guest/guest_register_confirm.php?{if $u.source}gsr_id={$u.source|rawurlencode}&{/if}token={$u.register_token|rawurlencode}" target="_blank">
Thank you,
Saravanan Rajagopal
**Did something you read in the Community solve a problem for you? If so, click "Accept as Solution" in the post.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator
Re: Change Guest Receipt/Sponsor FQDN
Re: Change Guest Receipt/Sponsor FQDN
03-20-2018 07:45 AM
Thank you, that did work fine. I thought there might be a variable stored somewhere that I could populate with the correct information.
This works fine though!
Thanks again,
--Ben
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator