diff --git a/doc/sphinx-guides/source/style/patterns.rst b/doc/sphinx-guides/source/style/patterns.rst index e0ce5eb8581..80792bbdf68 100644 --- a/doc/sphinx-guides/source/style/patterns.rst +++ b/doc/sphinx-guides/source/style/patterns.rst @@ -519,7 +519,7 @@ For our help/information, success, warning, and error message blocks we use a cu  Success! – The metadata for this dataset has been updated.
-  Error – The username, email address, or password you entered is invalid. Need assistance accessing your account? If you believe this is an error, please contact Dataverse Support for assistance. +  Error – The username, email address, or password you entered is invalid. Need assistance accessing your account? If you believe this is an error, please contact Root Support for assistance.
diff --git a/doc/sphinx-guides/source/user/account.rst b/doc/sphinx-guides/source/user/account.rst index 9e5c9565d1f..5c704b90157 100755 --- a/doc/sphinx-guides/source/user/account.rst +++ b/doc/sphinx-guides/source/user/account.rst @@ -99,7 +99,7 @@ If you already have a Dataverse account associated with the Username/Email log i Convert your Dataverse account away from your Institutional Log In ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -If you are leaving your institution and need to convert your Dataverse account to the Dataverse Username/Email log in option, you will need to contact support for the Dataverse installation you are using. On your account page, there is a link for "Dataverse Support" that will open the popup form to contact support for assistance. +If you are leaving your institution and need to convert your Dataverse account to the Dataverse Username/Email log in option, you will need to contact support for the Dataverse installation you are using. On your account page, there is a link that will open a popup form to contact support for assistance. ORCID Log In ~~~~~~~~~~~~~ @@ -132,7 +132,7 @@ If you already have a Dataverse account associated with the Username/Email log i Convert your Dataverse account away from ORCID for log in ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -If you don't want to log in to Dataverse using ORCID any more, you will want to convert your Dataverse account to the Dataverse Username/Email log in option. To do this, you will need to contact support for the Dataverse installation you are using. On your account page, there is a link for "Dataverse Support" that will open the popup form to contact support for assistance. +If you don't want to log in to Dataverse using ORCID any more, you will want to convert your Dataverse account to the Dataverse Username/Email log in option. To do this, you will need to contact support for the Dataverse installation you are using. On your account page, there is a link that will open a popup form to contact support for assistance. GitHub and Google Log In ~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/scripts/api/setup-optional-harvard.sh b/scripts/api/setup-optional-harvard.sh index 4bcae4c8685..c1815998e6e 100755 --- a/scripts/api/setup-optional-harvard.sh +++ b/scripts/api/setup-optional-harvard.sh @@ -21,7 +21,7 @@ echo "- Enabling Geoconnect" curl -s -X PUT -d true "$SERVER/admin/settings/:GeoconnectCreateEditMaps" curl -s -X PUT -d true "$SERVER/admin/settings/:GeoconnectViewMaps" echo "- Setting system email" -curl -X PUT -d "Dataverse Support " http://localhost:8080/api/admin/settings/:SystemEmail +curl -X PUT -d "Harvard Dataverse Support " http://localhost:8080/api/admin/settings/:SystemEmail curl -X PUT -d ", The President & Fellows of Harvard College" http://localhost:8080/api/admin/settings/:FooterCopyright echo "- Setting up the Harvard Shibboleth institutional group" curl -s -X POST -H 'Content-type:application/json' --upload-file data/shibGroupHarvard.json "$SERVER/admin/groups/shib?key=$adminKey" diff --git a/src/main/webapp/contactFormFragment.xhtml b/src/main/webapp/contactFormFragment.xhtml index ce546a8dcb7..33565e21e8f 100644 --- a/src/main/webapp/contactFormFragment.xhtml +++ b/src/main/webapp/contactFormFragment.xhtml @@ -8,7 +8,7 @@ - +
diff --git a/src/main/webapp/resources/iqbs/messages.xhtml b/src/main/webapp/resources/iqbs/messages.xhtml index e795f5ddd0f..c8b72ecfe15 100644 --- a/src/main/webapp/resources/iqbs/messages.xhtml +++ b/src/main/webapp/resources/iqbs/messages.xhtml @@ -21,9 +21,6 @@
- -  #{bundle['messages.error']} – @@ -69,8 +66,7 @@  #{msg.summary}  - - Please contact Dataverse Support for assistance. + Please contact #{settingsWrapper.supportTeamName} for assistance. Date/Time: diff --git a/src/test/java/edu/harvard/iq/dataverse/util/MailUtilTest.java b/src/test/java/edu/harvard/iq/dataverse/util/MailUtilTest.java index 9cc643103b7..b2995e2f2a6 100644 --- a/src/test/java/edu/harvard/iq/dataverse/util/MailUtilTest.java +++ b/src/test/java/edu/harvard/iq/dataverse/util/MailUtilTest.java @@ -18,16 +18,16 @@ public void setUp() { @Test public void testParseSystemAddress() { - assertEquals("support@dataverse.org", MailUtil.parseSystemAddress("support@dataverse.org").getAddress()); - assertEquals("support@dataverse.org", MailUtil.parseSystemAddress("Dataverse Support ").getAddress()); - assertEquals("Dataverse Support", MailUtil.parseSystemAddress("Dataverse Support ").getPersonal()); - assertEquals("support@dataverse.org", MailUtil.parseSystemAddress("\"Dataverse Support\" ").getAddress()); - assertEquals("Dataverse Support", MailUtil.parseSystemAddress("\"Dataverse Support\" ").getPersonal()); + assertEquals("support@librascholar.edu", MailUtil.parseSystemAddress("support@librascholar.edu").getAddress()); + assertEquals("support@librascholar.edu", MailUtil.parseSystemAddress("LibraScholar Support Team ").getAddress()); + assertEquals("LibraScholar Support Team", MailUtil.parseSystemAddress("LibraScholar Support Team ").getPersonal()); + assertEquals("support@librascholar.edu", MailUtil.parseSystemAddress("\"LibraScholar Support Team\" ").getAddress()); + assertEquals("LibraScholar Support Team", MailUtil.parseSystemAddress("\"LibraScholar Support Team\" ").getPersonal()); assertEquals(null, MailUtil.parseSystemAddress(null)); assertEquals(null, MailUtil.parseSystemAddress("")); - assertEquals(null, MailUtil.parseSystemAddress("Dataverse Support support@dataverse.org")); - assertEquals(null, MailUtil.parseSystemAddress("\"Dataverse Support ")); - assertEquals(null, MailUtil.parseSystemAddress("support1@dataverse.org, support2@dataverse.org")); + assertEquals(null, MailUtil.parseSystemAddress("LibraScholar Support Team support@librascholar.edu")); + assertEquals(null, MailUtil.parseSystemAddress("\"LibraScholar Support Team ")); + assertEquals(null, MailUtil.parseSystemAddress("support1@dataverse.org, support@librascholar.edu")); } @Test