forked from tunis78/roundcube-hms_forwarding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.inc.php.dist
30 lines (26 loc) · 1.09 KB
/
config.inc.php.dist
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
<?php
// hMailServer Forwarding Plugin options
// -----------------------
// A driver to use for forwarding change. Default: "hmail".
// See README file for list of supported driver names.
$config['hms_forwarding_driver'] = 'hmail';
// hmail Driver options
// -----------------------
// Remote hMailServer configuration
// true: hMailServer is on a remote box (php.ini: com.allow_dcom = true)
// false: hMailServer is on same box as PHP
$config['hms_forwarding_remote_dcom'] = false;
// Windows credentials
$config['hms_forwarding_remote_server'] = array(
'Server' => 'localhost', // hostname or ip address
'Username' => 'administrator', // windows username
'Password' => 'password' // windows user password
);
// hmail_remote Driver options
// -----------------------
// Remote configuration of hMailServer
// Copy hm_rcforwarding.php to hMailServer.
// Change $remote_ip in hm_rcforwarding.php to Roundcube server ip-address.
// Makesure that dcom working.
// Url to hm_rcforwarding.php.
$config['hms_forwarding_remote_url'] = 'http://hmailserver/PHPWebAdmin/hm_rcforwarding.php';