File: config.inc.php-dist

package info (click to toggle)
roundcube-plugin-message-highlight 4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 264 kB
  • sloc: javascript: 445; php: 246; makefile: 37; xml: 18
file content (24 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

$rcmail_config['message_highlight_default'] = array(
  array(
      'header' => 'subject',
      'input'  => 'My Subject',
      'color' => '#ff0000'
  ),
  array(
      'header' => 'from',
      'input'  => 'nobody@example.com',
      'color' => '#00ff00'
  ),
  array(
      'header' => 'to',
      'input'  => 'nobody@example.com',
      'color' => '#0000ff'
  ),
  array(
      'header' => 'cc',
      'input'  => 'nobody@example.com',
      'color' => '#0000ff'
  ),
);