summaryrefslogtreecommitdiffstats
path: root/sendmail.c
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2013-02-04 03:10:42 +0100
committermanuel <manuel@mausz.at>2013-02-04 03:10:42 +0100
commit4303fe45e41a4ebc5c068790cb08b6d8d1eb115e (patch)
tree78fb607ffa8fd296cbfe1d7164f2add1fad806be /sendmail.c
parent296daa14bef6237c21fc4cad74364d8428aed04b (diff)
downloadqmail-4303fe45e41a4ebc5c068790cb08b6d8d1eb115e.tar.gz
qmail-4303fe45e41a4ebc5c068790cb08b6d8d1eb115e.tar.bz2
qmail-4303fe45e41a4ebc5c068790cb08b6d8d1eb115e.zip
[PATCH] Making the sendmail binary ignore -N options for compatibility
sendmail-ignore-N
Diffstat (limited to 'sendmail.c')
-rw-r--r--sendmail.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sendmail.c b/sendmail.c
index b62fef8..ae23ef2 100644
--- a/sendmail.c
+++ b/sendmail.c
@@ -96,8 +96,9 @@ char **argv;
96 96
97 flagh = 0; 97 flagh = 0;
98 sender = 0; 98 sender = 0;
99 while ((opt = getopt(argc,argv,"vimte:f:p:o:B:F:EJxb:")) != opteof) 99 while ((opt = getopt(argc,argv,"vimte:f:p:o:B:F:EJxb:N:")) != opteof)
100 switch(opt) { 100 switch(opt) {
101 case 'N': break; /* ignore DSN option */
101 case 'B': break; 102 case 'B': break;
102 case 't': flagh = 1; break; 103 case 't': flagh = 1; break;
103 case 'f': sender = optarg; break; 104 case 'f': sender = optarg; break;