Corrected the yellowness for bugs between the MagicDay and the bounce date.
[wvapps.git] / unity / maildir / wraptest.cc
blob20ee75e14634ec4a32e86945e369589c65c13011
1 #include "uniconfroot.h"
2 #include "wvstream.h"
5 int main()
7 // UniConfRoot cfg("mailwrap:maildir:/home/unity/Maildir");
8 UniConfRoot cfg("mailwrap:unix:/tmp/uniconf/uniconfsocket");
11 UniConf::RecursiveIter i(cfg);
12 for (i.rewind(); i.next(); )
13 wvcon->print("#1 '%s' = '%s'\n", i->fullkey(), i->getme());
17 UniConf::RecursiveIter i(cfg);
18 for (i.rewind(); i.next(); )
19 i->setme("%s.", i->getme());
23 UniConf::RecursiveIter i(cfg);
24 for (i.rewind(); i.next(); )
25 wvcon->print("#2 '%s' = '%s'\n", i->fullkey(), i->getme());
28 return 0;