This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit c2140ed5a4e1796e710155fbd4a7388506942976 Author: Rene Cordier <[email protected]> AuthorDate: Fri Jul 26 14:15:05 2019 +0700 JAMES-2839 Update vault configuration documentation --- src/site/xdoc/server/config-vault.xml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/site/xdoc/server/config-vault.xml b/src/site/xdoc/server/config-vault.xml index 59b7954..6eab331 100644 --- a/src/site/xdoc/server/config-vault.xml +++ b/src/site/xdoc/server/config-vault.xml @@ -35,21 +35,27 @@ <p> Note: This feature requires Guice wiring. - To make James use DeletedMessageVault, you also need to configure the PreDeletionHook for it. + To make James use DeletedMessageVault, you need to configure the PreDeletionHook for it. Example is at <a href="/server/config-listeners.html">Mailbox Listener Configuration</a> </p> + <p> + The Deleted Messages Vault also stores and manages deleted messages into a BlobStore. The BlobStore can be either + based on an object storage or on Cassandra. For configuring the BlobStore the vault will use, you can look at + <a href="/server/config-blobstore.xml">BlobStore Configuration</a>. + </p> + <subsection name="deletedMessageVault.properties"> <p>Consult <a href="https://github.com/apache/james-project/blob/master/dockerfiles/run/guice/cassandra/destination/conf/deletedMessageVault.properties">deletedMessageVault.properties</a> to get some examples and hints.</p> <br/> <dl> - <dt><strong>urlPrefix</strong></dt> - <dd>Define prefix value of namespace in MailRepository where deleted messages are stored (default: default mail repository protocol + var/deletedMessages/vault)</dd> - <dt><strong>retentionPeriod</strong></dt> - <dd>Deleted messages stored in the Deleted Messages Vault are expired after this period, (default: 1 year)</dd> + <dd> + Deleted messages stored in the Deleted Messages Vault are expired after this period (default: 1 year). + It can be expressed in <b>y</b> years, <b>d</b> days, <b>h</b> hours, ... + </dd> </dl> </subsection> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
