~ubuntu-branches/ubuntu/oneiric/exim4/oneiric

« back to all changes in this revision

Viewing changes to src/globals.c

  • Committer: Bazaar Package Importer
  • Author(s): Artur Rona
  • Date: 2010-12-28 22:20:17 UTC
  • mfrom: (2.3.4 experimental)
  • Revision ID: james.westby@ubuntu.com-20101228222017-r6vg4eqlqy2fk4ul
Tags: 4.73~rc1-1ubuntu1
* Merge from debian unstable.  Remaining changes: (LP: #697934)
  - debian/patches/71_exiq_grep_error_on_messages_without_size.patch:
    + Improve handling of broken messages when "exim4 -bp" (mailq)
      reports lines without size info.
  - debian/control: Don't declare a Provides: default-mta; in Ubuntu,
    we want postfix to be the default.
  - debian/{control,rules}: Add and enable hardened build for PIE.
    (Closes: #542726)
* Drop B-D on libmysqlclient15-dev, resolved in Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Cambridge: exim/exim-src/src/globals.c,v 1.86 2009/11/16 19:50:37 nm4 Exp $ */
 
1
/* $Cambridge: exim/src/src/globals.c,v 1.88 2010/06/12 15:21:26 jetmore Exp $ */
2
2
 
3
3
/*************************************************
4
4
*     Exim - an Internet mail transport agent    *
115
115
uschar *gnutls_require_mac     = NULL;
116
116
uschar *gnutls_require_kx      = NULL;
117
117
uschar *gnutls_require_proto   = NULL;
 
118
uschar *openssl_options        = NULL;
118
119
const pcre *regex_STARTTLS     = NULL;
119
120
uschar *tls_advertise_hosts    = NULL;    /* This is deliberate */
120
121
uschar *tls_certificate        = NULL;
932
933
const pcre *regex_SIZE         = NULL;
933
934
const pcre *regex_smtp_code    = NULL;
934
935
const pcre *regex_ismsgid      = NULL;
 
936
#ifdef WHITELIST_D_MACROS
 
937
const pcre *regex_whitelisted_macro = NULL;
 
938
#endif
935
939
#ifdef WITH_CONTENT_SCAN
936
940
uschar *regex_match_string     = NULL;
937
941
#endif
948
952
uschar *rfc1413_hosts          = US"*";
949
953
int     rfc1413_query_timeout  = 5;
950
954
/* BOOL    rfc821_domains         = FALSE;  <<< on the way out */
 
955
uid_t   root_gid               = ROOT_GID;
951
956
uid_t   root_uid               = ROOT_UID;
952
957
 
953
958
router_instance  *routers  = NULL;
1190
1195
 
1191
1196
gid_t   system_filter_gid      = 0;
1192
1197
BOOL    system_filter_gid_set  = FALSE;
1193
 
uid_t   system_filter_uid      = 0;
 
1198
uid_t   system_filter_uid      = (uid_t)-1;
1194
1199
BOOL    system_filter_uid_set  = FALSE;
1195
1200
BOOL    system_filtering       = FALSE;
1196
1201
 
1197
1202
BOOL    tcp_nodelay            = TRUE;
 
1203
#ifdef USE_TCP_WRAPPERS
 
1204
uschar *tcp_wrappers_daemon_name = US TCP_WRAPPERS_DAEMON_NAME;
 
1205
#endif
1198
1206
int     test_harness_load_avg  = 0;
1199
1207
int     thismessage_size_limit = 0;
1200
1208
int     timeout_frozen_after   = 0;
1266
1274
tree_node  *tree_unusable      = NULL;
1267
1275
 
1268
1276
BOOL    trusted_caller         = FALSE;
 
1277
BOOL    trusted_config         = TRUE;
1269
1278
gid_t  *trusted_groups         = NULL;
1270
1279
uid_t  *trusted_users          = NULL;
1271
1280
uschar *timezone_string        = US TIMEZONE_DEFAULT;