Skip to content

authenumerate.1

Manvendra Bhangui edited this page Feb 25, 2024 · 2 revisions

NAME

authenumerate - enumerate courier-imap accounts

SYNOPSIS

authenumerate [-m module]

DESCRIPTION

authenumerate enumerates courier-imap accounts. In most cases, systems that use a single shared index file are likely to need to only run the authenumerate program in order to build the shared folder index. As long as Courier's authentication modules are properly configured, authenumerate will download the list of accounts from the configured authentication module, and generate a suitably-formatted list on standard output. So the complete shared folder index update script will look like this:

#!/bin/sh

rm -rf /etc/indimail/shared.tmp
mkdir /etc/indimail/shared.tmp || exit 1

/usr/sbin/authenumerate -s > /etc/indimail/shared.tmp/index || exit 1

/usr/sbin/sharedindexinstall

SEE ALSO

sharedindexinstall(1), sharedindexsplit(1), maildirmake(1),

Clone this wiki locally