comparison src/smtp_in.c @ 121:dabd4e706b78

better formating in debug log
author meillo@marmaro.de
date Thu, 01 Jul 2010 13:32:33 +0200
parents cd59a5b4d3dd
children 05fe7500149d
comparison
equal deleted inserted replaced
120:cd59a5b4d3dd 121:dabd4e706b78
189 } 189 }
190 190
191 if (psc->prot == PROT_ESMTP) { 191 if (psc->prot == PROT_ESMTP) {
192 smtp_printf(out, "250-%s Nice to meet you with ESMTP\r\n", conf.host_name); 192 smtp_printf(out, "250-%s Nice to meet you with ESMTP\r\n", conf.host_name);
193 smtp_printf(out, "250-SIZE %d\r\n", conf.max_msg_size); 193 smtp_printf(out, "250-SIZE %d\r\n", conf.max_msg_size);
194 smtp_printf(out, "250-PIPELINING\r\n" "250 HELP\r\n"); 194 smtp_printf(out, "250-PIPELINING\r\n");
195 smtp_printf(out, "250 HELP\r\n");
195 } else { 196 } else {
196 smtp_printf(out, "250 %s pretty old mailer, huh?\r\n", conf.host_name); 197 smtp_printf(out, "250 %s pretty old mailer, huh?\r\n", conf.host_name);
197 } 198 }
198 break; 199 break;
199 200