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
f9022892
...
f9022892b640af721d510d67b5f5d26c8ac0cd1e
authored
2004-11-15 16:32:51 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(imap4d_login): Do not proceed if tls_required is set.
1 parent
bf959364
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
imap4d/login.c
imap4d/login.c
View file @
f902289
...
...
@@ -23,9 +23,9 @@ imap4d_login (struct imap4d_command *command, char *arg)
char
*
sp
=
NULL
,
*
username
,
*
pass
;
int
rc
;
if
(
login_disabled
)
if
(
login_disabled
||
tls_required
)
return
util_finish
(
command
,
RESP_NO
,
"Command disabled"
);
username
=
util_getword
(
arg
,
&
sp
);
pass
=
util_getword
(
NULL
,
&
sp
);
...
...
Please
register
or
sign in
to post a comment