Fixed missing character in DSN bounce messages
authorArt Cancro <ajc@citadel.org>
Thu, 19 Apr 2007 02:20:39 +0000 (02:20 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 19 Apr 2007 02:20:39 +0000 (02:20 +0000)
citadel/serv_smtp.c

index 56376305b09dceffdbbc2f95c22f30a01319de15..39128f4667dea4a473b84219f67a7e0a6993fdda 100644 (file)
@@ -1468,7 +1468,7 @@ void smtp_do_bounce(char *instr) {
                        strcat(bmsg->cm_fields['M'], addr);
                        strcat(bmsg->cm_fields['M'], ": ");
                        strcat(bmsg->cm_fields['M'], dsn);
-                       strcat(bmsg->cm_fields['M'], "\n");
+                       strcat(bmsg->cm_fields['M'], "\r\n");
 
                        remove_token(instr, i, '\n');
                        --i;