Index: src/wp-login.php
===================================================================
--- src/wp-login.php	(revision 49254)
+++ src/wp-login.php	(working copy)
@@ -432,10 +432,19 @@
 	$message .= sprintf( __( 'Site Name: %s' ), $site_name ) . "\r\n\r\n";
 	/* translators: %s: User login. */
 	$message .= sprintf( __( 'Username: %s' ), $user_login ) . "\r\n\r\n";
-	$message .= __( 'If this was a mistake, just ignore this email and nothing will happen.' ) . "\r\n\r\n";
+	$message .= __( 'If this was a mistake ignore this email and nothing will happen.' ) . "\r\n\r\n";
 	$message .= __( 'To reset your password, visit the following address:' ) . "\r\n\r\n";
-	$message .= network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), 'login' ) . "\r\n";
+	$message .= network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), 'login' ) . "\r\n\r\n";
 
+	$requestor_ip = $_SERVER['REMOTE_ADDR'];
+	if ( $requestor_ip ) {
+		$message .= sprintf(
+			/* translators: %s: IP address of password reset requestor. */
+			__( 'This password reset request originated from the IP address %s.' ),
+			$requestor_ip
+		) . "\r\n";
+	}
+
 	/* translators: Password reset notification email subject. %s: Site title. */
 	$title = sprintf( __( '[%s] Password Reset' ), $site_name );
 
Index: src/wp-admin/includes/class-wp-privacy-policy-content.php
===================================================================
--- src/wp-admin/includes/class-wp-privacy-policy-content.php	(revision 49254)
+++ src/wp-admin/includes/class-wp-privacy-policy-content.php	(working copy)
@@ -584,6 +584,9 @@
 			$strings[] = '<p class="privacy-policy-tutorial">' . __( 'By default WordPress does not share any personal data with anyone.' ) . '</p>';
 		}
 
+		/* translators: Default privacy policy text. */
+		$strings[] = '<p>' . $suggested_text . __( 'If you request a password reset, your IP address will be included in the reset email.' ) . '</p>';
+
 		/* translators: Default privacy policy heading. */
 		$strings[] = '<h2>' . __( 'How long we retain your data' ) . '</h2>';
 
