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
14eba5bf
...
14eba5bfc2df57dde7ce67850835da2cba9667b8
authored
2003-01-21 08:06:55 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
When TLS negotiation succeedes, remove "STARTTLS" capability and reset login_disabled.
1 parent
e89e9427
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
imap4d/starttls.c
imap4d/starttls.c
View file @
14eba5b
...
...
@@ -35,6 +35,12 @@ imap4d_starttls (struct imap4d_command *command, char *arg)
util_flush_output
();
tls_done
=
imap4d_init_tls_server
();
if
(
tls_done
)
{
imap4d_capability_remove
(
"STARTTLS"
);
login_disabled
=
0
;
imap4d_capability_remove
(
"LOGINDISABLED"
);
}
return
status
;
}
...
...
Please
register
or
sign in
to post a comment