Koozali.org: home of the SME Server
Obsolete Releases => SME 7.x Contribs => Topic started by: Gaetan on January 05, 2007, 05:38:14 PM
-
Hi,
I have installed Roundcube rpms from Dungog and get the following message while trying to connect to the application.
"Service currently not available - Error no 1f4
the rpm installation ran ok without any errors.
Cheers
-
Hi,
Just follow the howto (http://www.dungog.net/sme/webapp.php#roundcube)
It worked for me.
-
Thanks, it now works.
http://ryanspencer.org/index.php?option=com_content&task=view&id=8&Itemid=23
Regards
-
Glad I could help. :D
-
I followed your guide and everthing seemed perfect until I try to run it. All I see is:
This information bay has not yet been customized.
You said to create an iBay with permissions. I created an iBay with new password and accessible to all but after following the steps all I see is:
my site: http://myfakeserver.com/roundcube/
This information bay has not yet been customized.
What did I do wrong?
thanks,
Curtis =)
-
I realized that I needed to delete the dumb .HTM file that is auto created with setting up an iBay. Now I see a:
SERVICE CURRENTLY NOT AVAILABLE!
Error No. 1f4)
message... any ideas?
thanks,
Curtis =)
-
Hi everyone...
it's 3:41am - it's working awesome... just a few supid spelling errors in the DB config file... made the changes and it's perfect
sorry for the hassle
Curtis =)
-
Hi everyone...
it's 3:41am - it's working awesome... just a few supid spelling errors in the DB config file... made the changes and it's perfect
sorry for the hassle
Curtis =)
Hi Curtis,
I'm getting the same Error No. 1f4, what did you change/correct in the DB config file?????
Thanks!
-
Hi everyone...
it's 3:41am - it's working awesome... just a few supid spelling errors in the DB config file... made the changes and it's perfect
sorry for the hassle
Curtis =)
Hi Curtis,
I'm getting the same Error No. 1f4, what did you change/correct in the DB config file?????
Thanks!
Resolved: I had '@' characters in the DB password which confused the username:password@host format of the DB settings.
Working sweet now, thanks for all contribs!!!!!
-
Initailly, I tried the S. Nobles Dungog install of RoundCube. It seemed to install following the directions. After install, upon accessing the url, I get the login and then a blank page. I did change the permissions on temp and logs.
So upon digging arounbd, found the additional link that S. Noble also says to use as a reference. Trying that method, I removed the /opt/roundcube and accompanying MySQL database and user. Then, when I tried to create an I-Bay with the name roundcube, it told me that user already existed.
This user does not exist in web-based users list. However, under deafult there was the roundcube user. I removed that, did a post/updgrade and still it says the user exists.
Any ideas?
Thanks in advance,
grattman
-
You don't mention the deletion of the template...
This should come from here...
-
This should come from here...
Sometimes I can read between the lines, but not this one? Here is where?
Thanks.
-
Resolved: I had '@' characters in the DB password which confused the username:password@host format of the DB settings.
what was the fix, can you just escape it with a / ?
delete the password and make a new one ?
would be better if i not allow an @
and make a template for the password file
no chmod commands or anything else not in the install notes are necessary afaik
-
Thanks, it now works.
http://ryanspencer.org/index.php?option=com_content&task=view&id=8&Itemid=23
Regards
I think the how-to can be improved a little:
Create ibay with permissions
The permissions should probably be
Public access via web or anonymous ftp: Entire Internet (no password required)
Additions marked with +++:
ssh into your server with root account.
cd to /home/e-smith/files/ibays/"ibay name"/html, without the quotes.
wget http://easynews.dl.sourceforge.net/sourceforge/roundcubemail/roundcubemail-0.1beta2.tar.gz
tar -zxvf r*
cd r*
mv * ..
+++ mv .htaccess ..
cd ..
+++ rmdir roundcubemail-0.1beta2
+++ rm index.html
mysql roundcube < SQL/mysql.initial.sql
This will remove the index.html file from the ibay (displaying "This information bay has not yet been customized") and also move the .htaccess file to its correct location.
-
Updated my how-to again, thanks for the suggestions.
-
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
-
Thanks, and no I haven't messed with that.
-
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
-
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);
-
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');
-
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.