Quota values can be followed by G as well as K and M.
authorPhilip Hazel <ph10@hermes.cam.ac.uk>
Wed, 27 Apr 2005 10:06:00 +0000 (10:06 +0000)
committerPhilip Hazel <ph10@hermes.cam.ac.uk>
Wed, 27 Apr 2005 10:06:00 +0000 (10:06 +0000)
doc/doc-txt/ChangeLog
doc/doc-txt/NewStuff
src/src/transports/appendfile.c

index 0470f493b3f6a0da2b0ed0d0596fc7ec98be8505..e8884a29f30357f64e77f2ad5ac03900bc00e4f2 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.124 2005/04/27 10:00:18 ph10 Exp $
+$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.125 2005/04/27 10:06:00 ph10 Exp $
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -237,6 +237,8 @@ PH/38 Installed a patch from Ian Freislich, with the agreement of Tom Kistner.
       spam.[ch] uses a 3600 second timeout on spamd socket reads, further, it
       blindly assumes that writes won't block so it may never time out."
 
+PH/39 Allow G after quota size as well as K and M.
+
 
 A note about Exim versions 4.44 and 4.50
 ----------------------------------------
index 16f494bb98c94d84e6060227931ff8cae24178c9..f2e4006b7d5d4f1ae0d66aa0e5c5d155a37c9651 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/NewStuff,v 1.35 2005/04/06 14:40:23 ph10 Exp $
+$Cambridge: exim/doc/doc-txt/NewStuff,v 1.36 2005/04/27 10:06:00 ph10 Exp $
 
 New Features in Exim
 --------------------
@@ -147,6 +147,8 @@ PH/08 The redirect router has two new options, sieve_useraddress and
       entire original local part (including any prefix or suffix) is used for
       :user. An unset subaddress is treated as an empty subaddress.
 
+PH/09 Quota values can be followed by G as well as K and M.
+
 
 Version 4.50
 ------------
index 27e87cf0b3335161aa0532ae5abe561760bae367..43575d15ba7a74323099e5f94947f060a8c45d21 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/transports/appendfile.c,v 1.5 2005/02/17 11:58:27 ph10 Exp $ */
+/* $Cambridge: exim/src/src/transports/appendfile.c,v 1.6 2005/04/27 10:06:00 ph10 Exp $ */
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
@@ -286,12 +286,13 @@ for (i = 0; i < 5; i++)
 
     d = Ustrtod(s, &rest);
 
-    /* Handle following characters K, M, %, the latter being permitted
+    /* Handle following characters K, M, G, %, the latter being permitted
     for quota_warn_threshold only. A threshold with no quota setting is
     just ignored. */
 
     if (tolower(*rest) == 'k') { d *= 1024.0; rest++; }
     else if (tolower(*rest) == 'm') { d *= 1024.0*1024.0; rest++; }
+    else if (tolower(*rest) == 'g') { d *= 1024.0*1024.0*1024.0; rest++; }
     else if (*rest == '%' && i == 2)
       {
       if (ob->quota_value <= 0 && !ob->maildir_use_size_file) d = 0;