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
4660da16
...
4660da16df09c73c19d0ae573654f18c78873923
authored
2002-08-06 01:33:02 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(imap4d_capability): call imap4d_auth_capability() to output AUTH= capabilities.
1 parent
9a508f59
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
3 deletions
imap4d/capability.c
imap4d/capability.c
View file @
4660da1
...
...
@@ -20,9 +20,6 @@
char
*
capa
[]
=
{
"IMAP4rev1"
,
"NAMESPACE"
,
#ifdef WITH_GSSAPI
"AUTH=GSSAPI"
,
#endif
"X-VERSION"
,
NULL
};
...
...
@@ -36,6 +33,7 @@ imap4d_capability (struct imap4d_command *command, char *arg)
util_send
(
"* CAPABILITY"
);
for
(
i
=
0
;
capa
[
i
];
i
++
)
util_send
(
" %s"
,
capa
[
i
]);
imap4d_auth_capability
();
util_send
(
"
\r\n
"
);
return
util_finish
(
command
,
RESP_OK
,
"Completed"
);
...
...
Please
register
or
sign in
to post a comment