diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 1b7ae5a54..3c7d8eda6 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -372,6 +372,11 @@ $rcmail_config['im_identify_path'] = null; // path to imagemagick convert binary $rcmail_config['im_convert_path'] = null; +// Size of thumbnails from image attachments displayed below the message content. +// Note: whether images are displayed at all depends on the 'inline_images' option. +// Set to 0 to display images in full size. +$rcmail_config['image_thumbnail_size'] = 240; + // maximum size of uploaded contact photos in pixel $rcmail_config['contact_photo_size'] = 160; @@ -634,6 +639,11 @@ $rcmail_config['ldap_public']['Verisign'] = array( ), // Map of contact sub-objects (attribute name => objectClass(es)), e.g. 'c' => 'country' 'sub_fields' => array(), + // Generate values for the following LDAP attributes automatically when creating a new record + 'autovalues' => array( + // 'uid' => 'md5(microtime())', // You may specify PHP code snippets which are then eval'ed + // 'mail' => '{givenname}.{sn}@mydomain.com', // or composite strings with placeholders for existing attributes + ), 'sort' => 'cn', // The field to sort the listing by. 'scope' => 'sub', // search mode: sub|base|list 'filter' => '(objectClass=inetOrgPerson)', // used for basic listing (if not empty) and will be &'d with search queries. example: status=act |