deliver-settings.c revision a11689fe3fbb3bca11b9cb4ae5faf27db96401cc
/* Copyright (c) 2005-2008 Dovecot authors, see the included COPYING file */
#include "deliver.h"
#include "array.h"
#include "hostpid.h"
#include "istream.h"
#include "settings-parser.h"
#include "mail-storage-settings.h"
#include "deliver-settings.h"
#include <stddef.h>
#include <stdlib.h>
static struct setting_define deliver_setting_defines[] = {
};
static struct deliver_settings deliver_default_settings = {
"Your message to <%t> was automatically rejected:%n%r",
};
struct setting_parser_info deliver_setting_parser_info = {
};
{
}
}
struct setting_parser_context *
struct mail_user_settings **user_set_r)
{
static const struct setting_parser_info *roots[] = {
};
void **sets;
struct deliver_settings *deliver_set;
struct setting_parser_context *parser;
if (settings_pool == NULL)
else
if (settings_parse_environ(parser) < 0) {
}
deliver_set = sets[0];
"postmaster_address setting not given");
}
*set_r = deliver_set;
return parser;
}
{
unsigned int i, count;
if (p != NULL)
else
"Invalid userdb input '%s': %s", str[i],
}
} T_END;
}