comparison src/config/main.c @ 9912:37bc3a3d4464 HEAD

Removed mail_log_max_lines_per_sec setting and related code. It's pretty unnecessary and there's really no good way to implement it with shared log pipes.
author Timo Sirainen <tss@iki.fi>
date Tue, 08 Sep 2009 19:34:49 -0400
parents 8ad868df4649
children 1e63221f5c83
comparison
equal deleted inserted replaced
9911:d7bbe0964b0d 9912:37bc3a3d4464
25 while ((c = getopt(argc, argv, master_service_getopt_string())) > 0) { 25 while ((c = getopt(argc, argv, master_service_getopt_string())) > 0) {
26 if (!master_service_parse_option(master_service, c, optarg)) 26 if (!master_service_parse_option(master_service, c, optarg))
27 exit(FATAL_DEFAULT); 27 exit(FATAL_DEFAULT);
28 } 28 }
29 29
30 master_service_init_log(master_service, "config: ", 0); 30 master_service_init_log(master_service, "config: ");
31 master_service_init_finish(master_service); 31 master_service_init_finish(master_service);
32 32
33 path = master_service_get_config_path(master_service); 33 path = master_service_get_config_path(master_service);
34 if (config_parse_file(path, TRUE, &error) <= 0) 34 if (config_parse_file(path, TRUE, &error) <= 0)
35 i_fatal("%s", error); 35 i_fatal("%s", error);