~ubuntu-branches/ubuntu/wily/dovecot/wily-proposed

« back to all changes in this revision

Viewing changes to src/plugins/convert/convert-storage.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-08-02 14:00:15 UTC
  • mto: (1.11.1 upstream) (4.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20080802140015-zbmjsgoodeyc9z4s
Tags: upstream-1.1.2
ImportĀ upstreamĀ versionĀ 1.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __CONVERT_STORAGE_H
2
 
#define __CONVERT_STORAGE_H
3
 
 
4
 
int convert_storage(const char *user, const char *home_dir,
5
 
                    const char *source_data, const char *dest_data,
6
 
                    bool skip_broken_mailboxes);
 
1
#ifndef CONVERT_STORAGE_H
 
2
#define CONVERT_STORAGE_H
 
3
 
 
4
struct mail_namespace;
 
5
 
 
6
struct convert_settings {
 
7
        const char *user;
 
8
        const char *home;
 
9
        bool skip_broken_mailboxes;
 
10
        bool skip_dotdirs;
 
11
        char alt_hierarchy_char;
 
12
};
 
13
 
 
14
int convert_storage(const char *source_data,
 
15
                    struct mail_namespace *dest_namespaces,
 
16
                    const struct convert_settings *set);
7
17
 
8
18
#endif