From 154430b8e46ebbdefa61ff446b51d2d98a7891c8 Mon Sep 17 00:00:00 2001 From: pfelt Date: Tue, 12 May 2009 21:50:06 +0000 Subject: [PATCH] -- fix: bug where mail would not be delivered to local users who have no rules. --- src/agents/rules/rules.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/agents/rules/rules.c b/src/agents/rules/rules.c index 31dd14a..0d7b598 100644 --- a/src/agents/rules/rules.c +++ b/src/agents/rules/rules.c @@ -1139,6 +1139,7 @@ ProcessEntry(void *clientp, Connection *conn) /* i need to read out this user's rules from the server and parse them */ snprintf(Queue->line, CONN_BUFSIZE, "rules/%s", Queue->recipient); if (!ReadBongoConfiguration(Queue->UserConfig, Queue->line)) { + ConnWriteF(Queue->conn, "QMOD RAW %s\r\n", Queue->envelopeLine); break; }