lib/config/_postmaster_email.cc
changeset 0 6f7a81934006
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/config/_postmaster_email.cc	Wed Jan 16 22:39:43 2008 +0100
@@ -0,0 +1,10 @@
+#include "configio.h"
+#include <limits.h>
+
+static mystring default_postmaster_email("postmaster@");
+static const mystring filename_postmaster_email = "postmaster-email";
+mystring configuration::postmaster_email() const {
+  return read_str(filename_postmaster_email,
+                    default_postmaster_email,
+		    (config_cache<mystring>&)postmaster_email_cache);
+}