lib/config/_autoresponse_file.cc
changeset 0 6f7a81934006
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/config/_autoresponse_file.cc	Wed Jan 16 22:39:43 2008 +0100
@@ -0,0 +1,10 @@
+#include "configio.h"
+#include <limits.h>
+
+static mystring default_autoresponse_file("message.txt");
+static const mystring filename_autoresponse_file = "autoresponse-file";
+mystring configuration::autoresponse_file() const {
+  return read_str(filename_autoresponse_file,
+                    default_autoresponse_file,
+		    (config_cache<mystring>&)autoresponse_file_cache);
+}