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
6531542b
...
6531542b9ed31fe3e4f9071e7e952eb9e740e1ae
authored
2007-07-18 17:25:41 +0000
by
Wojciech Polak
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Register new protocols: mu_pops_record and mu_imaps_record.
1 parent
7bfa484d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
include/mailutils/registrar.h
include/mailutils/registrar.h
View file @
6531542
...
...
@@ -88,8 +88,10 @@ extern int mu_record_set_get_folder (mu_record_t,
/* Remote Folder "imap://" */
extern
mu_record_t
mu_imap_record
;
extern
mu_record_t
mu_imaps_record
;
/* Remote Mailbox POP3, pop:// */
extern
mu_record_t
mu_pop_record
;
extern
mu_record_t
mu_pops_record
;
/* Remote newsgroup NNTP, nntp:// */
extern
mu_record_t
mu_nntp_record
;
...
...
@@ -122,7 +124,9 @@ extern mu_record_t mu_sendmail_record;
mu_registrar_record (mu_path_record);\
mu_registrar_record (mu_mbox_record);\
mu_registrar_record (mu_pop_record);\
mu_registrar_record (mu_pops_record);\
mu_registrar_record (mu_imap_record);\
mu_registrar_record (mu_imaps_record);\
mu_registrar_record (mu_mh_record);\
mu_registrar_record (mu_maildir_record);\
} while (0)
...
...
@@ -136,7 +140,9 @@ extern mu_record_t mu_sendmail_record;
#define mu_register_remote_mbox_formats() do {\
mu_registrar_record (mu_pop_record);\
mu_registrar_record (mu_pops_record);\
mu_registrar_record (mu_imap_record);\
mu_registrar_record (mu_imaps_record);\
mu_registrar_record (mu_nntp_record);\
} while (0)
...
...
Please
register
or
sign in
to post a comment