diff --git a/src/UwPermissions/UwPermissions.php b/src/UwPermissions/UwPermissions.php
index 05b9e4c9ddd1fb772e0cbaf509650144c16791ea..5afd93772c7f4e75e13334cd07880662ba061463 100644
--- a/src/UwPermissions/UwPermissions.php
+++ b/src/UwPermissions/UwPermissions.php
@@ -71,6 +71,24 @@ class UwPermissions {
         ),
       ],
 
+      // Contact permissions.
+      'Contact' => [
+        'Use content type' =>
+        UwPermissions::buildRolePermissionsListContentType(
+         'uw_ct_contact'
+        ),
+        'Create/edit group' =>
+        UwPermissions::buildRolePermissionsListTaxonomyTerm(
+          'uw_vocab_contact_group',
+          ['create', 'edit']
+        ),
+        'Delete group' =>
+        UwPermissions::buildRolePermissionsListTaxonomyTerm(
+          'uw_vocab_contact_group',
+          ['delete']
+        ),
+      ],
+
       // Catalog permissions.
       'Catalog' => [
         'Use content type' =>
@@ -155,6 +173,24 @@ class UwPermissions {
         ),
       ],
 
+      // Profile permissions.
+      'Profile' => [
+        'Use content type' =>
+        UwPermissions::buildRolePermissionsListContentType(
+         'uw_ct_profile'
+        ),
+        'Create/edit type' =>
+        UwPermissions::buildRolePermissionsListTaxonomyTerm(
+         'uw_vocab_profile_type',
+          ['create', 'edit']
+        ),
+        'Delete type' =>
+        UwPermissions::buildRolePermissionsListTaxonomyTerm(
+         'uw_vocab_profile_type',
+          ['delete']
+        ),
+      ],
+
       // Sidebar permissions.
       'Sidebar' => [
         'Use content type' =>
diff --git a/uw_cfg_common.install b/uw_cfg_common.install
index 13801df04ebedd2d3c45bb73ab8a7bd0597972ff..915a0979fc91015591804382a1e409a524a4ecb1 100644
--- a/uw_cfg_common.install
+++ b/uw_cfg_common.install
@@ -28,6 +28,21 @@ function uw_cfg_common_install() {
         'Site manager',
       ],
     ],
+    'Contact' => [
+      'Use content type' => [
+        'Site manager',
+        'Content author',
+        'Content editor',
+      ],
+      'Create/edit group' => [
+        'Site manager',
+        'Content author',
+        'Content editor',
+      ],
+      'Delete group' => [
+        'Site manager',
+      ],
+    ],
     'Catalog' => [
       'Use content type' => [
         'Site manager',
@@ -97,6 +112,21 @@ function uw_cfg_common_install() {
         'Site manager',
       ],
     ],
+    'Profile' => [
+      'Use content type' => [
+        'Site manager',
+        'Content author',
+        'Content editor',
+      ],
+      'Create/edit type' => [
+        'Site manager',
+        'Content author',
+        'Content editor',
+      ],
+      'Delete type' => [
+        'Site manager',
+      ],
+    ],
     'Sidebar' => [
       'Use content type' => [
         'Site manager',