Sending Notices
Overview of the process
At times the Support team will be asked to send notices to GitLab SaaS users or customers to inform them of actions that we have taken (or will be taking) on namespaces or projects under their control.
This workflow describes how to fulfill different types of contact requests and the helpful tools you can use in the process.
Tools and Approvals
Number of users | Which thing to use | Approvals required | Notifications required |
---|---|---|---|
1-2 | Manually create a Zendesk ticket | None | None |
3+ | Mass Emails through Marketing Department | Director | Support Readiness issue + FAQ |
- Support team can be asked to contact users during an incident. Such requests are filed by infra team using
confidential_incident_data
issue template in production issue tracker. These must be fulfilled by CMOC during the shift. - As a Stable Counterpart you may choose to manually create tickets for a higher number of users at your discretion. This should be done solely for technical matters (“your usage is causing issues, may we suggest a different approach”), never for marketing reasons (“we have a new way to do xyz and would like you to adopt it”).
Avoid sending RED data
In all outbound contact requests explicitly avoid sending RED data. (see: Data Classifaction Standard). This avoids:
- data transposition errors (accidentally sending another customers data to a customer)
- customer-internal data leaks (person
x
who received the email was not authorized to know about projecty
) - putting customer RED data into systems where it is not allowed (system
z
is only classified for YELLOW data, but is used to send RED)
If there is any doubt about whether a particular piece of data is appropriate to send, start with asking in #support_leadership
and escalate to #privacy-team_help
/ #security
as required.
Some examples:
- Don’t send the full path (for example,
/big-co/sub-proj/super-secret-project
), instead send the project/namespace ID and instructions for translating it.
Tips for avoiding RED data in notices
- Make use of the built-in Project and Group redirects when sharing a link to the resource. They will be redirected if the user has appropriate permissions to view the resource.
- Project example:
https://gitlab.com/-/p/278964
will redirect tohttps://gitlab.com/gitlab-org/gitlab
. - Group example:
https://gitlab.com/-/g/9970
will redirect tohttps://gitlab.com/gitlab-org
.
- Project example:
How to send notices
Most notices should be sent in the form of Zendesk tickets. Always send these tickets to users with Owner
level permissions in the namespace or project in question.
Most contact requests will involve contacting all of the owners of only one project or only a few specific users. If you’re tasked with contacting the owners of a project and know that there’s only one, feel free to look up their email address using your admin account or ChatOps.
However, some contact requests may involve contacting all of the owners of multiple projects. Support Engineers should direct requests for reaching out to multiple owners across multiple projects to do Mass Emails through Marketing Department
Make sure to add an admin note on a user/group we took action on. This will ensure that we can track a block/change reason if a user reaches out to us using a different channel.
Manually create a Zendesk ticket
For the process of sending the outbound contact requests in Zendesk, please review the Support Readiness documentation for more information.
Mass Emails through Marketing Department
Outside of Zendesk we may be asked to be involved in the process of sending mass notices to users. For larger email campaigns, involve the marketing team:
- Open an issue in the marketing/marketing-operations issue tracker using the
request-operational-email
template. You may also need to create a supplementary issue using request-target-list template. - Fill the template out in its entirety.
- Submit the issue and be ready to adjust the subject and/or body of the notice based on feedback.
Note that this process requires a number of approvals from the management, so plan ahead and make sure that the issue is completely ready for review at least one week before sending out emails.
Tools
The following tools can be used to facilitate different types of contact requests.
Email Grab Script
The Email Grab Script is a Ruby script that will return the primary email addresses of the owners of a group or project. Currently, it can only be used if you possess a GitLab SaaS admin account. It can also be supplied only a list of usernames, in which case it will return the primary email addresses of those users. To use it:
- Install the required labclient gem with
gem install labclient
. - Copy the script to your local machine and give it a name, like
emailgrab.rb
. - Replace
YourSuperSweetPAT
with aread_api
scoped PAT from your GitLab SaaS admin account.
- Note: If a new PAT was created from an admin account, that account will receive a slack message from the SIRTbot app asking if the PAT creation was legitimate. Remember to fill this out for security auditing.
- Comment out the sections of the script that you will not be using, either
groups
,users
, orprojects
. - Add your data to the section you will be using.
- Run the script with
ruby emailgrab.rb
.
The results will be created as namespace-contacts.csv
in the same directory that the script is located in.
c0091b7e
)