From: Timo Sirainen Date: Sat, 20 Feb 2010 14:25:31 +0000 (+0200) Subject: lmtp: Always use "lmtp" module when looking up configuration. X-Git-Tag: 2.0.beta3~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1e217aa0dad9bbfad64525396c3f226f170f985c;p=thirdparty%2Fdovecot%2Fcore.git lmtp: Always use "lmtp" module when looking up configuration. --HG-- branch : HEAD --- diff --git a/src/lmtp/commands.c b/src/lmtp/commands.c index ac89d4ae5b..bc3c66af72 100644 --- a/src/lmtp/commands.c +++ b/src/lmtp/commands.c @@ -374,8 +374,7 @@ int cmd_rcpt(struct client *client, const char *args) } memset(&input, 0, sizeof(input)); - input.service = "lmtp"; - input.module = "lda"; + input.module = input.service = "lmtp"; input.username = username; input.local_ip = client->local_ip; input.remote_ip = client->remote_ip;