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
65e3ca94
...
65e3ca9447503d5437127b74cb4df8a52165b2b2
authored
2004-01-15 13:18:35 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(main): Call mu_register_local_mbox_formats().
1 parent
b0e17013
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
13 deletions
imap4d/imap4d.c
pop3d/pop3d.c
imap4d/imap4d.c
View file @
65e3ca9
...
...
@@ -165,13 +165,8 @@ main (int argc, char **argv)
}
/* Register the desired formats. */
{
list_t
bookie
;
registrar_get_list
(
&
bookie
);
list_append
(
bookie
,
mbox_record
);
list_append
(
bookie
,
path_record
);
}
mu_register_local_mbox_formats
();
/* Set the signal handlers. */
signal
(
SIGINT
,
imap4d_signal
);
signal
(
SIGQUIT
,
imap4d_signal
);
...
...
pop3d/pop3d.c
View file @
65e3ca9
...
...
@@ -189,12 +189,7 @@ main (int argc, char **argv)
}
/* Register the desired formats. */
{
list_t
bookie
;
registrar_get_list
(
&
bookie
);
list_append
(
bookie
,
mbox_record
);
list_append
(
bookie
,
path_record
);
}
mu_register_local_mbox_formats
();
/* Set the signal handlers. */
signal
(
SIGINT
,
pop3d_signal
);
...
...
Please
register
or
sign in
to post a comment