summaryrefslogtreecommitdiff
path: root/comsat/cfg.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2001-11-12 13:11:58 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2001-11-12 13:11:58 +0000
commit27f7da99fe6550adce91ab97685f142deea1c153 (patch)
treec26c4451f5ea4b13ad992d8cf9dbbe92e0e97247 /comsat/cfg.c
parent814b830cdb12753fb7983a2a2a470c33fbb6bd2c (diff)
downloadmailutils-27f7da99fe6550adce91ab97685f142deea1c153.tar.gz
mailutils-27f7da99fe6550adce91ab97685f142deea1c153.tar.bz2
New keyword: allow-biffrc.
Diffstat (limited to 'comsat/cfg.c')
-rw-r--r--comsat/cfg.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/comsat/cfg.c b/comsat/cfg.c
index 758ee9a1d..a1fcdeeaa 100644
--- a/comsat/cfg.c
+++ b/comsat/cfg.c
@@ -169,7 +169,16 @@ read_config (char *config_file)
continue;
}
- if (strcmp (argv[0], "max-requests") == 0)
+ if (strcmp (argv[0], "allow-biffrc") == 0)
+ {
+ if (strcmp (argv[1], "yes") == 0)
+ allow_biffrc = 1;
+ else if (strcmp (argv[1], "no") == 0)
+ allow_biffrc = 0;
+ else
+ syslog (LOG_ERR, "%s:%d: yes or no expected", config_file, line);
+ }
+ else if (strcmp (argv[0], "max-requests") == 0)
maxrequests = strtoul (argv[1], NULL, 0);
else if (strcmp (argv[0], "request-control-interval") == 0)
request_control_interval = strtoul (argv[1], NULL, 0);

Return to:

Send suggestions and report system problems to the System administrator.