From: Timo Sirainen Date: Wed, 26 May 2004 14:46:35 +0000 (+0300) Subject: mail_modules for pop3 should default to lib/pop3, not lib/imap X-Git-Tag: 1.1.alpha1~4037 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50450e0d13cf9f908e814533f762b0fdc2d74c2a;p=thirdparty%2Fdovecot%2Fcore.git mail_modules for pop3 should default to lib/pop3, not lib/imap --HG-- branch : HEAD --- diff --git a/src/master/master-settings.c b/src/master/master-settings.c index 5a527f1ccf..bc4aec972d 100644 --- a/src/master/master-settings.c +++ b/src/master/master-settings.c @@ -715,11 +715,13 @@ create_new_server(const char *name, server->imap->protocol = MAIL_PROTOCOL_IMAP; server->imap->login_executable = PKG_LIBEXECDIR"/imap-login"; server->imap->mail_executable = PKG_LIBEXECDIR"/imap"; + server->imap->mail_modules = PKG_LIBDIR"/imap"; server->pop3->server = server; server->pop3->protocol = MAIL_PROTOCOL_POP3; server->pop3->login_executable = PKG_LIBEXECDIR"/pop3-login"; server->pop3->mail_executable = PKG_LIBEXECDIR"/pop3"; + server->pop3->mail_modules = PKG_LIBDIR"/pop3"; return server; }