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
Tatuya Kamada
gitlab-ce
Commits
e1baa485
Commit
e1baa485
authored
Feb 29, 2016
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix `gitlab:incoming_email:check` task.
parent
bbdb9ba0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
lib/tasks/gitlab/check.rake
lib/tasks/gitlab/check.rake
+6
-4
No files found.
lib/tasks/gitlab/check.rake
View file @
e1baa485
...
...
@@ -728,13 +728,15 @@ namespace :gitlab do
def
check_imap_authentication
print
"IMAP server credentials are correct? ... "
config
=
Gitlab
.
config
.
incoming_email
config_path
=
Rails
.
root
.
join
(
'config'
,
'mail_room.yml'
)
config_file
=
YAML
.
load
(
ERB
.
new
(
File
.
read
(
config_path
)).
result
)
config
=
config_file
[
:mailboxes
].
first
if
config
begin
imap
=
Net
::
IMAP
.
new
(
config
.
host
,
port:
config
.
port
,
ssl:
config
.
ssl
)
imap
.
starttls
if
config
.
start_tls
imap
.
login
(
config
.
user
,
config
.
password
)
imap
=
Net
::
IMAP
.
new
(
config
[
:host
],
port:
config
[
:port
],
ssl:
config
[
:ssl
]
)
imap
.
starttls
if
config
[
:start_tls
]
imap
.
login
(
config
[
:email
],
config
[
:password
]
)
connected
=
true
rescue
connected
=
false
...
...
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