-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_example.php
59 lines (47 loc) · 1.83 KB
/
config_example.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
* SquirrelMail S/MIME Verification Plugin
*
* Copyright (c) 2015 Walter Hoehlhubmer <[email protected]>
* Copyright (c) 2005-2012 Paul Lesniewski <[email protected]>
* Copyright (c) 2005 Khedron Wilk <[email protected]>
* Copyright (c) 2004 Scott Heavner
* Copyright (c) 2003 Antonio Vasconcelos <[email protected]>
* Copyright (c) 2001-2003 Wouter Teepe <[email protected]>
*
* Licensed under the GNU GPL. For full terms see the file COPYING.
*
* @package plugins
* @subpackage smime
*
*/
global $data_dir, $color,
$cert_in_dir, $row_highlite_color;
global $openssl_cmds, $tmp_dir;
// This is the color used in the background of the signature
// verification information presented to the user. $color[9]
// may be subdued in some display themes, $color[16] will usually
// stand out rather strongly. You may add any color you would
// like here, including static ones. This information may or may
// not be used under SquirrelMail 1.5.2+.
//
// $row_highlite_color = $color[9];
// $row_highlite_color = $color[16];
// $row_highlite_color = '#ff9933';
//
$row_highlite_color = $color[16];
// This is the directory where signer certificates are stored
// for analysis. It must be readable and writeable by the user
// your web server runs as. This setting's default value usually
// does not need to be changed.
//
$cert_in_dir = $data_dir . 'certs-in/';
// This is the full path to the OpenSSL cmds shell script.
//
$openssl_cmds = '/usr/share/squirrelmail/plugins/smime/openssl-cmds.sh';
// This is the directory where temporary files are stored.
// It must be readable and writeable by the user your web server runs as.
// This setting's default value usually does not need to be changed.
//
$tmp_dir = '/tmp/';
?>