Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
bf959364
...
bf959364c67409ca94b7ea196dc6f569a6d34adb
authored
2004-11-15 16:32:14 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(imap4d_authenticate): Do not proceed if tls_required is set.
1 parent
6ff823fa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
imap4d/authenticate.c
imap4d/authenticate.c
View file @
bf95936
...
...
@@ -104,6 +104,9 @@ imap4d_authenticate (struct imap4d_command *command, char *arg)
if
(
!
auth_type
)
return
util_finish
(
command
,
RESP_BAD
,
"Too few arguments"
);
if
(
tls_required
)
return
util_finish
(
command
,
RESP_NO
,
"Command disabled: Use STARTTLS first"
);
adata
.
command
=
command
;
adata
.
auth_type
=
auth_type
;
adata
.
arg
=
sp
;
...
...
Please
register
or
sign in
to post a comment