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

« back to all changes in this revision

Viewing changes to src/transports/appendfile.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/appendfile.h,v 1.3 2005/06/07 15:20:56 ph10 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. */
19
21
  uschar *quota_filecount;
20
22
  uschar *quota_size_regex;
21
23
  uschar *quota_warn_threshold;
 
24
  uschar *mailbox_size_string;
 
25
  uschar *mailbox_filecount_string;
22
26
  uschar *maildir_dir_regex;
23
27
  uschar *maildir_tag;
24
28
  uschar *mailstore_prefix;
26
30
  uschar *check_string;
27
31
  uschar *escape_string;
28
32
  uschar *file_format;
29
 
  int   quota_value;
 
33
  off_t quota_value;
 
34
  off_t quota_warn_threshold_value;
 
35
  off_t mailbox_size_value;
 
36
  int   mailbox_filecount_value;
30
37
  int   quota_filecount_value;
31
 
  int   quota_warn_threshold_value;
32
38
  int   mode;
33
39
  int   dirmode;
34
40
  int   lockfile_mode;
86
92
 
87
93
/* Function that is shared with tf_maildir.c */
88
94
 
89
 
extern int  check_dir_size(uschar *, int *, const pcre *);
 
95
extern off_t  check_dir_size(uschar *, int *, const pcre *);
90
96
 
91
97
/* End of transports/appendfile.h */