view src/lib-storage/mail-thread.c @ 9059:d42a8623a008 HEAD

Moved mail_thread_type_parse() to lib-storage.a to avoid some linking problems.
author Timo Sirainen <tss@iki.fi>
date Mon, 18 May 2009 13:15:24 -0400
parents
children 00cd9aacd03c
line wrap: on
line source

/* Copyright (c) 2009 Dovecot authors, see the included COPYING file */

#include "lib.h"
#include "mail-thread.h"

bool mail_thread_type_parse(const char *str, enum mail_thread_type *type_r)
{
	if (strcasecmp(str, "REFERENCES") == 0)
		*type_r = MAIL_THREAD_REFERENCES;
	else if (strcasecmp(str, "REFS") == 0)
		*type_r = MAIL_THREAD_REFS;
	else
		return FALSE;
	return TRUE;
}