diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-11-02 07:09:57 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-11-02 07:09:57 +0000 |
| commit | a9b4a030d159738f59e1d782dbf0d17b1a90115f (patch) | |
| tree | 47c5ae62b25f57e7129b4c62bb4d2ffca55f22ae /plugins/password/config.inc.php.dist | |
| parent | 6515a57bc35f675616d92eae312e67cbedf3225a (diff) | |
- hMail driver: Add possibility to connect to remote host (patch from Roland Liebl)
git-svn-id: https://svn.roundcube.net/trunk@4165 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/password/config.inc.php.dist')
| -rw-r--r-- | plugins/password/config.inc.php.dist | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/password/config.inc.php.dist b/plugins/password/config.inc.php.dist index cf8c4f3d3..b412663ba 100644 --- a/plugins/password/config.inc.php.dist +++ b/plugins/password/config.inc.php.dist @@ -256,3 +256,17 @@ $rcmail_config['xmail_user'] = 'YourXmailControlUser'; $rcmail_config['xmail_pass'] = 'YourXmailControlPass'; $rcmail_config['xmail_port'] = 6017; + +// 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 +$rcmail_config['hmailserver_remote_dcom'] = false; +// Windows credentials +$rcmail_config['hmailserver_server'] = array( + 'Server' => 'localhost', // hostname or ip address + 'Username' => 'administrator', // windows username + 'Password' => 'password' // windows user password +); + |
