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
9a508f59
...
9a508f598cf99f98710590da1ac7cbbe940c6c6b
authored
2002-08-06 01:32:36 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(imap4d_auth_capability): New function.
1 parent
f318f2a4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
imap4d/authenticate.c
imap4d/imap4d.h
imap4d/authenticate.c
View file @
9a508f5
...
...
@@ -30,6 +30,14 @@ struct imap_auth {
};
int
imap4d_auth_capability
()
{
struct
imap_auth
*
ap
;
for
(
ap
=
imap_auth_tab
;
ap
->
name
;
ap
++
)
util_send
(
" AUTH=%s"
,
ap
->
name
);
}
int
imap4d_authenticate
(
struct
imap4d_command
*
command
,
char
*
arg
)
{
char
*
sp
=
NULL
;
...
...
imap4d/imap4d.h
View file @
9a508f5
...
...
@@ -156,6 +156,7 @@ extern char *strtok_r __P((char *s, const char *delim, char **save_ptr));
extern
int
imap4d_append
__P
((
struct
imap4d_command
*
,
char
*
));
extern
int
imap4d_append0
__P
((
mailbox_t
mbox
,
int
flags
,
char
*
text
));
extern
int
imap4d_authenticate
__P
((
struct
imap4d_command
*
,
char
*
));
extern
int
imap4d_auth_capability
__P
((
void
));
extern
int
imap4d_capability
__P
((
struct
imap4d_command
*
,
char
*
));
extern
int
imap4d_check
__P
((
struct
imap4d_command
*
,
char
*
));
extern
int
imap4d_close
__P
((
struct
imap4d_command
*
,
char
*
));
...
...
Please
register
or
sign in
to post a comment