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
65217f17
...
65217f17a6dcc07ae0f9c50506a295178c4b6f78
authored
2000-03-29 06:34:10 +0000
by
Jakob Kaivo
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added SIGPIPE handling to pop3 daemon
1 parent
f4d56536
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
ChangeLog
pop3d/pop3d.c
ChangeLog
View file @
65217f1
2000-03-28 Jakob 'sparky' Kaivo <jkaivo@elijah.nodomainname.net>
* pop3d/pop3d.c (main): handle SIGPIPE
2000-01-19 Sean 'Shaleh' Perry
* mailbox/mbx_mh.c: some more code fleshing, still ugly
...
...
pop3d/pop3d.c
View file @
65217f1
...
...
@@ -101,6 +101,7 @@ main (int argc, char **argv)
signal
(
SIGSEGV
,
pop3_signal
);
signal
(
SIGTERM
,
pop3_signal
);
signal
(
SIGSTOP
,
pop3_signal
);
signal
(
SIGPIPE
,
pop3_signal
);
if
(
timeout
<
600
)
/* RFC 1939 says no less than 10 minutes */
timeout
=
0
;
/* So we'll turn it off */
...
...
Please
register
or
sign in
to post a comment