Commit cea1ebcb cea1ebcb1ef0c5d46023e24b6008adb7d04376e3 by Sergey Poznyakoff

movemail: accept "smtp://" and "sendmail://" as a destination mailbox.

* movemail/Makefile.am (movemail_LDADD): Add MU_LIB_MAILER.
* movemail/movemail.c: Register *all* mailbox formats,
including remote ones.
1 parent c93d9f7a
......@@ -27,6 +27,7 @@ movemail_LDADD = \
${MU_LIB_MH}\
${MU_LIB_MAILDIR}\
${MU_LIB_AUTH}\
${MU_LIB_MAILER}\
@MU_AUTHLIBS@\
${MU_LIB_MAILUTILS}\
@MU_COMMON_LIBRARIES@
......
......@@ -735,8 +735,8 @@ main (int argc, char **argv)
MU_APP_INIT_NLS ();
MU_AUTH_REGISTER_ALL_MODULES ();
/* Register the desired mailbox formats. */
mu_register_all_mbox_formats ();
/* Register the desired "mailbox" formats. */
mu_register_all_formats ();
/* argument parsing */
......@@ -760,7 +760,7 @@ main (int argc, char **argv)
if (emacs_mode)
{
/* Undo the effect of configuration options that may affect
the interaction with Emacs. */
interaction with Emacs. */
mu_registrar_set_default_record (mu_mbox_record);
mu_debug_default_printer = mu_debug_stderr_printer;
}
......