logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

cyr_dbtool - Cyrus IMAP documentation

Author

       The Cyrus Team, Nic Bernstein (Onlight), Jeroen van Meeuwen (Kolab Systems)

Description

cyr_dbtool is used to manage a cyrusdb file. The usable actions are:
          show[<prefix>]get<key>set<key><value>delete<key>consistencyrepack

       You  may omit key or key/value and specify one per line on stdin.  Keys are terminated by tab or newline,
       values are terminated by newline.

       Running without any options will list the available database backends and usable actions.

       The consistency action runs a consistency check on the DB by calling 'myconsistent' on it.

       The repack action will compress the database by removing stale data on backends which support it.  It's a
       NOOP otherwise.

       cyr_dbtool reads its configuration options out of the imapd.conf(5) file unless  specified  otherwise  by
       -C.

       NOTE:
          Note  that  the file locations are NOT read out of the configuration file, and must be supplied on the
          command line.

       TIP:
          The   format   of   all   Cyrus   databases   is   detailed    in    the    distribution    in    file
          doc/internal/database-formats.html.  Please consult that for details.

Examples

       This series of examples address manipulating the user_deny.db database,  which  is  used  to  deny  users
       access to specific services.  This is typically a Cyrus "flat" format database.

       user_deny.db  is  indexed by userid and each record contains the database version number (currently 2), a
       list of "wildmat" patterns specifying Cyrus services to be denied, and a text message to be displayed  to
       the  user  upon  denial. The service names to be matched are those as used in cyrus.conf(5).  cyr_deny(8)
       provides more convenient way to manage user_deny.db.

       NOTE:
          Given that keys are tab-delimited,  these  examples  use  the  notation  <tab>  to  indicate  the  tab
          character.   When entering this via the command line, remember to escape tabs.  In a normal shell, one
          can do so with <ctrl-v> (^v).   The  sequence  "<ctrl-v><ctrl-i>"  (^v^i)  works  well  to  enter  tab
          characters.

          cyr_dbtool /var/lib/imap/user_deny.db flat baduser "2<tab>pop3,imap<tab>Denied"
          Denytheuser'baduser'accesstoimapandpop3.cyr_dbtool/var/lib/imap/user_deny.dbflatshowShowallcurrentdatabaserecords.cyr_dbtool/var/lib/imap/user_deny.dbflatgetbaduserGetthecurrentdatabaserecord(s)foruser'baduser'.

Files

       /etc/imapd.conf

Name

       cyr_dbtool - Cyrus IMAP documentation

       Manage Cyrus databases

Options

-Cconfig-file
              Use the specified configuration file config-file rather than the default imapd.conf(5).

       -M,--improved-mboxlist-sort
              Uses improved MBOX list sort

       -n,--create
              Create the database file if it doesn't already exist.

       -T,--use-transaction
              Use  a  transaction  to  do  the  action  (most  especially  for  'show') - the default used to be
              transactions.

See Also

imapd.conf(5)

Synopsis

cyr_dbtool [ -Cconfig-file ] [ -M ] [ -n ] [ -o ] [ -T ]
                  db-filedb-backendaction [ key ] [ value ]

See Also