Changing link in CUC Notification email?

Does anyone know how to change the link for the notification email (SMTP) and put in a different URL to access the server?
The customer would like to have their external DNS name on the email for the users so they can click on it to get to the PCA web page.
Right now, it has the following for the link in the message body:
To access the message go to https://ciscovm1/ciscopca.

With CUCX 7.1 go to
System admin page, advanced, connection administration and change parameter below.
Host Name/Address for Link to Cisco PCA in Notification Messages

Similar Messages

  • Jsessionid in notification email

    Hi,
    I need to send some URL links in the notification email which goes to the task assignee. When the email reaches the assignee, the jsessionID is unwantedly present in the URL link.
    How do I disable the jsessionID? When we click on the URL link in the email, we need to remove the jsessionID on the browser address bar to make the link work.
    Thanks in advance.
    Regards,
    Anand

    In PS3, this has been fixed - JsessionId is disabled in urls inside the email notification.
    If you want to fix this without moving to PS3, you will have to write a custom filter in your taskform app. Add entries in your web.xml for the filter
    <filter>
    <filter-name>DisableJlSessionIdFilter</filter-name>
    <filter-class><CUSTOM-PACKAGE-NAME>.DisableJSessionIdFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>DisableJSessionIdFilter</filter-name>
    <url-pattern>/faces/*</url-pattern>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    The doFilter() method of your custom filter should look like -
    public void doFilter(
    ServletRequest request,
    ServletResponse response,
    FilterChain chain)
    throws IOException, ServletException
    if (!(request instanceof HttpServletRequest))
    chain.doFilter(request, response);
    return;
    HttpServletRequest httpRequest = (HttpServletRequest) request;
    HttpServletResponse httpResponse = (HttpServletResponse) response;
    if (httpRequest.isRequestedSessionIdFromURL())
    HttpSession session = httpRequest.getSession();
    if (session != null) session.invalidate();
    HttpServletResponseWrapper wrappedResponse
    = new HttpServletResponseWrapper(httpResponse)
    public String encodeRedirectUrl(String url) { return url; }
    public String encodeRedirectURL(String url) { return url; }
    public String encodeUrl(String url) { return url; }
    public String encodeURL(String url) { return url; }
    chain.doFilter(request, wrappedResponse);
    }

  • How to include SAP login link in the workflow notification email ?

    Hi,
    How to provide a link in notification email triggered thru workflow to outlook   ??
    This link should take the user to correct SAP system logon screen.....
    kindly help ! urgent !!
    thank you
    R

    Hi Rita,
    U can use RSWUWFML2 ABAP report.
    check [http://www.mortenhjorthnielsen.dk/BPM/RSWUWFML2/RSWUWFML2.html|http://www.mortenhjorthnielsen.dk/BPM/RSWUWFML2/RSWUWFML2.html]
    Regards
    Sagar S

  • Notification Email should be triggered when hit the Apply changes?

    Hi All,
    Am creating a request form similiar to a remedy form,when ever the user create a new request and submit the request.Notification email will be sent to the user and the admin.
    Here when the admin ppl rejects the request,a notification email triggered to the user like request has been rejected .
    I have three radio buttons in the Form
    1.Submitted(default).
    2.Rejected.
    3.Accepted.
    When the admin edit the request and select rejected radio button,and apply changes ,a notification email should be triggered to the user.
    Now i have a after submit process for edit the ,which will be triggered when ever the user hit the apply changes button and it will send notification to both user and admin.
    How to achieve the notification email that should be triggered when the admin rejects the request and submit the form???
    am using apex version 4.0
    when the Admin will select the reject radio button and hit tha apply changes then the notification email should be sent to the user!!
    Always appreciate your help!!!
    Thanks & Regards,
    Ramya.

    Ramya wrote:
    Hi Gurujothi,
    Thanks for your response!.
    I can able to send email now.Thing is i need to send an email like when the admin rejects the request.
    For eg.
    1.Admin opened the request and select the Reject radio button and clicking Applychanges button then the email notification will be sent to the user like,
    Your request has been Rejected.
    2.If the Admin selects the radio button accept radio button and clicked apply changes,start processing about the request then the Email notification will be sent to the user like ,
    Your request has been modified .Request will be notified by the admin.(Working now)
    DO i need to create two separate process for the email notification like
    one is for all the modifications that the user/admin will do in the form ,once the record is created and another process is for Rejection purpose of the Form.But only one Apply changes button is there in the Form.You don't need two page process, In one single process you can acces the page item session values using *:YOUR_ITEM_NAME* bind variable syntax or V function like this V('YOUR_ITEM_NAME')
    So in your PL/SQL code you can easily prepare the email body based on your radio group item's value
    declare
    l_body varchar2(4000);
    begin
    IF :Px_MY_RADIO_GROUP ='R' THEN
      l_body := build your conditional email body for rejected
    ELSIF  :Px_MY_RADIO_GROUP ='A' THEN
      l_body := build your conditional email body approved
    END IF;
    apex_mail.send(
            p_to       => '[email protected]',   -- change to your email address
            p_from     => '[email protected]', -- change to a real senders email address
            p_body     => l_body,
            p_subj     => 'APEX_MAIL Package - Plain Text message');
    end;
    See this http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/concept_ses_val.htm#HTMDB03012

  • Change subject of notification email

    Hi experts,
    I want to change the subject of notofication emails. Unfortunatelly there is no entry in the xml templates. I guess it is hardcoded in any jar. Does anyone know the jar which contains the java class / or jsp which I need to change ?
    Regards
    Flo

    Hi,
    seems to me "nearly" impossible (everything can be done):
    I have found in NotificationService implementation sending of the notifications:
    for(; recipientIterator.hasNext(); doSend(recipient, channel, notification.getDescription(recipient.getLocale()), from, notification.getContent(recipient, channel, m_Properties)))
    what makes me think, that the subject is:
    notification.getDescription(recipient.getLocale())
    Now for the standard subscription this notification is used com.sapportals.wcm.repository.service.subscription.wcm.SubscriptionNotification, where the getDescription method does:
    return super.getDescription(locale, m_Subscription.getName());
    super is AbstractNotification:
    return m_Res.getString("Notification." + m_ID, locale, obj1);
    m_Res is ResourceBundle used I have written before.
    So you can see, that the name of the subscription is given as object to the resourceBundle - if you could change the implementation of the getDescription of the com.sapportals.wcm.repository.service.subscription.wcm.SubscriptionNotification to something like this:
    return super.getDescription(locale, resource.getDisplayName(true));
    you would have the name of the resource in the subject line of the email.
    But this seems to me a bit hardcore solution.
    Romano

  • I need to change my security questions. But it's sending the link to an old email. Suggestions?

    I need to change my security questions. But it's sending the link to an old email. Suggestions?

    You won't be able to change your rescue email address until you can answer your questions, you will need to contact iTunes Support / Apple in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down this page to update your rescue email address for potential future use : http://support.apple.com/kb/HT5312

  • BHOLD:Error on Creating Campaigns and Changing Notification Emails

    Hi,
    While creating Campaigns and Changing the notification emails i am getting a popup box with message"error on saving settings".
    I have tried every possibility but still getting the same error box.This error is not also being generated in Event Viewer.
    Has anyone faced such error.If Yes Please let me know the reasons .Its urgent .
    shakti

    Hi there,
    I am unable reproduce the error you are reporting with EA 1.0 on my Mac.
    To clear your Edge preferences, delete this folder: /Users/username/Library/Preferences/Adobe/Edge Animate/1.0.0
    Let us know if clearing the prefs fixes it. If not, please provide more info if there are any other steps to reproduce the error, as well as which version of MacOS X and your EA version (in the about box).
    Also, I'm not sure if your plug-in is causing the problem (especially if it happens with a new project and you haven't referenced the plug-in in the HTML file) - but can you provide more information about the plug-in you're using?
    Thanks,
    Joe

  • So i forgot my security questions. I sent the reset link to my rescue email and i don't know where to go from there. Cause theres no link to change them.

    So i forgot my security questions. I sent the reset link to my rescue email and i don't know where to go from there. Cause theres no link to change them.

    If the email hasn't arrived after a few hours and isn't in a spam filter, you need to ask Apple to reset your security questions; this can be done by phoning AppleCare and asking for the Account Security team, or clicking here and picking a method, or if your country isn't listed in either article, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (106387)

  • GRC Access Control 5.3 - Role Reaffirm Notification Email

    Hi Experts,
    We have GRC 5.3 system and we want to change the content of Role Reaffirm notification email.
    Is there any way to change the default email text?
    We want to add few additional lines and CUP link in the email notification.
    Thanks,
    Rajendra

    Hi Alpesh,
    I found the entry in table VIRSA_AE_MESSAGE which is the same message as in the email notification.
    I changed the value for field MSGDESC in our test system but the new text is not reflecting in email.
    The email subject is coming as- Here are the roles that need to be reaffirmed
    The body of the email is as below-
    Here are the roles that need to be reaffirmed
    Z_FI_MANAGER
    Z_ALL_HR_DISPLAY_ALL
    I updated the table at database level.
    Is there anything else needs to be done?
    Also we are using UAR as well as Role Reaffirm (don't know why), is there any oss note which says that UAR can be used instead of Role Reaffirm?
    Thanks,
    Rajendra

  • Hard coded subject in a KM notification email

    Hello Experts,
    We are using EP 7.0.
    I am trying to modify the subscription emails for KM folders.
    I know for sure we can not change the Subject line for the notification using the xml and xsl. We have to modify the java class for it. Can you please let me know which Java class I need to modify. All I want to do is have a static text for the in the subject of the email.
    Thanks,
    Raj

    Hi,
    this option is available since SPS17. So you don't necessarily need EHP1.
    If you need special characters inside you email the email subject is kind of u201Cspecialu201D:
    u2022     The content of the email can be UTF-8 encoded and will not cause any problems
    u2022     The email subject is defined in the files named u201CSUBSCRIPTIONBUNDLED_SUBJECT_.xmlu201D
    o     The xml file has to be ANSI (US-ASCII 7-bit) encoded
    o     To support special characters you need to have the translations UTF-8 encoded
    o     So take the UTF-8 string and encode it base64 (e.g.: http://www.nowan.hu/base64encoder.aspx)
    o     Now place u201C=?UTF-8?B?u201D before the encoded string and add u201C?=u201D after the encoded string (see full example below)
    Example XML Subject: "Neue Dokumente auf Metro Link verfügbar"
    <notification>
      <title>
        <textspan>=?UTF-8?B?TmV1ZSBEb2t1bWVudGUgYXVmIE1ldHJvIExpbmsgdmVyZsO8Z2Jhcg==?=</textspan>
      </title>
    </notification>
    Edited by: Marius Quadflieg on Sep 29, 2009 9:43 AM

  • Remove approve reject link in the notification

    Hi,
    I want to remove the approve and reject link in the notification. I only want the users to log on and approve and reject. The email has to be HTML mail. How do you hide or remove the approve and reject link ONLY for my wf notifications and not for everyone else's.
    Thanks any help would be appreciated!

    Hi,
    You cannot change the functionality for only one notification or process. If you want to send summary emails, then you need to set either the global preference or the user preferences. This impacts all notifications in the system for that particular user.
    There is no other way to remove the links from an email, but leave them in the notification.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • TS4002 I changed my password on my email account because my email was hacked. I changed it in my iPhone and iPad also. I have access to my email account, I receive emails and can open them and read them. But I can't reply to any. It goes to my outbox.

    Why can't I send an email from my iPhone or iPad since I changed my password because my email account was hacked?

    Hi Teresazubi,
    Thanks for visiting Apple Support Communities.
    If you're not able to send from an iCloud email address on your iPhone, be sure to follow these troubleshooting steps from the article above (iCloud: Troubleshooting iCloud Mail):
    Make sure that Mail is turned on in Settings > iCloud.
    Make sure that Push is turned on for your device in Settings > Mail, Contacts, and Calendars > Fetch New Data. Then send an email to your account to verify that Push is working correctly.
    Make sure that Push is turned on for your iCloud account in Settings > Mail, Contacts, and Calendars > Fetch New Data. If you're using iOS 6, tap Advanced. Then Tap your iCloud account and make sure that Push is turned on. If you have multiple iCloud Mail accounts set up on your device, Push can be used only withone account at a time. Make sure that Push is turned on for your primary iCloud Mail account.
    Turn your device off and back on.
    If the issue persists, turn off each of the settings in steps 4, 5, and 6 above, then turn them back on. If that does not help, follow these instructions to delete the iCloud account from your device, then add the account back:
    Go to Settings > Mail, Contacts, and Calendars.
    Tap your iCloud account.
    Tap Delete Account. If you store Contacts, Calendar, or Bookmarks data in iCloud, you will be given the option to keep that data.
    On the Mail, Contacts, and Calendars screen, tap Add Account, then tap iCloud to begin setting up your iCloud account again. If data from your device is stored in iCloud, you will be given the option to merge that data with the data on your device.
    If you have an email account from a different provider, see the troubleshooting at this link:
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    All the best,
    Jeremy

  • Hello, I want to perform a simple task. I have two Adobe ID accounts linked to two different email addresses. One account i do not want to use anymore but it is linked to my main email account. the account i do not want anymore is still in its free stage

    Hello, I want to perform a simple task.I have two Adobe ID accounts linked to two different email addresses. One account i do not want to use anymore but it is linked to my main email account. the account i do not want anymore is still in its free stage and i have not purchased anything with it. My other Adobe ID account is linked to an email i rarely use and don't particularly want to use. i have tried changing the linked email account to my regular one i use. But it obviously does not allow me because of it already being linked to my other non used obsolete Adobe ID account. Is there any solution to this?? Please help.

    Adobe contact information - http://helpx.adobe.com/contact.html may help

  • Can't change my username to my email address

    I am experiencing a problem that looks fairly unique. I've searched all around and haven't found any similar cases.
    I have an iTunes account with username albedoa associated with a verified email address which I will refer to as email. I know that iCloud will require a username in email format, so I wanted to switch my username to email. In my account settings, I saw this option:
    Make your Apple ID and primary email address one and the same.
    Your Apple ID will be easier to remember, and your account will be easier to access and manage.
    Change your Apple ID and primary email address to:
    email
    I clicked the Submit button, and nothing happened. I tried it in both Chrome and Safari, but each time the page would reload and my username would still be shown as albedoa. If I tried to edit the username directly to reflect email, I received the following error:
    This email address is already in use or you may already have an Apple ID associated with this email address. Please try again or sign in using your existing Apple ID.
    So I made a new account with the username email and associated it to the email address email (the same as the other account). However, I cannot install my purchased apps using that account because they were purchased using my other account. What is going on here? How am I to retain my purchases when iCloud is activated? I don't have a MobileMe account.
    Thanks!

    OK I figured out a workaround. Here are the steps:
    1. Go to iforgot.apple.com and retrieve/reset the password for the 'email address' account that you want ([email protected] let's say).
    2. Once you have the password for the 'email address' account login to appleid.apple.com using the email address login.
    3. Change the username/primary email to another email address that you have access too that is different from the email you want your primary AppleID to be.
    4. Verify the change from step 3 by clicking on the link in the confirmation email.
    5. Login to appleid.apple.com using your primary, non-email address account and click 'edit' next to the Apple ID field and change it to match the email you want.
    6. Click Save Changes at the bottom.

  • I have an iPhone 4 and an iPod 4th gen linked to the same email address and apple ID. I am trying to set up a new email address for the iPod so a family member can use it but it doesn't want to recognize the new email account. Where am I going wrong?

    I have an iPhone 4 and a 4th gen iPod linked to the same email address and apple ID. I am trying to change the email address on the iPod so a family member can use it but when I do it says it doesn't recognize the email address. Where am I going wrong ? I just want them to be able to iMessage and email without having to use my email address.

    The procedure is Settings>Messages>Send & Receive at>You can be reached by iMessages at>Add another email address. The email address has to be a valid working email address, obviously. Apple should verify the email address and you have to go to the inbox of that email account, read the verification email from Apple and follow the inductions in the email in order to complete the verification. Then you go back to the settings, uncheck your email address and check the new email address to be used as the contact email address.

Maybe you are looking for

  • Is there any way to download a report by web services or know its content?

    Hi everyone, I need to know, maybe, using web services or anyway I can if a report will show some result when someone executes it, or if it just will show no results. I hope that there is any way to know the number of lines that will be returned from

  • Vendors report by account group

    Hi Friends, I have a list of vendors in an spreadsheet. I want to generate a report with the vendor number, credit, debit, balance and the account group. I tried the SAP defined reports like ( S_ALR_87012082) i can get the vendor, credit, debit, but

  • Problem in storing korean Characters in Oracle 10g

    Hi All, Below are the current setup. OS : Windows Oracle Version : 10G Database Character Set : AL32UTF8 NLS_LANG = KOREAN_KOREA.KO16MSWIN949 (in windows) I can able to see Korean characters in MS Word & MS Excel. I copied some of the korean characte

  • Won't sleep, restarts instead

    I have a Macbook Pro bought this year in August. As of a few days ago, when I choose "sleep" from the apple menu, it restarts instead. If I close the lid, it shuts down. Any ideas? I already tried resetting the PRAM/SMC/NVRAM.

  • Blank Space in Bookmark

    Hello, I am hoping someone has come across this issue previously. If not, I have replication steps that seem to be pretty solid. The issue several users in our organization reported, and I reproduced, is that a blank space is inserted into a bookmark