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
c841c9ed
...
c841c9edec99a47bdecaf1d7fb2123ab92e8e1e8
authored
2002-08-05 08:12:45 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Indicate X-VERSION capability.
1 parent
9758c204
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
imap4d/capability.c
imap4d/capability.c
View file @
c841c9e
...
...
@@ -23,6 +23,7 @@ char *capa[] = {
#ifdef WITH_GSSAPI
"AUTH=GSSAPI"
,
#endif
"X-VERSION"
,
NULL
};
...
...
@@ -32,11 +33,10 @@ imap4d_capability (struct imap4d_command *command, char *arg)
int
i
;
(
void
)
arg
;
if
(
!
(
command
->
states
&
state
))
return
util_finish
(
command
,
RESP_BAD
,
"Wrong state"
);
util_send
(
"* CAPABILITY"
);
for
(
i
=
0
;
capa
[
i
];
i
++
)
util_send
(
" %s"
,
capa
[
i
]);
util_send
(
"
\r\n
"
);
return
util_finish
(
command
,
RESP_OK
,
"Completed"
);
}
...
...
Please
register
or
sign in
to post a comment