Skip to content

Setup GitLab MailGun endpoint for permanent failure on invite emails

What does this MR do?

  • Implements Step 3 & most of 4 in this plan
  • Adds mailgun endpoint to receive their permanent failure webhook
  • Toggles mailgun functionality off of the Gitlab::CurrentSettings.mailgun_events_enabled? instead of .com or not.
  • Removes development feature flag since most of the functionality(besides displaying the alerts) is ready through this MR and we can start collecting the data and state changes.

note

After this MR is merged and deployed to .com we'll then need to do the enable mailgun steps seen in this plan

Migration output

Migrate

❯ be rails db:migrate
== 20210630144339 AddInviteEmailSuccessToMembers: migrating ===================
-- add_column(:members, :invite_email_success, :boolean, {:null=>false, :default=>true})
   -> 0.0131s
== 20210630144339 AddInviteEmailSuccessToMembers: migrated (0.0131s) ==========

Rollback

❯ be rails db:rollback
== 20210630144339 AddInviteEmailSuccessToMembers: reverting ===================
-- remove_column(:members, :invite_email_success, :boolean, {:null=>false, :default=>true})
   -> 0.0037s
== 20210630144339 AddInviteEmailSuccessToMembers: reverted (0.0088s) ==========

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

Does this MR contain changes to processing or storing of credentials or tokens, authorization and authentication methods or other items described in the security review guidelines? If not, then delete this Security section.

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team

Related to #333562

Edited by Doug Stull

Merge request reports