aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Faurot <eric@faurot.net>2013-11-07 14:59:39 +0100
committerEric Faurot <eric@faurot.net>2013-11-07 14:59:39 +0100
commit7873e8972cd806f9dfe97491f199d740b94749a3 (patch)
tree28641b96a39fb172d214efad49e8a5cab726e26a
parentlowercase pki name from smtp and mta before doing the lookup. (diff)
downloadOpenSMTPD-7873e8972cd806f9dfe97491f199d740b94749a3.tar.xz
OpenSMTPD-7873e8972cd806f9dfe97491f199d740b94749a3.zip
disable envelope_check_dict for now. it is broken.opensmtpd-201311071822
-rw-r--r--smtpd/envelope.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/smtpd/envelope.c b/smtpd/envelope.c
index b064daf3..4669feb4 100644
--- a/smtpd/envelope.c
+++ b/smtpd/envelope.c
@@ -591,10 +591,10 @@ envelope_ascii_load(struct envelope *ep, struct dict *d)
const char *field;
char *value;
void *hdl;
-
+#if 0
if (! envelope_check_dict(d))
goto err;
-
+#endif
hdl = NULL;
while (dict_iter(d, &hdl, &field, (void **)&value))
if (! ascii_load_field(field, ep, value))