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
c01f5432
...
c01f543225e3031cdbf68f35a1c9b4cbd76697a8
authored
2001-08-31 07:07:46 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Register getpwnam_virtual for handling virtual domain authentication.
1 parent
ddc1e76b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
imap4d/imap4d.c
pop3d/pop3d.c
imap4d/imap4d.c
View file @
c01f543
...
...
@@ -143,7 +143,10 @@ main (int argc, char **argv)
#ifdef HAVE_MYSQL
mu_register_getpwnam
(
getMpwnam
);
#endif
#ifdef USE_VIRTUAL_DOMAINS
mu_register_getpwnam
(
getpwnam_virtual
);
#endif
/* Set the signal handlers. */
signal
(
SIGINT
,
imap4d_signal
);
signal
(
SIGQUIT
,
imap4d_signal
);
...
...
pop3d/pop3d.c
View file @
c01f543
...
...
@@ -132,6 +132,9 @@ main (int argc, char **argv)
#ifdef HAVE_MYSQL
mu_register_getpwnam
(
getMpwnam
);
#endif
#ifdef USE_VIRTUAL_DOMAINS
mu_register_getpwnam
(
getpwnam_virtual
);
#endif
/* Set the signal handlers. */
signal
(
SIGINT
,
pop3d_signal
);
...
...
Please
register
or
sign in
to post a comment