[horde] Authentication issues

Steven Swarts steven at swartsit.com
Wed Jul 24 15:17:40 UTC 2013


On 24/07/2013 7:52 PM, Ralf Lang wrote:
> On 24.07.2013 13:31, avp wrote:
>>> So would this be better?
>>>
>>> // IMAP server
>>> $servers['imap'] = array(
>>>      // ENABLED by default; will connect to IMAP port on local server
>>>      'disabled' => false,
>>>      'name' => 'Server',
>>>      'hostspec' => 'localhost',
>>>      'hordeauth' => full,
>>>      'protocol' => 'imap',
>>>      'port' => 993,
>>>      // Plaintext logins are disabled by default on IMAP servers (see
>>> RFC 3501
>>>      // [6.2.3]), so TLS is the only guaranteed authentication
>>> available by
>>>      // default.
>>>      'secure' => 'ssl',
>>> );
>>>
>> Shouldn't "full" be "'full'", or does this matter?  That is, have single
>> quotes around it?
> Yes, it needs to be quoted.
>
>

Thanks for the heads up, what about the others? like 'disabled' => false, should that be 'disabled' => 'false', and then also the port?

// IMAP server
$servers['imap'] = array(
     // ENABLED by default; will connect to IMAP port on local server
     'disabled' => false,
     'name' => 'Server',
     'hostspec' => 'localhost',
     'hordeauth' => 'full',
     'protocol' => 'imap',
     'port' => 143,
     // Plaintext logins are disabled by default on IMAP servers (see
RFC 3501
     // [6.2.3]), so TLS is the only guaranteed authentication
available by
     // default.
     'secure' => 'tls',
);


Regards,
Steve



More information about the horde mailing list