-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.inc.php.dist
30 lines (26 loc) · 1.08 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 Autoreply Plugin options
// -----------------------
// A driver to use for autoreply change. Default: "hmail".
// See README file for list of supported driver names.
$config['hms_autoreply_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_autoreply_remote_dcom'] = false;
// Windows credentials
$config['hms_autoreply_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_rcautoreply.php to hMailServer.
// Change $remote_ip in hm_rcautoreply.php to Roundcube server ip-address.
// Makesure that dcom working.
// Url to hm_rcautoreply.php.
$config['hms_autoreply_remote_url'] = 'http://hmailserver/PHPWebAdmin/hm_rcautoreply.php';