есть ли в любом случае я могу получить входящие со всех учетных записей?
Ниже приведен скрипт, который я пытался получить со всех учетных записей домена:
<?php
// Making sure the Zimbra library can be found
require_once 'autoloader.php'; // The PSR-0 autoloader from https://gist.github.com/221634
$classLoader = new SplClassLoader('Zimbra', realpath(__DIR__.'/zcs-php/src/')); // Point this to the src folder of the zcs-php repo
$classLoader->register();
// Define some constants we're going to use
define('ZIMBRA_LOGIN', 'foo');
define('ZIMBRA_PASS', 'bar');
define('ZIMBRA_SERVER', 'zcs.example.com');
define('ZIMBRA_PORT', '7071');
// Create a new Admin class and authenticate
$zimbra = new \Zimbra\ZCS\Admin(ZIMBRA_SERVER, ZIMBRA_PORT);
$zimbra->auth(ZIMBRA_LOGIN, ZIMBRA_PASS);
// Get all available accounts from a domain
$accounts = $zimbra->getAccounts(array(
'domain' => 'www.example.com',
'offset' => 0,
'limit' => 100
));
// And output them
foreach ($accounts as $account){
echo $account->name . '<br/>';
}
?>