NIH | National Cancer Institute | NCI Wiki  

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Wiki Markup
{scrollbar:icons=false}
h1. Question: How do I change the caArray admin e-mail address after installation?

*Topic*: caArray Usage

*Release*: Up to caArray 2.x

*Date entered*: 08/31/2009

h2. Details about the Question

Can I change the admin (caArray registration) e-mail address after installation? I had tried to configure it in the JBOSS of caArray, however it did not seem to work. 

h2. Answer

Yes, you can update the admin email address after caArray installation. The "To:" and "From:" email addresses can be updated in the MySQL DB. Here is the example SQL that will set both values:

{code}
Scrollbar
iconsfalse

Question: How do I change the caArray admin e-mail address after installation?

Topic: caArray Usage

Release: Up to caArray 2.x

Date entered: 08/31/2009

Details about the Question

Can I change the admin (caArray registration) e-mail address after installation? I had tried to configure it in the JBOSS of caArray, however it did not seem to work.

Answer

Yes, you can update the admin email address after caArray installation. The "To:" and "From:" email addresses can be updated in the MySQL DB. Here is the example SQL that will set both values:

Code Block
 update config_parameter set raw_value = 'sysadmin@mydomain.com' where param = 'REG_EMAIL_TO';
 update config_parameter set raw_value = 'noreply@mydomain.com' where param = 'EMAIL_FROM';

Have a comment?

Please leave your comment in the caArray End User Forum.

...

{code}

h2. Have a comment?

Please leave your comment in the [caArray End User Forum|https://cabig-kc.nci.nih.gov/Molecular/forums/viewtopic.php?f=6&t=577].

{scrollbar:icons=false}