diff --git a/CHANGELOG.md b/CHANGELOG.md
index c597837def84ae26576f2e10eccddf3a1523a378..91bbcfcb3ed26059bb15b3c76783fbf6841e769f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -50,6 +50,8 @@
 - Improve cache invalidation after processing VideoThumbnail to eliminate "No Preview Available" on grid feeds ([47571887](https://github.com/pixelfed/pixelfed/commit/47571887))
 - Use poster in VideoPresenter component ([a3cc90b0](https://github.com/pixelfed/pixelfed/commit/a3cc90b0))
 - Fix mastoapi notification type casting to include comment and share (mention and reblog) notifications ([eba84530](https://github.com/pixelfed/pixelfed/commit/eba84530))
+- Fix email verification requests filtering to gracefully handle deleted accounts and accounts already verified ([b57066d1](https://github.com/pixelfed/pixelfed/commit/b57066d1))
+- Add configuration to v1/instance endpoint. Fixes #3605 ([2fb18b7d](https://github.com/pixelfed/pixelfed/commit/2fb18b7d))
 -  ([](https://github.com/pixelfed/pixelfed/commit/))
 
 ## [v0.11.3 (2022-05-09)](https://github.com/pixelfed/pixelfed/compare/v0.11.2...v0.11.3)
diff --git a/app/Http/Controllers/Admin/AdminReportController.php b/app/Http/Controllers/Admin/AdminReportController.php
index 2ee3dd0ff6474a4f8c4e22e5ae6f581e035998e5..575342d66decb7e53082074996a54b0b7a025025 100644
--- a/app/Http/Controllers/Admin/AdminReportController.php
+++ b/app/Http/Controllers/Admin/AdminReportController.php
@@ -560,10 +560,10 @@ trait AdminReportController
 				})
 				->map(function($id) {
 					$user = User::whereProfileId($id)->first();
-					if(!$user) {
+					if(!$user || $user->email_verified_at) {
 						return [];
 					}
-					$account = AccountService::get($id);
+					$account = AccountService::get($id, true);
 					if(!$account) {
 						return [];
 					}
diff --git a/app/Http/Controllers/Api/ApiV1Controller.php b/app/Http/Controllers/Api/ApiV1Controller.php
index c339e4dd305289e85f63eb6b6c75bbc8f9f2b1ee..b324c9d7364699058214dbe9658104cef4b6de34 100644
--- a/app/Http/Controllers/Api/ApiV1Controller.php
+++ b/app/Http/Controllers/Api/ApiV1Controller.php
@@ -1305,7 +1305,7 @@ class ApiV1Controller extends Controller
 	 */
 	public function instance(Request $request)
 	{
-		$res = Cache::remember('api:v1:instance-data-response-v0', 1800, function () {
+		$res = Cache::remember('api:v1:instance-data-response-v1', 1800, function () {
 			$contact = Cache::remember('api:v1:instance-data:contact', 604800, function () {
 				$admin = User::whereIsAdmin(true)->first();
 				return $admin && isset($admin->profile_id) ?
@@ -1350,7 +1350,28 @@ class ApiV1Controller extends Controller
 				'registrations' => (bool) config_cache('pixelfed.open_registration'),
 				'approval_required' => false,
 				'contact_account' => $contact,
-				'rules' => $rules
+				'rules' => $rules,
+				'configuration' => [
+					'media_attachments' => [
+						'image_matrix_limit' => 16777216,
+						'image_size_limit' => config('pixelfed.max_photo_size') * 1024,
+						'supported_mime_types' => explode(',', config('pixelfed.media_types')),
+						'video_frame_rate_limit' => 120,
+						'video_matrix_limit' => 2304000,
+						'video_size_limit' => config('pixelfed.max_photo_size') * 1024,
+					],
+					'polls' => [
+						'max_characters_per_option' => 50,
+						'max_expiration' => 2629746,
+						'max_options' => 4,
+						'min_expiration' => 300
+					],
+					'statuses' => [
+						'characters_reserved_per_url' => 23,
+						'max_characters' => (int) config('pixelfed.max_caption_length'),
+						'max_media_attachments' => (int) config('pixelfed.max_album_length')
+					]
+				]
 			];
 		});