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
a84363b4
...
a84363b4bcdde8249acabb88af9b77b62670ca2f
authored
2003-09-01 10:10:02 +0000
by
Wojciech Polak
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added startup notification.
1 parent
efb614cb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
imap4d/imap4d.c
pop3d/pop3d.c
imap4d/imap4d.c
View file @
a84363b
...
...
@@ -336,6 +336,8 @@ imap4d_daemon (unsigned int maxchildren, unsigned int port)
exit
(
1
);
}
syslog
(
LOG_INFO
,
_
(
"GNU imap4d started"
));
for
(;;)
{
if
(
children
>
maxchildren
)
...
...
pop3d/pop3d.c
View file @
a84363b
...
...
@@ -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
)
...
...
Please
register
or
sign in
to post a comment