diff --git a/biocode-server/src/com/biomatters/plugins/biocode/server/Info.java b/biocode-server/src/com/biomatters/plugins/biocode/server/Info.java index 6901d068e..9d6f7d246 100644 --- a/biocode-server/src/com/biomatters/plugins/biocode/server/Info.java +++ b/biocode-server/src/com/biomatters/plugins/biocode/server/Info.java @@ -77,7 +77,7 @@ public String getErrors() { if(errors != null) { return "

The server configuration file is located at: " + LIMSInitializationListener.getPropertiesFile().getAbsolutePath() + "

" + - "

Please report any errors to support@mooreabiocode.org

" + + "

Please report any errors to geome.help@gmail.com

" + "

" + errors + "

"; } return ""; diff --git a/biocode-server/web/partials/about.html b/biocode-server/web/partials/about.html index ec1364b13..7d3be285b 100644 --- a/biocode-server/web/partials/about.html +++ b/biocode-server/web/partials/about.html @@ -10,7 +10,7 @@ A user community, and technical support is available from http://connect.barcodeoflife.org/group/lims Here, you can engage with the wider community, get help from experienced users, and make suggestions about how to improve the software. If you have and questions or suggestions that you don't want to post to the community, you can email - support@mooreabiocode.org + geome.help@gmail.com

\ No newline at end of file diff --git a/development.md b/development.md index 536b45af0..003961aac 100644 --- a/development.md +++ b/development.md @@ -53,7 +53,7 @@ depends on some Geneious core classes and this is not reflected in the Ivy confi In the gradle build, the complete Geneious runtime is downloaded and the required libraries are extracted from it. ## Contributing -Please contact support@mooreabiocode.org +Please contact geome.help@gmail.com ## Biocode LIMS Server The Biocode LIMS server is an extension to the original LIMS that adds security, user management, access control and diff --git a/doc/readme.html b/doc/readme.html index c62b83ebb..6aa3e3f85 100644 --- a/doc/readme.html +++ b/doc/readme.html @@ -16,6 +16,6 @@

Getting Help

A great source of help can be found on the discussion forum at http://connect.barcodeoflife.net/group/lims or you can email -support@mooreabiocode.org.

+geome.help@gmail.com.

diff --git a/doc/release_notes.txt b/doc/release_notes.txt index 0391ba246..1870aa3ae 100644 --- a/doc/release_notes.txt +++ b/doc/release_notes.txt @@ -174,7 +174,7 @@ Beta release of 2.8.11. '''Additional Notes''' This version will apply a schema fix to MySQL LIMS databases which may take anywhere between a minute and an hour to perform. The amount of time depends on the number of traces stored in the database. If your database has over 30,000 traces -then it is recommended that an administrator perform it beforehand. Contact support@mooreabiocode.org for instructions. +then it is recommended that an administrator perform it beforehand. Contact geome.help@gmail.com for instructions. ==Biocode Plugin 2.7.1 - 18 July 2014== * Fixed a problem where seqeunces could be downloaded without annotated FIMS data. diff --git a/readme.md b/readme.md index d41e73301..024cebcc1 100644 --- a/readme.md +++ b/readme.md @@ -6,7 +6,7 @@ The Biocode LIMS is a Geneious plugin that comprises everything you need to mana * Official releases are available from our [releases page](https://github.com/biocodellc/biocode-lims/releases) * Official [Wiki Page](https://github.com/biocodellc/biocode-lims/wiki) for more information including the user guide. -* Support email support@mooreabiocode.org +* Support email geome.help@gmail.com * Information for developers on contributing to the Biocode LIMS plugin is on our [development page](https://github.com/biocodellc/biocode-lims/blob/develop/development.md) diff --git a/src/com/biomatters/plugins/biocode/BiocodePlugin.java b/src/com/biomatters/plugins/biocode/BiocodePlugin.java index 77be30eca..bdd2b0082 100644 --- a/src/com/biomatters/plugins/biocode/BiocodePlugin.java +++ b/src/com/biomatters/plugins/biocode/BiocodePlugin.java @@ -48,7 +48,7 @@ public class BiocodePlugin extends GeneiousPlugin { private static GeneiousActionOptions superBiocodeAction; public static final String PLUGIN_VERSION = "3.0.15"; - public static final String SUPPORT_EMAIL = "support@mooreabiocode.org"; + public static final String SUPPORT_EMAIL = "geome.help@gmail.com"; public static GeneiousActionOptions getSuperBiocodeAction() { if (superBiocodeAction == null) { diff --git a/src/com/biomatters/plugins/biocode/labbench/connection/ConnectionManager.java b/src/com/biomatters/plugins/biocode/labbench/connection/ConnectionManager.java index b912c5312..75f7abb97 100644 --- a/src/com/biomatters/plugins/biocode/labbench/connection/ConnectionManager.java +++ b/src/com/biomatters/plugins/biocode/labbench/connection/ConnectionManager.java @@ -384,7 +384,7 @@ public void fromXML(Element element) throws XMLSerializationException { e1.printStackTrace(writer); Dialogs.DialogOptions dialogOptions = new Dialogs.DialogOptions(Dialogs.OK_ONLY, "Error restoring Connection"); dialogOptions.setMoreOptionsButtonText("Show details", "Hide details"); - Dialogs.showMoreOptionsDialog(dialogOptions, "There was an error restoring one or more of your saved connections from disk. The affected connections will not be loaded. Please send the detailed report to support@mooreabiocode.org", stringWriter.toString()); + Dialogs.showMoreOptionsDialog(dialogOptions, "There was an error restoring one or more of your saved connections from disk. The affected connections will not be loaded. Please send the detailed report to geome.help@gmail.com", stringWriter.toString()); } } selectedConnection = Integer.parseInt(element.getChildText("SelectedConnection")); diff --git a/src/com/biomatters/plugins/biocode/labbench/reporting/ReportGenerator.java b/src/com/biomatters/plugins/biocode/labbench/reporting/ReportGenerator.java index e0a8105bf..312f79d49 100644 --- a/src/com/biomatters/plugins/biocode/labbench/reporting/ReportGenerator.java +++ b/src/com/biomatters/plugins/biocode/labbench/reporting/ReportGenerator.java @@ -279,7 +279,7 @@ public void run() { BiocodeUtilities.displayExceptionDialog("Error creating Chart", "There has been an " + "error creating your report:

"+e1.getMessage()+"

If you believe " + "that this is a bug, please click Show Details below, and send the text along " + - "with a screenshot of your report options to support@mooreabiocode.org.", e1, reportCombo); + "with a screenshot of your report options to geome.help@gmail.com.", e1, reportCombo); setReportPanel(null); progress.setComplete(); } catch(Throwable e1) {