diff --git a/assets/images/help/settings/email_services_addresses.png b/assets/images/help/settings/email_services_addresses.png index c4a54b8db2..e7e9d4048c 100644 Binary files a/assets/images/help/settings/email_services_addresses.png and b/assets/images/help/settings/email_services_addresses.png differ diff --git a/assets/images/help/settings/email_services_approved_header.png b/assets/images/help/settings/email_services_approved_header.png new file mode 100644 index 0000000000..2afc1806a9 Binary files /dev/null and b/assets/images/help/settings/email_services_approved_header.png differ diff --git a/assets/images/help/settings/email_services_token.png b/assets/images/help/settings/email_services_token.png deleted file mode 100644 index a089719d26..0000000000 Binary files a/assets/images/help/settings/email_services_token.png and /dev/null differ diff --git a/assets/images/help/settings/save_notification_settings.png b/assets/images/help/settings/save_notification_settings.png deleted file mode 100644 index 61e5e69d87..0000000000 Binary files a/assets/images/help/settings/save_notification_settings.png and /dev/null differ diff --git a/assets/images/help/settings/setup_notifications_settings.png b/assets/images/help/settings/setup_notifications_settings.png new file mode 100644 index 0000000000..12c45d220d Binary files /dev/null and b/assets/images/help/settings/setup_notifications_settings.png differ diff --git a/content/admin/configuration/configuring-email-for-notifications.md b/content/admin/configuration/configuring-email-for-notifications.md index 18458967c2..1c33cf1d8e 100644 --- a/content/admin/configuration/configuring-email-for-notifications.md +++ b/content/admin/configuration/configuring-email-for-notifications.md @@ -44,12 +44,6 @@ settings to allow incoming emails](#configuring-dns-and-firewall-settings-to-all - In the **Authentication** dropdown, choose the type of encryption used by your SMTP server. - In the **No-reply email address** field, type the email address to use in the From and To fields for all notification emails. - {% note %} - - **Note:** If you select the **Send from author** checkbox in a repository’s **Services** email webhook, outbound email for that repository will send from the author and not from the no-reply email address. For more information, see "[About email notifications for pushes to your repository](/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository)." - - {% endnote %} - 6. If you want to discard all incoming emails that are addressed to the no-reply email address, select **Discard email addressed to the no-reply email address**. ![Checkbox to discard emails addressed to the no-reply email address](/assets/images/enterprise/management-console/discard-noreply-emails.png) 7. Under **Support**, choose a type of link to offer additional support to your users: diff --git a/content/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository.md b/content/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository.md index 9a23885797..792bfec4bc 100644 --- a/content/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository.md +++ b/content/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository.md @@ -34,10 +34,10 @@ You can filter email notifications you receive for pushes to a repository. For m {% data reusables.repositories.sidebar-notifications %} 5. Type up to two email addresses, separated by whitespace, where you'd like notifications to be sent. If you'd like to send emails to more than two accounts, set one of the email addresses to a group email address. ![Email address textbox](/assets/images/help/settings/email_services_addresses.png) -6. If you operate your own server, you can verify the integrity of emails via the **Secret** token. This token is sent with the email as the `Approved` header. If the `Approved` header matches the token you sent, you can trust that the email is from {% data variables.product.product_name %}. -![Email secret textbox](/assets/images/help/settings/email_services_token.png) -7. Click **Save settings**. -![Save settings button](/assets/images/help/settings/save_notification_settings.png) +1. If you operate your own server, you can verify the integrity of emails via the **Approved header**. The **Approved header** is a token or secret that you type in this field, and that is sent with the email. If the `Approved` header of an email matches the token, you can trust that the email is from {% data variables.product.product_name %}. +![Email approved header textbox](/assets/images/help/settings/email_services_approved_header.png) +7. Click **Setup notifications**. +![Setup notifications button](/assets/images/help/settings/setup_notifications_settings.png) ### Further reading {% if currentVersion == "free-pro-team@latest" or currentVersion == "github-ae@latest" or currentVersion ver_gt "enterprise-server@2.20" %} diff --git a/tests/rendering/server.js b/tests/rendering/server.js index f2eb390813..e7f4a1cdc9 100644 --- a/tests/rendering/server.js +++ b/tests/rendering/server.js @@ -329,8 +329,8 @@ describe('server', () => { }) test('admin articles that link to Enterprise user articles have Enterprise user links', async () => { - const $ = await getDOM(`${latestEnterprisePath}/admin/user-management/configuring-email-for-notifications`) - expect($('article a[href*="about-email-notifications-for-pushes-to-your-repository"]').length).toBe(1) + const $ = await getDOM(`${latestEnterprisePath}/admin/user-management/customizing-user-messages-for-your-enterprise`) + expect($('article a[href*="about-writing-and-formatting-on-github"]').length).toBe(1) }) test('articles that link to external links that contain /articles/ are not rewritten', async () => {