diff -r 000000000000 -r 6f7a81934006 lib/config/_postmaster_email.cc --- /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 + +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&)postmaster_email_cache); +}