masqmail-0.2

diff src/conf.c @ 120:cd59a5b4d3dd

added support for SMTP SIZE 0 (unlimited)
author meillo@marmaro.de
date Thu, 01 Jul 2010 13:30:30 +0200
parents 5ec5e6637049
children d68f0cab0be5
line diff
     1.1 --- a/src/conf.c	Thu Jul 01 13:11:38 2010 +0200
     1.2 +++ b/src/conf.c	Thu Jul 01 13:30:30 2010 +0200
     1.3 @@ -431,7 +431,7 @@
     1.4  	conf.do_relay = TRUE;
     1.5  	conf.alias_local_cmp = strcmp;
     1.6  	conf.max_defer_time = 86400 * 4;  /* 4 days */
     1.7 -	conf.max_msg_size = 100*1024*1024; /* in bytes (100MB are probably enough) */
     1.8 +	conf.max_msg_size = 0; /* no limit on msg size */
     1.9  
    1.10  	if ((in = fopen(filename, "r")) == NULL) {
    1.11  		fprintf(stderr, "could not open config file %s: %s\n", filename, strerror(errno));