Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,34 @@ Upgraded
zmbkpose.conf now uses paralel backup capability by default
>>>>>>> 8dae5174f7f7414b54f1511be456cf74d630f31b


Upgraded
17/12/2014 - Version 2.1 Beta
By Rafael Mendonca
<rafael.mendonca@4linux.com.br>
<rafaelmendonca3f@gmail.com>

* Modified zmbkpose.conf:
zmbkpose.conf now make backup trash and junk folders by default.

# Support to disable spam backup
#SPAM_BACKUP - 0 = off 1 = on
SPAM_BACKUP=1

# Support to disable trash backup
#TRASH_BACKUP - 0 = off 1 = on
TRASH_BACKUP=1

* Modified functions:
backup_all_accounts_parallel() (added support to disable or enable backup trash and junk folders. Changed time check to start a parallel backup.)
backup_all_accounts() (added support to disable or enable backup trash and junk folders)
incremental_all_accounts() (added support to disable or enable backup trash and junk folders. Changed time check to start a parallel backup.)
backup_accounts() (added support to disable or enable backup trash and junk folders)
incremental_accounts() (added support to disable or enable backup trash and junk folders)
restore_accounts() (added support to disable or enable restore trash and junk folders)
restore_on_box() (added support to disable or enable restore trash and junk folders)
restore_LDAP_account() (added support to disable or enable restore trash and junk folders)
restore_all_accounts_parallel() (added support to disable or enable restore trash and junk folders. Changed time check to start a parallel restore)

#######################################################################

Expand Down
27 changes: 27 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
zmbkpose (2.1)
* Modified zmbkpose.conf:
zmbkpose.conf now make backup trash and junk folders by default.

# Support to disable spam backup
#SPAM_BACKUP - 0 = off 1 = on
SPAM_BACKUP=1

# Support to disable trash backup
#TRASH_BACKUP - 0 = off 1 = on
TRASH_BACKUP=1


* Modified functions:
backup_all_accounts_parallel() (added support to disable or enable backup trash and junk folders. Changed time check to start a parallel backup.)
backup_all_accounts() (added support to disable or enable backup trash and junk folders)
incremental_all_accounts() (added support to disable or enable backup trash and junk folders. Changed time check to start a parallel backup.)
backup_accounts() (added support to disable or enable backup trash and junk folders)
incremental_accounts() (added support to disable or enable backup trash and junk folders)
restore_accounts() (added support to disable or enable restore trash and junk folders)
restore_on_box() (added support to disable or enable restore trash and junk folders)
restore_LDAP_account() (added support to disable or enable restore trash and junk folders)
restore_all_accounts_parallel() (added support to disable or enable restore trash and junk folders. Changed time check to start a parallel restore)

-- Rafael Mendonca <rafael.mendonca@4linux.com.br> Wed,17 12 2014 12:35:36 -0300


zmbkpose (2.0)
* Added functions:
backup_distribution_list()
Expand Down
8 changes: 8 additions & 0 deletions etc/zmbkpose.conf
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,11 @@ PARALLEL_SUPPORT=1
# Max simultaneous processes - if PARALLEL_SUPPORT=1
# 2 - 5
MAX_PARALLEL_PROCESS=3

# Support to disable spam backup
#SPAM_BACKUP - 0 = off 1 = on
SPAM_BACKUP=1

# Support to disable trash backup
#TRASH_BACKUP - 0 = off 1 = on
TRASH_BACKUP=1
Loading