Merge branch 'debian' into hcoop_489
[hcoop/debian/exim4.git] / src / dane-gnu.c
CommitLineData
2813c06e
CE
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
5/* Copyright (c) University of Cambridge 1995 - 2013 */
6/* See the file NOTICE for conditions of use and distribution. */
7
8/* This file (will) provide DANE support for Exim using the GnuTLS library,
9but is not yet an available supported implementation. This file is #included
10into dane.c when USE_GNUTLS has been set. */
11
12/* As of March 2014, the reference implementation for DANE that we are
13using was written by Viktor Dukhovny and it supports OpenSSL only. At
14some point we will add GnuTLS support, but for right now just abort the
15build and explain why. */
16
17
18#error No support for DANE using GnuTLS yet.
19
20
21/* End of dane-gnu.c */