maildir-expunge.c revision 10ffe25023df7de97803cd94cc3ad97ff1c986a7
/* Copyright (C) 2002 Timo Sirainen */
#include "lib.h"
#include "maildir-storage.h"
#include <unistd.h>
unsigned int seq)
{
const char *fname;
char path[1024];
/* if it didn't exist, someone just had either
deleted it or changed it's flags */
"unlink() failed for "
"message file %s: %m", path);
return FALSE;
}
}
}
{
return FALSE;
/* save UID before deletion */
return FALSE;
if (notify) {
ibox->sync_context);
}
seq--;
}
seq++;
}
return TRUE;
}