4 Jun
2008
4 Jun
'08
9:36 p.m.
But looking at the antispam code I think there's one bug:
static int antispam_save_finish(struct mail_save_context *ctx) struct mail *dest_mail = ast->mail;
I think ast->mail can be NULL. It should maybe be instead:
dest_mail = ctx->dest_mail != NULL ? ctx->dest_mail : ast->mail;
Yeah, probably lost that when copying from the quota code. Juan, can you try that?
OTOH, super (i.e. the quota plugin) will never see this value and that's where it seems to crash.
johannes