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
997bc2c3
...
997bc2c3baf5e7db73478013b7851722fa61de8d
authored
2003-01-21 08:07:51 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fail if login_disabled is set
1 parent
14eba5bf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
imap4d/login.c
imap4d/login.c
View file @
997bc2c
...
...
@@ -23,6 +23,9 @@ imap4d_login (struct imap4d_command *command, char *arg)
char
*
sp
=
NULL
,
*
username
,
*
pass
;
int
rc
;
if
(
login_disabled
)
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