Commit a84363b4 a84363b4bcdde8249acabb88af9b77b62670ca2f by Wojciech Polak

Added startup notification.

1 parent efb614cb
......@@ -336,6 +336,8 @@ imap4d_daemon (unsigned int maxchildren, unsigned int port)
exit (1);
}
syslog (LOG_INFO, _("GNU imap4d started"));
for (;;)
{
if (children > maxchildren)
......
......@@ -432,6 +432,8 @@ pop3d_daemon (unsigned int maxchildren, unsigned int port)
exit (EXIT_FAILURE);
}
syslog (LOG_INFO, _("GNU pop3d started"));
for (;;)
{
if (children > maxchildren)
......