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

« back to all changes in this revision

Viewing changes to exim_monitor/em_globals.c

  • 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/exim_monitor/em_globals.c,v 1.7 2005/05/23 15:28:38 fanf2 Exp $ */
 
2
 
1
3
/*************************************************
2
4
*                Exim Monitor                    *
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
 
42
44
uschar *action_required;
43
45
uschar *alternate_config = NULL;
44
46
 
 
47
#ifdef EXPERIMENTAL_BRIGHTMAIL
 
48
int     bmi_run                = 0;
 
49
uschar *bmi_verdicts           = NULL;
 
50
#endif
 
51
 
45
52
int     body_max = 20000;
46
53
 
47
54
uschar *exim_path              = US BIN_DIRECTORY "/exim"
48
 
                        "\0<---------------Space to patch exim_path->";
 
55
                        "\0<---------------Space to patch exim_path->";
49
56
 
50
57
int     eximon_initialized = FALSE;
51
58
 
114
121
uschar *acl_var[ACL_C_MAX+ACL_M_MAX];
115
122
 
116
123
uschar *active_hostname        = NULL;
 
124
BOOL    allow_unqualified_recipient = FALSE;
 
125
BOOL    allow_unqualified_sender = FALSE;
117
126
uschar *authenticated_id       = NULL;
118
127
uschar *authenticated_sender   = NULL;
119
128
 
120
129
uschar *big_buffer             = NULL;
121
130
int     big_buffer_size        = BIG_BUFFER_SIZE;
122
131
int     body_linecount         = 0;
 
132
int     body_zerocount         = 0;
123
133
 
124
134
BOOL    deliver_firsttime      = FALSE;
125
135
BOOL    deliver_freeze         = FALSE;
126
136
int     deliver_frozen_at      = 0;
127
137
BOOL    deliver_manual_thaw    = FALSE;
 
138
 
 
139
#ifdef EXPERIMENTAL_DOMAINKEYS
 
140
uschar *dk_signing_domain      = NULL;
 
141
uschar *dk_signing_selector    = NULL;
 
142
int     dk_do_verify           = 0;
 
143
#endif
 
144
 
128
145
BOOL    dont_deliver           = FALSE;
129
146
 
 
147
#ifdef WITH_CONTENT_SCAN
 
148
int     fake_response          = OK;
 
149
#endif
 
150
 
130
151
header_line *header_last       = NULL;
131
152
header_line *header_list       = NULL;
132
153
 
 
154
BOOL    host_lookup_deferred   = FALSE;
133
155
BOOL    host_lookup_failed     = FALSE;
134
156
uschar *interface_address      = NULL;
135
157
int     interface_port         = 0;
137
159
BOOL    local_error_message    = FALSE;
138
160
uschar *local_scan_data        = NULL;
139
161
BOOL    log_timezone           = FALSE;
 
162
 
 
163
#ifdef WITH_CONTENT_SCAN
 
164
uschar *spam_score_int         = NULL;
 
165
#endif
 
166
 
140
167
int     message_age            = 0;
141
168
uschar *message_id;
142
169
uschar *message_id_external;
170
197
uschar *sender_ident           = NULL;
171
198
BOOL    sender_local           = FALSE;
172
199
BOOL    sender_set_untrusted   = FALSE;
 
200
uschar *smtp_active_hostname   = NULL;
173
201
 
174
202
BOOL    split_spool_directory  = FALSE;
175
203
uschar *spool_directory        = US SPOOL_DIRECTORY;