Commit 456e7451 456e74513ed87fe44e704cabb32247d07c57a879 by Sergey Poznyakoff

(mh_init): Use mu_register_all_formats

1 parent 6b4db5de
......@@ -40,18 +40,8 @@ char mh_list_format[] =
void
mh_init ()
{
list_t bookie;
/* Register mailbox formats */
registrar_get_list (&bookie);
list_append (bookie, mh_record);
list_append (bookie, mbox_record);
list_append (bookie, path_record);
list_append (bookie, pop_record);
list_append (bookie, imap_record);
/* Possible supported mailers. */
list_append (bookie, sendmail_record);
list_append (bookie, smtp_record);
/* Register all mailbox and mailer formats */
mu_register_all_formats ();
/* Read user's profile */
mh_read_profile ();
......