X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Ftransports%2Fappendfile.h;h=4f0f126bc56c16adcd91622a4a56d2a103f39631;hb=81344b40e3de597f60758926e5e1ae7a81dd5457;hp=63a7c4f02e0e145d8a3838ad9c0ce27aa1fcf09a;hpb=d6629cdc9b1eb95d4c7b2f6c55a102bd0df38d31;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/transports/appendfile.h b/src/src/transports/appendfile.h index 63a7c4f02..4f0f126bc 100644 --- a/src/src/transports/appendfile.h +++ b/src/src/transports/appendfile.h @@ -1,10 +1,8 @@ -/* $Cambridge: exim/src/src/transports/appendfile.h,v 1.5 2006/04/27 08:53:24 ph10 Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2006 */ +/* Copyright (c) University of Cambridge 1995 - 2018 */ /* See the file NOTICE for conditions of use and distribution. */ /* Private structure for the private options. */ @@ -23,6 +21,7 @@ typedef struct { uschar *quota_warn_threshold; uschar *mailbox_size_string; uschar *mailbox_filecount_string; + uschar *expand_maildir_use_size_file; uschar *maildir_dir_regex; uschar *maildir_tag; uschar *maildirfolder_create_regex; @@ -71,6 +70,8 @@ typedef struct { BOOL mbx_format; BOOL quota_warn_threshold_is_percent; BOOL quota_is_inclusive; + BOOL quota_no_check; + BOOL quota_filecount_no_check; } appendfile_transport_options_block; /* Restricted creation options */ @@ -93,6 +94,6 @@ extern void appendfile_transport_init(transport_instance *); /* Function that is shared with tf_maildir.c */ -extern off_t check_dir_size(uschar *, int *, const pcre *); +extern off_t check_dir_size(const uschar *, int *, const pcre *); /* End of transports/appendfile.h */