| | |
| | | // either a comma-separated list or an array: 'text/plain,text/html,text/xml,image/jpeg,image/gif,image/png,application/pdf' |
| | | $rcmail_config['client_mimetypes'] = null; # null == default |
| | | |
| | | // mime magic database |
| | | $rcmail_config['mime_magic'] = '/usr/share/misc/magic'; |
| | | // Path to a local mime magic database file for PHPs finfo extension. |
| | | // Set to null if the default path should be used. |
| | | $rcmail_config['mime_magic'] = null; |
| | | |
| | | // Path to local mime.types mapping table. |
| | | // This is used to derive mime-types from the filename extension or vice versa. |
| | | // Such a file is usually part of the apache webserver. |
| | | $rcmail_config['mime_types'] = null; |
| | | |
| | | // path to imagemagick identify binary |
| | | $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; |
| | |
| | | ), |
| | | // 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 |