view src/master/syslog-util.h @ 9565:7c447e8c24fe HEAD

maildir: If we detect MH as the cause of unexpunging, log it in the error message.
author Timo Sirainen <tss@iki.fi>
date Thu, 29 Apr 2010 20:43:16 +0300
parents e4eb71ae8e96
children
line wrap: on
line source

#ifndef SYSLOG_UTIL_H
#define SYSLOG_UTIL_H

struct syslog_facility_list {
	const char *name;
	int facility;
};

extern struct syslog_facility_list syslog_facilities[];

/* Returns TRUE if found. */
bool syslog_facility_find(const char *name, int *facility_r);

#endif