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
ddba8599
...
ddba8599550cfe386db07dad8220f876059a463f
authored
2004-02-08 22:06:36 +0000
by
Wojciech Polak
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(pop3d_mainloop): Terminate the session after receiving an illegal TLS
packet.
1 parent
8c01abf8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
pop3d/pop3d.c
pop3d/pop3d.c
View file @
ddba859
...
...
@@ -404,7 +404,14 @@ pop3d_mainloop (int fd, FILE *infile, FILE *outfile)
status
=
pop3d_capa
(
arg
);
#ifdef WITH_TLS
else
if
((
strncasecmp
(
cmd
,
"STLS"
,
4
)
==
0
)
&&
tls_available
)
{
status
=
pop3d_stls
(
arg
);
if
(
status
)
{
syslog
(
LOG_ERR
,
_
(
"Session terminated"
));
break
;
}
}
#endif
/* WITH_TLS */
else
status
=
ERR_BAD_CMD
;
...
...
Please
register
or
sign in
to post a comment