/**
 ** Mailbox Settings
 **/

// What should we display for the various message flags/types, and
// what styles should we use for different kinds of flagged messages?
$conf['mailbox']['deleted_flag'] = '<img alt="' . _("Deleted") . '" src="' . $registry->getGraphicsPath('imp') . '/deleted.gif" />';
$conf['mailbox']['deleted_style'] = 'strike';
$conf['mailbox']['unseen_flag'] = '<img alt="' . _("Unread") . '" src="' . $registry->getGraphicsPath('imp') . '/unseen.gif" />';
$conf['mailbox']['unseen_style'] = 'b';
$conf['mailbox']['answered_flag'] = '<img alt="' . _("Answered") . '" src="' . $registry->getGraphicsPath('imp') . '/answered.gif" />';
$conf['mailbox']['answered_style'] = '';
$conf['mailbox']['important_flag'] = '<img alt="' . _("Important") . '" src="' . $registry->getGraphicsPath('imp') . '/important.gif" />';
$conf['mailbox']['important_style'] = 'i';
$conf['mailbox']['draft_flag'] = '<img alt="' . _("Draft") . '" src="' . $registry->getGraphicsPath('imp') . '/draft.gif" />';
$conf['mailbox']['draft_style'] = '';
$conf['mailbox']['personal_flag'] = '<img alt="' . _("Personal") . '" src="' . $registry->getGraphicsPath('imp') . '/personal.gif" />';

// What format string should we pass to strftime() for messages sent on
// days other than today?
$conf['mailbox']['date_format'] = '%x';

// What format string should we pass to strftime() for messages sent
// today?
$conf['mailbox']['time_format'] = '%X';

// In the mailbox view, we will chop off From: addresses longer than
// this value.
$conf['mailbox']['max_from_chars'] = 40;

// In the mailbox view, we will chop off Subjects longer than this
// value.
$conf['mailbox']['max_subj_chars'] = 50;

// Where should the link in the From: column go to? Valid values are
// 'message' (read the message) and 'compose' (compose a message to
// that address); anything else will result in no link being generated.
$conf['mailbox']['from_link'] = 'message';

// Should we show a bar at the bottom of the mailbox view explaining
// which colors go with which kinds of messages?
$conf['mailbox']['show_legend'] = true;

// Should we display attachment information in the mailbox index? This
// is a performance hit, but may be okay on smaller installations.
$conf['mailbox']['show_attachments'] = false;
