[exim-cvs] Feature switch

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Exim Git Commits Mailing List
Datum:  
To: exim-cvs
Betreff: [exim-cvs] Feature switch
Gitweb: http://git.exim.org/exim.git/commitdiff/c65be1246d0cb9dc90bdeb99bb9162153a5e6fd7
Commit:     c65be1246d0cb9dc90bdeb99bb9162153a5e6fd7
Parent:     a7f61b37d11c027197415eff3556173a44c378ba
Author:     Jeremy Harris <jgh146exb@???>
AuthorDate: Wed Mar 25 20:39:56 2015 +0000
Committer:  Jeremy Harris <jgh146exb@???>
CommitDate: Fri Apr 3 15:24:26 2015 +0100


    Feature switch
---
 doc/doc-txt/experimental-spec.txt |    8 ++++++++
 src/src/config.h.defaults         |    1 +
 src/src/exim.c                    |    3 +++
 3 files changed, 12 insertions(+), 0 deletions(-)


diff --git a/doc/doc-txt/experimental-spec.txt b/doc/doc-txt/experimental-spec.txt
index e6e066c..ce4edeb 100644
--- a/doc/doc-txt/experimental-spec.txt
+++ b/doc/doc-txt/experimental-spec.txt
@@ -1270,6 +1270,14 @@ in combination with EXPERIMENTAL_EVENT), and a new variable
$tls_out_tlsa_usage (detailed above).


+
+SMTPUTF8
+------------------------------------------------------------
+Internationalised mail name handling.
+RFCs 6530, 6533, 5890
+
+
+
--------------------------------------------------------------
End of file
--------------------------------------------------------------
diff --git a/src/src/config.h.defaults b/src/src/config.h.defaults
index ac4994a..d31f115 100644
--- a/src/src/config.h.defaults
+++ b/src/src/config.h.defaults
@@ -171,6 +171,7 @@ it's a default value. */
#define EXPERIMENTAL_DCC
#define EXPERIMENTAL_DMARC
#define EXPERIMENTAL_EVENT
+#define EXPERIMENTAL_INTERNATIONAL
#define EXPERIMENTAL_PROXY
#define EXPERIMENTAL_REDIS
#define EXPERIMENTAL_SOCKS
diff --git a/src/src/exim.c b/src/src/exim.c
index 54725ef..f6d9be6 100644
--- a/src/src/exim.c
+++ b/src/src/exim.c
@@ -856,6 +856,9 @@ fprintf(f, "Support for:");
#ifdef EXPERIMENTAL_SOCKS
fprintf(f, " Experimental_SOCKS");
#endif
+#ifdef EXPERIMENTAL_INTERNATIONAL
+ fprintf(f, " Experimental_International");
+#endif
fprintf(f, "\n");

fprintf(f, "Lookups (built-in):");