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
22696801
...
226968019827e07a9583b258aa8912990af847bc
authored
2003-01-22 13:13:29 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(tls_available,tls_done): Removed.
(main): Call auth_gssapi_init, auth_gsasl_init
1 parent
09ca4f37
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
10 deletions
imap4d/imap4d.c
imap4d/imap4d.c
View file @
2269680
...
...
@@ -31,11 +31,6 @@ struct daemon_param daemon_param = {
0
/* No transcript by default */
};
#ifdef WITH_TLS
int
tls_available
;
int
tls_done
;
#endif
/* WITH_TLS */
int
login_disabled
;
/* Number of child processes. */
...
...
@@ -126,6 +121,9 @@ main (int argc, char **argv)
MU_AUTH_REGISTER_ALL_MODULES
();
imap4d_capability_init
();
auth_gssapi_init
();
auth_gsasl_init
();
#ifdef WITH_TLS
mu_tls_init_argp
();
#endif
/* WITH_TLS */
...
...
@@ -199,11 +197,7 @@ main (int argc, char **argv)
/* Check TLS environment, i.e. cert and key files */
#ifdef WITH_TLS
tls_available
=
mu_check_tls_environment
();
if
(
tls_available
)
tls_available
=
mu_init_tls_libs
();
if
(
tls_available
)
imap4d_capability_add
(
"STARTTLS"
);
starttls_init
();
#endif
/* WITH_TLS */
/* Actually run the daemon. */
...
...
Please
register
or
sign in
to post a comment