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
73f5b7f0
...
73f5b7f08b26b15bd8567212c3ea5acbdae1f1ea
authored
2007-07-18 17:27:40 +0000
by
Wojciech Polak
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(_pops_record, mu_pops_record): Added.
1 parent
6db5bc74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletions
libproto/pop/folder.c
libproto/pop/folder.c
View file @
73f5b7f
...
...
@@ -59,6 +59,27 @@ static struct _mu_record _pop_record =
};
mu_record_t
mu_pop_record
=
&
_pop_record
;
#ifdef WITH_TLS
static
struct
_mu_record
_pops_record
=
{
MU_POP_PRIO
,
MU_POPS_SCHEME
,
_url_pops_init
,
/* Url init. */
_mailbox_pops_init
,
/* Mailbox init. */
NULL
,
/* Mailer init. */
_folder_pop_init
,
/* Folder init. */
NULL
,
/* No need for an back pointer. */
NULL
,
/* _is_scheme method. */
NULL
,
/* _get_url method. */
NULL
,
/* _get_mailbox method. */
NULL
,
/* _get_mailer method. */
NULL
/* _get_folder method. */
};
mu_record_t
mu_pops_record
=
&
_pops_record
;
#else
mu_record_t
mu_pops_record
=
NULL
;
#endif
/* WITH_TLS */
static
int
folder_pop_open
(
mu_folder_t
,
int
);
static
int
folder_pop_close
(
mu_folder_t
);
static
int
folder_pop_get_authority
(
mu_folder_t
,
mu_authority_t
*
);
...
...
@@ -139,4 +160,5 @@ folder_pop_get_authority (mu_folder_t folder, mu_authority_t *pauth)
#include <stdio.h>
#include <registrar0.h>
mu_record_t
mu_pop_record
=
NULL
;
#endif
mu_record_t
mu_pops_record
=
NULL
;
#endif
/* ENABLE_POP */
...
...
Please
register
or
sign in
to post a comment