diff --git a/src/plugins/job_submit/defaults/job_submit_defaults.c b/src/plugins/job_submit/defaults/job_submit_defaults.c
index 1e12043316ae74d2be57488ed372edcd6354d673..e0335eb8c9f47812e159bfb9f460165d85143c1b 100644
--- a/src/plugins/job_submit/defaults/job_submit_defaults.c
+++ b/src/plugins/job_submit/defaults/job_submit_defaults.c
@@ -100,6 +100,12 @@ const char plugin_type[]       	= "job_submit/defaults";
 const uint32_t plugin_version   = 100;
 const uint32_t min_plug_version = 100;
 
+/*****************************************************************************\
+ * We've provided a simple example of the type of things you can do with this
+ * plugin. If you develop another plugin that may be of interest to others
+ * please post it to slurm-dev@lists.llnl.gov  Thanks!
+\*****************************************************************************/
+
 /* This example code will prevent users from setting an accounting frequency
  * of less than 30 seconds in order to insure more precise accounting.
  * Also remove any QOS value set by the user in order to use the default value
diff --git a/src/plugins/job_submit/logging/job_submit_logging.c b/src/plugins/job_submit/logging/job_submit_logging.c
index b15ece6d815ee13ac6c3bb318699670627e4b055..f67fa30d2c61d0de288990b73203a9f50eca68d4 100644
--- a/src/plugins/job_submit/logging/job_submit_logging.c
+++ b/src/plugins/job_submit/logging/job_submit_logging.c
@@ -99,6 +99,12 @@ const char plugin_type[]       	= "job_submit/logging";
 const uint32_t plugin_version   = 100;
 const uint32_t min_plug_version = 100;
 
+/*****************************************************************************\
+ * We've provided a simple example of the type of things you can do with this
+ * plugin. If you develop another plugin that may be of interest to others
+ * please post it to slurm-dev@lists.llnl.gov  Thanks!
+\*****************************************************************************/
+
 extern int job_submit(struct job_descriptor *job_desc)
 {
 	/* Log select fields from a job submit request. See slurm/slurm.h
diff --git a/src/plugins/job_submit/partition/job_submit_partition.c b/src/plugins/job_submit/partition/job_submit_partition.c
index 822ccc378eda3ac4c8181a6a21467fd550c0a8cf..68bb9457f8d332f6ca979c388d2b097a86cd4e79 100644
--- a/src/plugins/job_submit/partition/job_submit_partition.c
+++ b/src/plugins/job_submit/partition/job_submit_partition.c
@@ -99,6 +99,12 @@ const char plugin_type[]       	= "job_submit/partition";
 const uint32_t plugin_version   = 100;
 const uint32_t min_plug_version = 100;
 
+/*****************************************************************************\
+ * We've provided a simple example of the type of things you can do with this
+ * plugin. If you develop another plugin that may be of interest to others
+ * please post it to slurm-dev@lists.llnl.gov  Thanks!
+\*****************************************************************************/
+
 /* Test if this user can run jobs in the selected partition based upon
  * the partition's AllowGroups parameter. */
 static bool _user_access(uid_t run_uid, struct part_record *part_ptr)