1
#ifndef VMAILMGR__MAILDIR__H__
2
#define VMAILMGR__MAILDIR__H__
3
4
#include <sys/types.h>
5
#include "mystring/mystring.h"
6
7
int mkdirp(const mystring&, mode_t);
8
bool make_maildir(const mystring&);
9
bool delete_directory(const mystring&);
10
11
#endif