~ubuntu-branches/ubuntu/hardy/exim4/hardy-proposed

« back to all changes in this revision

Viewing changes to src/transports/smtp.h

  • Committer: Bazaar Package Importer
  • Author(s): Marc Haber
  • Date: 2005-07-02 06:08:34 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050702060834-qk17pd52kb9nt3bj
Tags: 4.52-1
* new upstream version 4.51. (mh)
  * adapt 70_remove_exim-users_references
  * remove 37_gnutlsparams
  * adapt 36_pcre
  * adapt 31_eximmanpage
* fix package priorities to have them in sync with override again. (mh)
* Fix error in nb (Norwegian) translation.
  Thanks to Helge Hafting. (mh). Closes: #315775
* Standards-Version: 3.6.2, no changes needed. (mh)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Cambridge: exim/exim-src/src/transports/smtp.h,v 1.5 2005/03/08 15:32:02 tom Exp $ */
 
2
 
1
3
/*************************************************
2
4
*     Exim - an Internet mail transport agent    *
3
5
*************************************************/
4
6
 
5
 
/* Copyright (c) University of Cambridge 1995 - 2004 */
 
7
/* Copyright (c) University of Cambridge 1995 - 2005 */
6
8
/* See the file NOTICE for conditions of use and distribution. */
7
9
 
8
10
/* Private structure for the private options and other private data. */
30
32
  int     final_timeout;
31
33
  int     size_addition;
32
34
  int     hosts_max_try;
 
35
  int     hosts_max_try_hardlimit;
33
36
  BOOL    allow_localhost;
34
37
  BOOL    gethostbyname;
35
38
  BOOL    dns_qualify_single;
47
50
  uschar *tls_verify_certificates;
48
51
  BOOL    tls_tempfail_tryclear;
49
52
  #endif
 
53
  #ifdef EXPERIMENTAL_DOMAINKEYS
 
54
  uschar *dk_domain;
 
55
  uschar *dk_private_key;
 
56
  uschar *dk_selector;
 
57
  uschar *dk_canon;
 
58
  uschar *dk_headers;
 
59
  uschar *dk_strict;
 
60
  #endif
50
61
} smtp_transport_options_block;
51
62
 
52
63
/* Data for reading the private options. */