diff --git a/html/docs/configmain.html b/html/docs/configmain.html
index 2e79f84..344a234 100644
--- a/html/docs/configmain.html
+++ b/html/docs/configmain.html
@@ -741,6 +741,13 @@ Note: This is an advanced feature. This option determines how many buffer slots
 <p>
 This option determines whether Nagios will automatically check to see if new updates (releases) are available.  It is recommend that you enable this option to ensure that you stay on top of the latest critical patches to Nagios.  Nagios is critical to you - make sure you keep it in good shape.  Nagios will check once a day for new updates. Data collected by Nagios Enterprises from the update check is processed in accordance  with our privacy policy - see <a href="http://api.nagios.org">http://api.nagios.org</a> for details.
 </p>
+<p>
+<font color="red">
+Notice: This is a community patched version of Nagios (www.nagios.org), that changed the defaults for check_for_update / bare_update_check!<br>
+Explicit - this is not a forked version!
+</font>
+</p>
+
 
 
 <a name="bare_update_checks"></a>
@@ -766,6 +773,12 @@ This option determines whether Nagios will automatically check to see if new upd
 <p>
 This option deterines what data Nagios will send to api.nagios.org when it checks for updates.  By default, Nagios will send information on the current version of Nagios you have installed, as well as an indicator as to whether this was a new installation or not.  Nagios Enterprises uses this data to determine the number of users running specific version of Nagios.  Enable this option if you do not wish for this information to be sent.
 </p>
+<p>
+<font color="red">
+Notice: This is a community patched version of Nagios (www.nagios.org), that changed the defaults for check_for_update / bare_update_check!<br>
+Explicit - this is not a forked version!
+</font>
+</p>
 
 
 <a name="lock_file"></a>
diff --git a/include/nagios.h b/include/nagios.h
index 3aaea1b..917629c 100644
--- a/include/nagios.h
+++ b/include/nagios.h
@@ -125,8 +125,8 @@ extern "C" {
 
 #define DEFAULT_ADDITIONAL_FRESHNESS_LATENCY			15	/* seconds to be added to freshness thresholds when automatically calculated by Nagios */
 
-#define DEFAULT_CHECK_FOR_UPDATES                               1       /* should we check for new Nagios releases? */
-#define DEFAULT_BARE_UPDATE_CHECK                               0       /* report current version and new installs */
+#define DEFAULT_CHECK_FOR_UPDATES                               0       /* should we check for new Nagios releases? */
+#define DEFAULT_BARE_UPDATE_CHECK                               1       /* report current version and new installs */
 #define MINIMUM_UPDATE_CHECK_INTERVAL                           60*60*22 /* 22 hours minimum between checks - please be kind to our servers! */
 #define BASE_UPDATE_CHECK_INTERVAL                              60*60*22 /* 22 hours base interval */
 #define UPDATE_CHECK_INTERVAL_WOBBLE                            60*60*4  /* 4 hour wobble on top of base interval */
diff --git a/sample-config/nagios.cfg.in b/sample-config/nagios.cfg.in
index a67143b..a6c71f8 100644
--- a/sample-config/nagios.cfg.in
+++ b/sample-config/nagios.cfg.in
@@ -728,7 +728,7 @@ interval_length=60
 # by Nagios Enterprises from the update check is processed in accordance 
 # with our privacy policy - see http://api.nagios.org for details.
 
-check_for_updates=1
+check_for_updates=0
 
 
 
@@ -740,7 +740,7 @@ check_for_updates=1
 # this data to determine the number of users running specific version of 
 # Nagios.  Enable this option if you do not want this information to be sent.
 
-bare_update_check=0
+bare_update_check=1
 
 
 

