Skip to content

Setup GitLab MailGun endpoint for syncing bounced invite emails - redo2

What does this MR do?

Re-implementation of !65078 (merged)/!66397 (merged) as per gitlab-com/gl-infra/production#5241 (comment 637611079)

the only difference between !66397 (merged) and this one is the different DB migration version(.com may already have the column - reason for conditional)

Literally applied all the commits from !66397 (merged) except database parts that that had conflicting version numbers that needed to increment/change.

since !66933 (merged) has been deployed to production and we are in %14.3, we can re-implement.

/cc @stanhu

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:up VERSION=20210816192041
== 20210816192041 AddInvitesEmailSuccessToMember: migrating ===================
-- column_exists?(:members, :invite_email_success)
   -> 0.0027s
-- add_column(:members, :invite_email_success, :boolean, {:null=>false, :default=>true})
   -> 0.0029s
== 20210816192041 AddInvitesEmailSuccessToMember: migrated (0.0057s) ==========

Rollback

❯ be rails db:migrate:down VERSION=20210816192041
== 20210816192041 AddInvitesEmailSuccessToMember: reverting ===================
-- remove_column(:members, :invite_email_success)
   -> 0.0031s
== 20210816192041 AddInvitesEmailSuccessToMember: reverted (0.0032s) ==========

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