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
ed4dc456
...
ed4dc456e7af3cf64cd0d79e92549426bfec2742
authored
2004-01-15 13:19:41 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_register_local_mbox_formats,mu_register_remote_mbox_formats): New macros.
1 parent
89c4b670
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
include/mailutils/registrar.h
include/mailutils/registrar.h
View file @
ed4dc45
...
...
@@ -114,6 +114,22 @@ extern record_t sendmail_record;
list_append (bookie, maildir_record);\
} while (0)
#define mu_register_local_mbox_formats() do {\
list_t bookie = 0;\
registrar_get_list (&bookie);\
list_append (bookie, path_record);\
list_append (bookie, mbox_record);\
list_append (bookie, mh_record);\
list_append (bookie, maildir_record);\
} while (0)
#define mu_register_remote_mbox_formats() do {\
list_t bookie = 0;\
registrar_get_list (&bookie);\
list_append (bookie, pop_record);\
list_append (bookie, imap_record);\
} while (0)
#define mu_register_all_mailer_formats() do {\
list_t bookie = 0;\
registrar_get_list (&bookie);\
...
...
Please
register
or
sign in
to post a comment