man cyradm () - Cyrus administration shell, alter ego of Cyrus::IMAP::Shell

NAME

cyradm - Cyrus administration shell, alter ego of Cyrus::IMAP::Shell

SYNOPSIS

  $ cyradm [--user user] [--[no]rc] [--systemrc file] [--userrc file] \
  > [--port n] [--auth mechanism] [--server] server

but possibly

  $ perl -MCyrus::IMAP::Shell -e 'run("myscript")'

or even (not recommended)

  use Cyrus::IMAP::Admin::Shell;

  run('myscriptname');

DESCRIPTION

This module implements cyradm in Perl. It is a shell around Cyrus::IMAP::Admin. Commands are provided in both Tcl-compatible forms and GNU-style long option forms.

COMMANDS

Authenticate to server. You must already be connected to a server and Cyrus imapd will refuse to allow you to re-authenticate once you have authenticated once. Change directory. A CWpwd builtin is not provided, but the default command action will run CWpwd from a shell if invoked. Create a mailbox on the default or a specified partition. Both old-style and getopt-style usages are accepted (combining them will produce an error). Remove ACLs from the specified mailbox. Delete the specified mailbox. Administrators do not have implicit delete rights on mailboxes. Use the setaclmailbox command to grant the CWc permission (or other permission as specified by the deleteright configuration option in imapd.conf) to your principal if you need to delete a mailbox you do not own. Note that the online help admits to an optional host argument. This argument is not currently used, and will be rejected with an error if specified; it is reserved for IMSP. Disconnect from the current server. The prompt will revert to CWcyradm>. Exit cyradm, optionally with a specific exit status; the exit status of the last command will be used if one is not specified.

help [command]
? [command]
Show help for CWcommand or all commands. Display the mailbox/server metadata. List ACLs on the specified mailbox. List all, or all subscribed, mailboxes matching the specified pattern. The pattern may have embedded wildcards CW'*' or CW'%', which match anything or anything except the separator character, respectively. Mailboxes returned will be relative to the specified reference if one is specified. This allows a mailbox list to be limited to a particular hierarchy. In some cases when the CW'%' wildcard is used to end a pattern, it may match an entry which is not a mailbox but which contains other mailboxes. In this case, the entry will be parenthesized to indicate that it is a root for other mailboxes, as opposed to a mailbox itself. List quotas on specified root. If the specified mailbox path does not have a quota assigned, an error will be raised; see listquotaroot for a way to find the quota root for a mailbox. show quota roots and quotas for mailbox Set mailbox metadata. A value of none will remove the attribute. The currently supported attributes are: Sets a comment or description associated with the mailbox. Sets the number of days after which messages will be expired from the mailbox. Indicates that the mailbox should have a squat index created for it. Sets an email address to which messages injected into the server via NNTP will be sent. Rename the specified mailbox, optionally moving it to a different partition. Both old-style and getopt-style usages are accepted; combining them will produce an error.
server [--noauthenticate] [server]
connect [--noauthenticate] [server]
servername [--noauthenticate] [server]
With no arguments, show the current server. With an argument, connect to that server. It will prompt for automatic login unless the CW--noauthenticate option is specified. (This may change; in particular, either automatic authentication will be removed or all CWauthenticate options will be added.) When connected to a server, cyradm's prompt changes from CWcyradm> to CWservername>, where servername is the fully qualified domain name of the connected server. Set ACLs on a mailbox. The ACL may be one of the special strings CWnone, CWread (CWlrs), CWpost (CWlrsp), CWappend (CWlrsip), CWwrite (CWlrswipcd), or CWall (CWlrswipcda), or any combinations of the ACL codes:
l
Lookup (visible to LIST/LSUB/UNSEEN)
r
Read (SELECT, CHECK, FETCH, PARTIAL, SEARCH, COPY source)
s
Seen (STORE \SEEN)
w
Write flags other than \SEEN and \DELETED
i
Insert (APPEND, COPY destination)
p
Post (send mail to mailbox)
c
Create and Delete mailbox (CREATE new sub-mailboxes, RENAME or DELETE mailbox)
d
Delete (STORE \DELETED, EXPUNGE)
a
Administer (SETACL) Set server metadata. A value of none will remove the attribute. The currently supported attributes are: Sets a message of the day. The message gets displayed as an ALERT after authentication. Sets a comment or description associated with the server. Sets the administrator email address for the server. Sets a shutdown message. The message gets displayed as an ALERT and all users are disconnected from the server (subsequent logins are disallowed). Sets the number of days after which messages will be expired from the server (unless overridden by a mailbox annotation). Indicates that all mailboxes should have a squat indexes created for them (unless overridden by a mailbox annotation). Set a quota on the specified root, which may or may not be an actual mailbox. The only resource understood by Cyrus is CWSTORAGE. The value may be the special string CWnone which will remove the quota. Display the version info of the current server. Transfer (relocate) the specified mailbox to a different server. Both old-style and getopt-style usages are accepted; combining them will produce an error.

NOTES

GNU-style long options must be given in their entirety; Tcl-style options may be abbreviated.

Tcl-style options are provided as a compatibility feature. They will probably go away in the future.

Multiple commands can be given on a line, separated by CW';' characters.

All commands set an exit status, which at present is not useful.

Unknown commands are passed to a subshell for execution.

The Tcl version of cyradm is used for scripting as well as interactively. While this is possible to a limited extent by use of the CWrun method, scripting would normally be done with CWCyrus::IMAP::Admin, which is far more flexible than either interactive CWcyradm or the Tcl scripting mechanism for Cyrus.

cyradm understands /bin/sh-style redirection: any command can have its standard or error output redirected, with all sh-style redirections (except CW<>) supported. It does not currently understand pipes or backgrounding.

If the CWTerm::Readline::Perl or CWTerm::Readline::GNU modules are available, cyradm will use it.

An alias facility is implemented internally, but no access is currently provided to it. This will change, if only to allow some of the predefined aliases to be removed if they conflict with useful shell commands.

AUTHOR

Brandon S. Allbery, allbery@ece.cmu.edu

SEE ALSO

Cyrus::IMAP::Admin Term::ReadLine sh(1), perl(1), imapd(8).