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 wrap: on
line diff
--- a/src/conf.c	Thu Jul 01 13:11:38 2010 +0200
+++ b/src/conf.c	Thu Jul 01 13:30:30 2010 +0200
@@ -431,7 +431,7 @@
 	conf.do_relay = TRUE;
 	conf.alias_local_cmp = strcmp;
 	conf.max_defer_time = 86400 * 4;  /* 4 days */
-	conf.max_msg_size = 100*1024*1024; /* in bytes (100MB are probably enough) */
+	conf.max_msg_size = 0; /* no limit on msg size */
 
 	if ((in = fopen(filename, "r")) == NULL) {
 		fprintf(stderr, "could not open config file %s: %s\n", filename, strerror(errno));