Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
ca451365
Commit
ca451365
authored
Jul 22, 2015
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove docs and rake task for gmail actions to prevent problems with registration.
parent
aee579ea
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
101 deletions
+0
-101
doc/integration/gitlab_actions.png
doc/integration/gitlab_actions.png
+0
-0
doc/integration/gitlab_buttons_in_gmail.md
doc/integration/gitlab_buttons_in_gmail.md
+0
-28
lib/tasks/gitlab/mail_google_schema_whitelisting.rake
lib/tasks/gitlab/mail_google_schema_whitelisting.rake
+0
-73
No files found.
doc/integration/gitlab_actions.png
deleted
100644 → 0
View file @
aee579ea
16.9 KB
doc/integration/gitlab_buttons_in_gmail.md
deleted
100644 → 0
View file @
aee579ea
# GitLab buttons in Gmail
GitLab supports
[
Google actions in email
](
https://developers.google.com/gmail/markup/actions/actions-overview
)
.
If correctly setup, emails that require an action will be marked in Gmail.
![
gitlab_actions
](
gitlab_actions.png
)
To get this functioning, you need to be registered with Google.
[
See how to register with Google in this document.
](
https://developers.google.com/gmail/markup/registering-with-google
)
To aid the registering with Google, GitLab offers a rake task that will send an email to Google whitelisting email address from your GitLab server.
To check what would be sent to the Google email address, run the rake task:
```
bash
bundle
exec
rake gitlab:mail_google_schema_whitelisting
RAILS_ENV
=
production
```
**This will not send the email but give you the output of how the mail will look.**
Copy the output of the rake task to
[
Google email markup tester
](
https://www.google.com/webmasters/markup-tester/u/0/
)
and press "Validate".
If you receive "No errors detected" message from the tester you can send the email using:
```
bash
bundle
exec
rake gitlab:mail_google_schema_whitelisting
RAILS_ENV
=
production
SEND
=
true
```
lib/tasks/gitlab/mail_google_schema_whitelisting.rake
deleted
100644 → 0
View file @
aee579ea
require
"
#{
Rails
.
root
}
/app/helpers/emails_helper"
require
'action_view/helpers'
extend
ActionView
::
Helpers
include
ActionView
::
Context
include
EmailsHelper
namespace
:gitlab
do
desc
"Email google whitelisting email with example email for actions in inbox"
task
mail_google_schema_whitelisting: :environment
do
subject
=
"Rails | Implemented feature"
url
=
"
#{
Gitlab
.
config
.
gitlab
.
url
}
/base/rails-project/issues/
#{
rand
(
1
..
100
)
}
#note_
#{
rand
(
10
..
1000
)
}
"
schema
=
email_action
(
url
)
body
=
email_template
(
schema
,
url
)
mail
=
Notify
.
test_email
(
"schema.whitelisting+sample@gmail.com"
,
subject
,
body
.
html_safe
)
if
send_now
mail
.
deliver
else
puts
"WOULD SEND:"
end
puts
mail
end
def
email_template
(
schema
,
url
)
"<html lang='en'>
<head>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<title>
GitLab
</title>
</meta>
</head>
<style>
img {
max-width: 100%;
height: auto;
}
p.details {
font-style:italic;
color:#777
}
.footer p {
font-size:small;
color:#777
}
</style>
<body>
<div class='content'>
<div>
<p>I like it :+1: </p>
</div>
</div>
<div class='footer' style='margin-top: 10px;'>
<p>
<br>
<a href=
\"
#{
url
}
\"
>View it on GitLab</a>
You're receiving this notification because you are a member of the Base / Rails Project project team.
#{
schema
}
</p>
</div>
</body>
</html>"
end
def
send_now
if
ENV
[
'SEND'
]
==
"true"
true
else
false
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment