index-update-flags.c revision ff1c87522054d080d68b0123373d989a8991aa2a
/* Copyright (C) 2002 Timo Sirainen */
#include "lib.h"
#include "index-storage.h"
#include "index-messageset.h"
#include "mail-custom-flags.h"
const struct mail_full_flags *flags,
enum modify_type modify_type)
{
return TRUE;
"Mailbox is read-only, ignoring flag changes",
return TRUE;
}
/* \Recent can't be changed */
return FALSE;
switch (modify_type) {
case MODIFY_ADD:
break;
case MODIFY_REMOVE:
break;
case MODIFY_REPLACE:
break;
default:
i_unreached();
}
return FALSE;
}
return TRUE;
}