ingress control
authorJeremy Harris <jgh146exb@wizmail.org>
Wed, 25 Mar 2015 20:59:17 +0000 (20:59 +0000)
committerJeremy Harris <jgh146exb@wizmail.org>
Fri, 3 Apr 2015 14:24:26 +0000 (15:24 +0100)
src/src/globals.c
src/src/globals.h
src/src/readconf.c

index ffaa53cd18c2a81e09d3eae57bd9e01348550f69..cb93a019288801760ead6154477b358023c7938b 100644 (file)
@@ -1273,6 +1273,9 @@ int     smtp_rlr_limit         = 0;
 int     smtp_rlr_threshold     = INT_MAX;
 BOOL    smtp_use_pipelining    = FALSE;
 BOOL    smtp_use_size          = FALSE;
+#ifdef EXPERIMENTAL_INTERNATIONAL
+uschar *smtputf8_advertise_hosts = US"*";
+#endif
 
 #ifdef WITH_CONTENT_SCAN
 uschar *spamd_address          = US"127.0.0.1 783";
index 38b2a9dd6e7eb3f2e2fdf822400ecb3c43c5537d..d5b34201b7e47262f7eaac76774281edbb6fde6c 100644 (file)
@@ -825,6 +825,9 @@ extern int     smtp_rlr_limit;         /* Max delay */
 extern int     smtp_rlr_threshold;     /* Threshold for RCPT rate limit */
 extern BOOL    smtp_use_pipelining;    /* Global for passed connections */
 extern BOOL    smtp_use_size;          /* Global for passed connections */
+#ifdef EXPERIMENTAL_INTERNATIONAL
+extern uschar *smtputf8_advertise_hosts; /* ingress control */
+#endif
 
 #ifdef WITH_CONTENT_SCAN
 extern uschar *spamd_address;          /* address for the spamassassin daemon */
index e2d3c518f4e1e40d647752f63a0eec06b72fea85..67241cb36e2f49d29d6f493da38aebc5ca2d331e 100644 (file)
@@ -398,6 +398,9 @@ static optionlist optionlist_config[] = {
   { "smtp_receive_timeout",     opt_func,        &fn_smtp_receive_timeout },
   { "smtp_reserve_hosts",       opt_stringptr,   &smtp_reserve_hosts },
   { "smtp_return_error_details",opt_bool,        &smtp_return_error_details },
+#ifdef EXPERIMENTAL_INTERNATIONAL
+  { "smtputf8_advertise_hosts", opt_stringptr,   &smtputf8_advertise_hosts },
+#endif
 #ifdef WITH_CONTENT_SCAN
   { "spamd_address",            opt_stringptr,   &spamd_address },
 #endif