forked from bggo/Zmbkpose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
86 lines (66 loc) · 2.98 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
############################# Zmbkpose ################################
The zmbkpose tool is a shell script that does hot backup and hot restore of ZCS
Opensource accounts, GPL(OPENSOURCE). It can run from any host in the net,
which means that it can be set on a backup server already existent.
It was concepted after Zimbra released ZCS 5.0.12, where a new import/export
feature was exposed to user can be able to do his archiving. From that point
it was clear for me that I just need to write a code to automatically get all
user data from server, remotely via HTTP SOAP. Plus LDAP data. So, it is
possible to run full backups and restore even deleted accounts.
Till now, zmbkpose provides
Full backup of all accounts;
Full backup of any account;
Incremental backup of all accounts;
Incremental backup of any account;
Lists all backup sessions done;
Restore all contents (mail, contacts, appointments...) to any account;
Restore deleted accounts back to directory and all of its contents;
Restore only account attributes, like password, class of service;
Configurable full simultaneously backup;
This tool DOES NOT DO disaster recovery.
### History
Created
By Rubens Alonso Filho
Upgrated
26/10/2010 - Version 1.0.5
By Alan Nikitiuk Milani
By Bruno Gurgel
Published
By Bruno Gurgel
Upgraded
24/05/2012 - Version 2.0 Beta
By William Felipe Welter
-Added functions:
backup_distribution_list()
restore_distribution_list()
backup_alias()
restore_alias()
backup_accounts_parallel() (backup specific accounts parallel)
-Modified:
backup_all_accounts_parallel() (added backup trash and junk folders)
incremental_all_accounts() (doesnt create another full directory if new accounts are created after the last full backup)
-Renamed:
DeusMeAjude -> restore_all_accounts() (Restore all accounts parallel)
-Bug corrections:
Wrong variables names references after translate to english
#######################################################################
************For installation instructions please read the INSTALL file.