Commit 65217f17 65217f17a6dcc07ae0f9c50506a295178c4b6f78 by Jakob Kaivo

Added SIGPIPE handling to pop3 daemon

1 parent f4d56536
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
......
......@@ -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 */
......