Koozali.org: home of the SME Server

Roundcube from Dungog or Ryan

Offline grattman

  • ***
  • 122
  • +0/-0
Thanks to all
« Reply #15 on: February 08, 2007, 04:49:06 PM »
Ryan and Stephan....great work to both of you. Although I never got the Dungog version to work, I now know it was my idiocy that caused it.

Has anyone tried configuring the LDAP so that it works like the SME base Horde/Imp?

Thanks,
grattman
...

Offline Ryan483

  • *
  • 28
  • +0/-0
    • http://rspencer.ath.cx
Roundcube from Dungog or Ryan
« Reply #16 on: February 08, 2007, 05:17:20 PM »
Thanks, and no I haven't messed with that.

Offline Ryan483

  • *
  • 28
  • +0/-0
    • http://rspencer.ath.cx
Roundcube from Dungog or Ryan
« Reply #17 on: February 16, 2007, 06:05:53 AM »
Didn't feel like renewing my domain. Here is the new address for the how-to in case anyone needs it:

http://rspencer.ath.cx/index.php?option=com_content&task=view&id=8&Itemid=89

Offline jmartin

  • **
  • 58
  • +0/-0
    • http://www.ci.wayne.mi.us
Re: Thanks to all
« Reply #18 on: May 07, 2007, 05:44:42 PM »
Quote from: "grattman"

Has anyone tried configuring the LDAP so that it works like the SME base Horde/Imp?


I did a quick try of this on my test server and found it to work using the following settings.

$rcmail_config['ldap_public']['Local_LDAP'] = array('hosts'         => array('192.168.1.10'),
                                                   'port'          => 389,
                                                   'base_dn'       => 'dc=youdomain,dc=com',
                                                   'search_fields' => array('Email' => 'mail', 'Name' => 'cn'),
                                                   'name_field'    => 'cn',
                                                   'mail_field'    => 'mail',
                                                   'scope'         => 'sub',
                                                   'fuzzy_search'  => 1);

Offline jmartin

  • **
  • 58
  • +0/-0
    • http://www.ci.wayne.mi.us
Roundcube from Dungog or Ryan
« Reply #19 on: May 07, 2007, 07:34:43 PM »
A tip for anyone planning on possibly going back and forth between horde and roundcube.  Stephen Noble touches on this tip but there are a few more lines to edit in the roundcube main.inc.php for compatibility otherwise you'll end up with an extra "Sent" folder.

// store spam messages in this mailbox
$rcmail_config['junk_mbox'] = 'junkmail';

// store sent message is this mailbox
// leave blank if sent messages should not be stored
$rcmail_config['sent_mbox'] = 'sent-mail';

// display these folders separately in the mailbox list.
// these folders will automatically be created if they do not exist
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'sent-mail', 'junkmail', 'Trash');

Offline bpivk

  • *
  • 908
  • +0/-0
    • http://www.bezigrad.com
Roundcube from Dungog or Ryan
« Reply #20 on: May 07, 2007, 09:21:42 PM »
To add a little...
You can also auto create LearnAsSpam folder if you need it.
Just enter:
// display these folders separately in the mailbox list.
// these folders will automatically be created if they do not exist
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'sent-mail', 'junkmail', 'Trash', 'LearnAsSpam');

P.S.: I use RC and HORDE but i don't have a sent-mail folder. I have a Sent folder. But it could be the fact that i installed RC and then horde.
"It should just work" if it doesn't report it. Thanks!