Mercurial > masqmail
comparison src/conf.c @ 154:fc1e5aa286ed
merge
author | meillo@marmaro.de |
---|---|
date | Thu, 08 Jul 2010 09:20:34 +0200 |
parents | 51d8eadf3c79 |
children | b5ab9cb2f18a |
comparison
equal
deleted
inserted
replaced
150:0025a7677d16 | 154:fc1e5aa286ed |
---|---|
430 conf.remote_port = 25; | 430 conf.remote_port = 25; |
431 conf.do_relay = TRUE; | 431 conf.do_relay = TRUE; |
432 conf.alias_local_cmp = strcmp; | 432 conf.alias_local_cmp = strcmp; |
433 conf.max_defer_time = 86400 * 4; /* 4 days */ | 433 conf.max_defer_time = 86400 * 4; /* 4 days */ |
434 conf.max_msg_size = 0; /* no limit on msg size */ | 434 conf.max_msg_size = 0; /* no limit on msg size */ |
435 conf.spool_dir = SPOOL_DIR; | |
436 conf.log_dir = LOG_DIR; | |
437 conf.local_hosts = parse_list("localhost", FALSE); | |
438 conf.mail_dir = "/var/mail"; | |
435 | 439 |
436 if ((in = fopen(filename, "r")) == NULL) { | 440 if ((in = fopen(filename, "r")) == NULL) { |
437 fprintf(stderr, "could not open config file %s: %s\n", filename, strerror(errno)); | 441 fprintf(stderr, "could not open config file %s: %s\n", filename, strerror(errno)); |
438 return FALSE; | 442 return FALSE; |
439 } | 443 } |