[imp] Compose Window Problem

Eric Rostetter eric.rostetter at physics.utexas.edu
Wed Jul 9 16:02:31 PDT 2003


Quoting WebTeam <manishg at iiml.ac.in>:

> // What method should we use for sending mail? Valid options are
> // currently 'sendmail' and 'smtp'.
> $conf['mailer']['type'] = 'smtp';

Okay.  (You can also specify this in horde/imp/config/servers.php).

> $conf['mailer']['params'] = array('host' => '192.168.1.1');

That sets the host.

> $conf['mailer']['params'] = array('port' => '25');

That, I would guess, overrides the host array set above, and sets the
port only.

Try instead using:

$conf['mailer']['params'] = array('host' => '192.168.1.1', 'port' => '25');

and I bet it will work much better.

> in File horde/imp/config/servers.php
> ==========================
> $servers['imap'] = array(
>     'name' => '192.168.1.1',
>     'server' => '192.168.1.1',
>     'protocol' => 'imap',
>     'port' => 143,
>     'folders' => 'mail/',
>     'namespace' => '',
>     'maildomain' => 'iiml.ac.in',
>     'smtphost' => '192.168.1.1',

That line (smtphost) will override the setting from horde.conf, as per the
notes in the servers.php file and/or the faq.  If having trouble, I would
try setting only one rather than both settings.

>     'realm' => '',
>     'preferred' => ''
> );
>
> How can we prevent the Compose windows from closing on all machines?
> And how to get the mail sending function to work?

See/try above fix.

> Thanks in Advance,
> Manish Gupta

--
Eric Rostetter
The Department of Physics
The University of Texas at Austin

Why get even? Get odd!


More information about the imp mailing list