lib/config/showvconfig.cc.in
author "Tomas Zeman <tzeman@volny.cz>"
Wed, 16 Jan 2008 22:39:43 +0100
changeset 0 6f7a81934006
permissions -rw-r--r--
Imported vmailmgr-0.96.9

#include <config.h>
#include <limits.h>
#include <unistd.h>
#include "misc/pwentry.h"
#include "vdomain/vdomain.h"
#include "configrc.h"
#include "fdbuf/fdbuf.h"

template<class T>
void show_val(const char* name, T value)
{
  fout << name << ": " << value << "\n\n";
}

void show_uns(const char* name, unsigned value)
{
  fout << name << ": ";
  if(value == UINT_MAX)
    fout << "-1\n\n";
  else
    fout << value << "\n\n";
}

void show_list(const char* name, const strlist& value)
{
  if(!value)
    fout << name << " is empty.\n";
  else
    for(mystring_iter iter(value.str()); iter; ++iter)
      fout << name << ": " << *iter << "\n";
  fout << "\n";
}

#define show_dir show_val
#define show_str show_val

pwentry user;
vdomain domain(user);

bool go_home()
{
  if(!user.home) {
    ferr << "showvconfig: Can't determine home directory" << endl;
    return false;
  }
  if(chdir(user.home.c_str()) == -1) {
    ferr << "showvconfig: Can't change to home directory" << endl;
    return false;
  }
  config = &domain.config;
  return true;
}

int main()
{
  if(!go_home())
    return 1;
%%LIST%%
  return 0;
}