summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/MailServer.cc13
1 files changed, 11 insertions, 2 deletions
diff --git a/lib/MailServer.cc b/lib/MailServer.cc
index c0e3607..2c394cc 100644
--- a/lib/MailServer.cc
+++ b/lib/MailServer.cc
@@ -158,8 +158,17 @@ int ProcessSMTPRequest::Do() throw (GeneralException) {
}
}
- /***TODO*** Wait for the task and destroy it. */
- Task * r = MailHandler::ProcessMail(out, from, tos);
+ c = MailHandler::ProcessMail(out, from, tos);
+
+ if (c) {
+ current = 6;
+ WaitFor(c);
+ Suspend(TASK_ON_HOLD);
+ }
+ case 6:
+
+ if (c)
+ delete c;
delete out;