diff --git a/inactive_user.info b/inactive_user.info
index 10d0f14..569b7bd 100644
--- a/inactive_user.info
+++ b/inactive_user.info
@@ -4,4 +4,4 @@ core = 7.x
 files[] = inactive_user.install
 files[] = inactive_user.module
 files[] = inactive_user.test
-configure = admin/people/inactive-user
+configure = admin/config/people/inactive-user
diff --git a/inactive_user.module b/inactive_user.module
index 5e77a03..9e7b193 100644
--- a/inactive_user.module
+++ b/inactive_user.module
@@ -24,14 +24,17 @@ function inactive_user_permission() {
  * Implements hook_menu().
  */
 function inactive_user_menu() {
-  $items['admin/people/inactive-user'] = array(
+  $items['admin/config/people/inactive-user'] = array(
     'title' => 'Inactive users',
     'description' => 'Set rules and contact templates for inactive users.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('inactive_user_custom_settings'),
     'access arguments' => array('change inactive user settings'),
     'file' => 'inactive_user.module',
-    'type' => MENU_NORMAL_ITEM,
+  );
+  $items['admin/config/people/inactive-user/configure'] = array(
+    'title' => 'Settings',
+    'type' => MENU_DEFAULT_LOCAL_TASK,
   );
 
   return $items;
