diff options
Diffstat (limited to 'mail/sendmail-devel/files/patch-readcf.c')
-rw-r--r-- | mail/sendmail-devel/files/patch-readcf.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mail/sendmail-devel/files/patch-readcf.c b/mail/sendmail-devel/files/patch-readcf.c new file mode 100644 index 000000000000..2753468c16d7 --- /dev/null +++ b/mail/sendmail-devel/files/patch-readcf.c @@ -0,0 +1,26 @@ +--- sendmail/readcf.c.orig 2019-02-15 10:30:19 UTC ++++ sendmail/readcf.c +@@ -2988,6 +2988,10 @@ static struct optioninfo + { "ClientCACertPath", O_CLTCACERTPATH, OI_NONE }, + #endif + ++#if USE_BLACKLIST ++# define O_BLACKLIST 0xf2 ++ { "UseBlacklist", O_BLACKLIST, OI_NONE }, ++#endif + { NULL, '\0', OI_NONE } + }; + +@@ -4661,6 +4665,12 @@ setoption(opt, val, safe, sticky, e) + break; + #endif + ++#if USE_BLACKLIST ++ case O_BLACKLIST: ++ UseBlacklist = atobool(val); ++ break; ++#endif ++ + default: + if (tTd(37, 1)) + { |