summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Streets <jonathan.streets@10gen.com>2020-06-18 18:10:06 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-06-22 21:56:39 +0000
commita0bf145ad6f54ae6e057495bcb9ad8fa7bb8daea (patch)
tree43d1bacc4d6f8f98225070a17688523ec5426905
parent96d0a3a985d383473af889dd9a089c44d5f492e2 (diff)
downloadmongo-a0bf145ad6f54ae6e057495bcb9ad8fa7bb8daea.tar.gz
SERVER-48032 Change MAIL to FORUMS, and fit URLs
-rw-r--r--README6
-rw-r--r--distsrc/README6
-rw-r--r--src/mongo/shell/dbshell.cpp13
3 files changed, 13 insertions, 12 deletions
diff --git a/README b/README
index c12f7e0a95f..2e064ebc945 100644
--- a/README
+++ b/README
@@ -63,13 +63,13 @@ CLOUD HOSTED MONGODB
https://www.mongodb.com/cloud/atlas
-MAIL LISTS
+FORUMS
- https://groups.google.com/forum/#!forum/mongodb-user
+ https://community.mongodb.com
A forum for technical questions about using MongoDB.
- https://groups.google.com/forum/#!forum/mongodb-dev
+ https://community.mongodb.com/c/server-dev
A forum for technical questions about building and developing MongoDB.
diff --git a/distsrc/README b/distsrc/README
index 3312c5e8e1b..97f1dc72436 100644
--- a/distsrc/README
+++ b/distsrc/README
@@ -63,13 +63,13 @@ CLOUD HOSTED MONGODB
https://www.mongodb.com/cloud/atlas
-MAIL LISTS
+FORUMS
- https://groups.google.com/forum/#!forum/mongodb-user
+ https://community.mongodb.com
A forum for technical questions about using MongoDB.
- https://groups.google.com/forum/#!forum/mongodb-dev
+ https://community.mongodb.com/c/server-dev
A forum for technical questions about building and developing MongoDB.
diff --git a/src/mongo/shell/dbshell.cpp b/src/mongo/shell/dbshell.cpp
index 574be1951b8..560f626b971 100644
--- a/src/mongo/shell/dbshell.cpp
+++ b/src/mongo/shell/dbshell.cpp
@@ -973,12 +973,13 @@ int _main(int argc, char* argv[], char** envp) {
}
if (!hasMongoRC && isatty(fileno(stdin))) {
- std::cout
- << "Welcome to the MongoDB shell.\n"
- "For interactive help, type \"help\".\n"
- "For more comprehensive documentation, see\n\thttp://docs.mongodb.org/\n"
- "Questions? Try the support group\n\thttp://groups.google.com/group/mongodb-user"
- << std::endl;
+ std::cout << "Welcome to the MongoDB shell.\n"
+ "For interactive help, type \"help\".\n"
+ "For more comprehensive documentation, see\n"
+ "\thttps://docs.mongodb.com/\n"
+ "Questions? Try the MongoDB Developer Community Forums\n"
+ "\thttps://community.mongodb.com"
+ << std::endl;
File f;
f.open(rcLocation.c_str(), false); // Create empty .mongorc.js file
}