changeset 2:26398b4be952 noffle

[svn] Added some comments.
author enz
date Thu, 06 Jan 2000 09:30:49 +0000
parents 912123d43a87
children 0838ae9606b2
files config.c
diffstat 1 files changed, 17 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/config.c	Tue Jan 04 13:49:50 2000 +0000
+++ b/config.c	Thu Jan 06 09:30:49 2000 +0000
@@ -6,7 +6,7 @@
     SPOOLDIR
     VERSION
 
-  $Id: config.c 3 2000-01-04 11:35:42Z enz $
+  $Id: config.c 7 2000-01-06 09:30:49Z enz $
 */
 
 #include "config.h"
@@ -45,22 +45,22 @@
     int servIdx; /* for server enumeration */
 } config =
 {
-    SPOOLDIR,
-    VERSION,
-    300,
-    30,
-    7,
-    30,
-    FALSE,
-    FALSE,
-    FALSE,
-    TRUE,
-    "over",
-    "",
-    0,
-    0,
-    NULL,
-    0
+    SPOOLDIR, /* spoolDir */
+    VERSION,  /* version */
+    300,      /* maxFetch */
+    30,       /* autoUnsubscribeDays */
+    7,        /* threadFollowTime */
+    30,       /* connectTimeout */
+    FALSE,    /* autoSubscribe */
+    FALSE,    /* autoUnsubscribe */
+    FALSE,    /* removeMsgId */
+    TRUE,     /* replaceMsgId */
+    "over",   /* autoSubscribeMode */
+    "",       /* mailTo */
+    0,        /* numServ */
+    0,        /* maxServ */
+    NULL,     /* serv */
+    0         /* servIdx */
 };
 
 const char * Cfg_spoolDir( void ) { return config.spoolDir; }