View | Details | Raw Unified | Return to bug 259147
Collapse All | Expand All

(-)b/mail/sendmail/files/patch-sendmail_alias.c (+19 lines)
Added Link Here
1
https://groups.google.com/g/comp.mail.sendmail/c/V9GeqvBi2rY/m/redOVdkbAwAJ
2
3
--- sendmail/alias.c.orig	2021-10-13 17:11:01 UTC
4
+++ sendmail/alias.c
5
@@ -817,10 +817,13 @@ readaliases(map, af, announcestats, logstats)
6
 				(void) sm_io_ungetc(af, SM_TIME_DEFAULT, c);
7
 			if (c != ' ' && c != '\t')
8
 				break;
9
+#if _FFR_8BITENVADDR
10
+			syserr("554 5.3.5 Continuation line currently not supported for USE_EAI nor _FFR_EIGHT_BIT_ADDR_OK");
11
+#endif
12
 
13
 			/* read continuation line */
14
 			if (sm_io_fgets(af, SM_TIME_DEFAULT, p,
15
-					sizeof(line) - (p-line)) < 0)
16
+					sizeof(lbuf) - (p-line)) < 0)
17
 				break;
18
 			LineNumber++;
19
 

Return to bug 259147