tcpwrap-settings.c revision 02c335c23bf5fa225a467c19f2c063fb0dc7b8c3
/* Copyright (c) 2010-2016 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "buffer.h"
#include "settings-parser.h"
#include "service-settings.h"
#include <stddef.h>
#ifdef HAVE_LIBWRAP
struct service_settings tcpwrap_service_settings = {
.name = "tcpwrap",
.protocol = "",
.type = "",
.executable = "tcpwrap",
.user = "$default_internal_user",
.group = "",
.privileged_group = "",
.extra_groups = "",
.chroot = "",
.process_min_avail = 0,
.process_limit = 0,
.client_limit = 1,
.service_count = 0,
.idle_kill = 0,
};
#endif