]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
man: Added doveadm-batch.1.
authorPascal Volk <user@localhost.localdomain.org>
Sun, 17 Nov 2013 16:58:20 +0000 (16:58 +0000)
committerPascal Volk <user@localhost.localdomain.org>
Sun, 17 Nov 2013 16:58:20 +0000 (16:58 +0000)
.hgignore
doc/man/Makefile.am
doc/man/doveadm-batch.1.in [new file with mode: 0644]
doc/man/doveadm.1.in

index c78e8c7717eeb024954b699274810dac5ba452cd..6af00fbd34b08a1487f7ed442b54ee2ca326981e 100644 (file)
--- a/.hgignore
+++ b/.hgignore
@@ -105,5 +105,5 @@ src/plugins/quota/quota-status
 
 syntax: regexp
 src/.*/test-[^\.]*$
-doc/man/doveadm-(altmove|auth|deduplicate|director|dump|exec|expunge|fetch|flags|import|instance|index|force-resync|help|kick|log|mailbox|mount|move|penalty|purge|pw|quota|search|user|who)\.1$
+doc/man/doveadm-(altmove|auth|batch|deduplicate|director|dump|exec|expunge|fetch|flags|import|instance|index|force-resync|help|kick|log|mailbox|mount|move|penalty|purge|pw|quota|search|user|who)\.1$
 doc/man/(doveadm|doveconf|dovecot-lda|dovecot|dsync)\.1$
index b0f90688112d0f60198b20c776501b5720b26a75..6629c93f2ba452b8e071c2b466df31cf3121efd1 100644 (file)
@@ -16,6 +16,7 @@ nodist_man1_MANS = \
        doveadm.1 \
        doveadm-altmove.1 \
        doveadm-auth.1 \
+       doveadm-batch.1 \
        doveadm-deduplicate.1 \
        doveadm-director.1 \
        doveadm-dump.1 \
@@ -57,6 +58,7 @@ EXTRA_DIST = \
        doveadm.1.in \
        doveadm-altmove.1.in \
        doveadm-auth.1.in \
+       doveadm-batch.1.in \
        doveadm-deduplicate.1.in \
        doveadm-director.1.in \
        doveadm-dump.1.in \
diff --git a/doc/man/doveadm-batch.1.in b/doc/man/doveadm-batch.1.in
new file mode 100644 (file)
index 0000000..11ca451
--- /dev/null
@@ -0,0 +1,88 @@
+.\" Copyright (c) 2013 Dovecot authors, see the included COPYING file
+.TH DOVEADM\-BATCH 1 "2013-11-17" "Dovecot v2.2" "Dovecot"
+.SH NAME
+doveadm\-batch \- Execute multiple commands for multiple users
+.\"------------------------------------------------------------------------
+.SH SYNOPSIS
+.BR doveadm " [" \-Dv "] " batch " [" \-S
+.IR socket_path "] "
+.BI \-A " sep command sep command"
+[...]
+.br
+.\"-------------------------------------
+.BR doveadm " [" \-Dv "] " batch " [" \-S
+.IR socket_path "] "
+.BI \-u " usermask sep command sep command"
+[...]
+.\"------------------------------------------------------------------------
+.SH DESCRIPTION
+The command
+.B doveadm batch
+is used to execute multiple
+.BR doveadm (1)
+.IR command s
+sequentially for multiple users.
+This is primarily an optimization where Dovecot can do all the mailbox
+operations for the same user at once, instead of having to go through
+the users multiple times.
+.PP
+In the first form
+.BR doveadm (1)
+will loop over all users, defined in the configured
+.IR user_db (s),
+and execute the sequence of
+.IR command s
+for each of them.
+.PP
+In the second form the
+.IR command s
+will be executed for each user matching the given
+.IR usermask .
+.\"------------------------------------------------------------------------
+@INCLUDE:global-options@
+.\" --- command specific options --- "/.
+.PP
+Command specific
+.IR options :
+.\"-------------------------------------
+@INCLUDE:option-A@
+.\"-------------------------------------
+@INCLUDE:option-S-socket@
+.\"-------------------------------------
+@INCLUDE:option-u-user@
+.\"------------------------------------------------------------------------
+.SH ARGUMENTS
+.TP
+.I command
+Any
+.BR doveadm (1)
+command, with arguments and options \(em except for the
+.BR \-A ", " \-S " and " \-u " options."
+.\"-------------------------------------
+.TP
+.I sep
+A single character used as command separator, e.g. \(aq:\(aq.
+Be careful, unquoted characters, like
+.BR ; " or " & ,
+may be interpreted by your shell and
+.BR doveadm (1)
+will never see them.
+.\"------------------------------------------------------------------------
+.SH EXAMPLE
+In this example we move seen mails, older than one month, for all
+example.net users to the alternative storage under /nfsmount:
+.br
+.nf
+mail_location = mdbox:~/mdbox:ALT=/nfsmount/%h/mdbox
+.fi
+The second command will remove messages with refcount=0 from the
+primary storage.
+.PP
+.nf
+.B doveadm batch \-u \(rs*@example.net : altmove seen savedbefore 30d : purge
+.fi
+.\"------------------------------------------------------------------------
+@INCLUDE:reporting-bugs@
+.\"------------------------------------------------------------------------
+.SH SEE ALSO
+.BR doveadm (1)
\ No newline at end of file
index 7d2fc82f907afe802adba616c657582cb1fc762c..cc54dc46cca54cb1583ace27beec65ba448d5163 100644 (file)
@@ -102,6 +102,11 @@ Perform a user lookup in Dovecot\(aqs userdbs
 Move matching mails to the alternative storage.
 .\"-------------------------------------
 .TP
+.B doveadm batch
+.BR doveadm\-batch (1),
+Execute multiple commands for multiple users.
+.\"-------------------------------------
+.TP
 .B doveadm copy
 .BR doveadm\-copy (1),
 Copy messages matching the given search query into another mailbox.