Comments on RoundCube :
near the top. I clicked on the down-arrow button (with FireFox) of the menu many times and nothing happened. On the 99th click, I then realized that you have to click very near to the TOP edge of the button so that you get the drop-down.
clicking on the top "E-Mail" button (with FireFox) gives no response (but still clickable).
are sending to multiple recepients) with commas and NOT entering them in multiple rows. If you enter the email addresses in rows, mailing will fail. The developer should change this to a single-row input box instead of the misleading area input box.
the form is not viewable under FireFox. No problem with IE6.
show something like "Trash (7)". After switching view a few times and even re-login, it is still showing the same thing. Why?
www.yourdomain.com/webmail), how do I skip from logging in the second time?
Lawrence- The visual issues you metnioed are all fixed by the latest version of my modification of the roundcube skin. (For everyone else on the list, I have fixed a few problems with the last version, so go ahead and upgrade if you are using my skin). These modifications are fully tested with firefox and IE6. They do not work in Opera (but nor does the default roundcube skin, and I don't know how to fix it). The attached zip contains a folder called "modified". Extract this folder into your skins folder in your roundcube directory (I have changed the zip so that it no longer overwrites the default skin, and install installs as a separate skin). Then, change $rcmail_config['skin_path'] in main.inc.php to 'skins/modified/ to use the new skin. Additionally, I would recommend that you replace the english localization file with the one I have attached. This changes the names of the taskbar menu items to shorter versions (Inbox, Contacts, Settings as opposed to E-Mail, Address Book, Peronsal Settings), allowing for roundcube to fit better on lower resolution monitors. I feel these modifications should be included in the CVS, because they provide a far more useful and appealing interface to roundcube than the default skin. If there are any problems, or you have any questions, please contact me and I'll try to help.
Rob S.
Lawrence Lam wrote:
Comments on RoundCube :
- When you read an email, you will see the "move to ..." drop-down
menu near the top. I clicked on the down-arrow button (with FireFox) of the menu many times and nothing happened. On the 99th click, I then realized that you have to click very near to the TOP edge of the button so that you get the drop-down.
- When you are at the viewing the email list or reading an email,
clicking on the top "E-Mail" button (with FireFox) gives no response (but still clickable).
- When composing an email, you should separate email addresses (if
you are sending to multiple recepients) with commas and NOT entering them in multiple rows. If you enter the email addresses in rows, mailing will fail. The developer should change this to a single-row input box instead of the misleading area input box.
- The compose email form is not properly displayed. The bottom edge
of the form is not viewable under FireFox. No problem with IE6.
- Sometimes when there is no emails under Trash, the left panel will
show something like "Trash (7)". After switching view a few times and even re-login, it is still showing the same thing. Why?
- Lastly, when integrate into cPanel's webmail login page (at
www.yourdomain.com/webmail), how do I skip from logging in the second time?
!DSPAM:436834fd165432810223924!
<?php /* +-----------------------------------------------------------------------+ | language/en/labels.inc | | | | Language file of the RoundCube Webmail client | | Copyright (C) 2005, RoundQube Dev. - Switzerland | | Licensed under the GNU GPL | | | +-----------------------------------------------------------------------+ | Author: Thomas Bruederli <roundcube@gmail.com> | +-----------------------------------------------------------------------+ $Id: labels.inc,v 1.6 2005/10/26 22:12:36 roundcube Exp $ */ $labels = array(); // login page $labels['username'] = 'Username'; $labels['password'] = 'Password'; $labels['server'] = 'Server'; $labels['login'] = 'Login'; // taskbar $labels['logout'] = 'Logout'; $labels['mail'] = 'Inbox'; $labels['settings'] = 'Settings'; $labels['addressbook'] = 'Contacts'; // mailbox names $labels['inbox'] = 'Inbox'; $labels['sent'] = 'Sent'; $labels['trash'] = 'Trash'; $labels['drafts'] = 'Drafts'; $labels['junk'] = 'Junk'; // message listing $labels['subject'] = 'Subject'; $labels['from'] = 'Sender'; $labels['to'] = 'Recipient'; $labels['cc'] = 'Copy'; $labels['bcc'] = 'Bcc'; $labels['replyto'] = 'Reply-To'; $labels['date'] = 'Date'; $labels['size'] = 'Size'; $labels['priority'] = 'Priority'; $labels['organization'] = 'Organization'; // aliases $labels['reply-to'] = $labels['replyto']; $labels['mailboxlist'] = 'Folders'; $labels['messagesfromto'] = 'Messages $from to $to of $count'; $labels['messagenrof'] = 'Message $nr of $count'; $labels['moveto'] = 'move to...'; $labels['download'] = 'download'; $labels['filename'] = 'File name'; $labels['filesize'] = 'File size'; $labels['preferhtml'] = 'Prefer HTML'; $labels['htmlmessage'] = 'HTML Message'; $labels['prettydate'] = 'Pretty dates'; $labels['addtoaddressbook'] = 'Add to address book'; // weekdays short $labels['sun'] = 'Sun'; $labels['mon'] = 'Mon'; $labels['tue'] = 'Tue'; $labels['wed'] = 'Wed'; $labels['thu'] = 'Thu'; $labels['fri'] = 'Fri'; $labels['sat'] = 'Sat'; // weekdays long $labels['sunday'] = 'Sunday'; $labels['monday'] = 'Monday'; $labels['tuesday'] = 'Tuesday'; $labels['wednesday'] = 'Wednesday'; $labels['thursday'] = 'Thursday'; $labels['friday'] = 'Friday'; $labels['saturday'] = 'Saturday'; $labels['today'] = 'Today'; // toolbar buttons $labels['writenewmessage'] = 'Create a new message'; $labels['replytomessage'] = 'Reply to the message'; $labels['forwardmessage'] = 'Forward the message'; $labels['deletemessage'] = 'Move message to trash'; $labels['printmessage'] = 'Print this message'; $labels['previousmessages'] = 'Show previous set of messages'; $labels['nextmessages'] = 'Show next set of messages'; $labels['backtolist'] = 'Back to message list'; $labels['viewsource'] = 'Show source'; $labels['select'] = 'Select'; $labels['all'] = 'All'; $labels['none'] = 'None'; $labels['unread'] = 'Unread'; // message compose $labels['compose'] = 'Compose a message'; $labels['sendmessage'] = 'Send the message now'; $labels['addattachment'] = 'Attach a file'; $labels['attachments'] = 'Attachments'; $labels['upload'] = 'Upload'; $labels['close'] = 'Close'; $labels['low'] = 'Low'; $labels['lowest'] = 'Lowest'; $labels['normal'] = 'Normal'; $labels['high'] = 'High'; $labels['highest'] = 'Highest'; $labels['showimages'] = 'Display images'; // address boook $labels['name'] = 'Display name'; $labels['firstname'] = 'First name'; $labels['surname'] = 'Last name'; $labels['email'] = 'E-Mail'; $labels['addcontact'] = 'Add new contact'; $labels['editcontact'] = 'Edit contact'; $labels['edit'] = 'Edit'; $labels['cancel'] = 'Cancel'; $labels['save'] = 'Save'; $labels['delete'] = 'Delete'; $labels['newcontact'] = 'Create new contact card'; $labels['deletecontact'] = 'Delete selected contacts'; $labels['composeto'] = 'Compose mail to'; $labels['contactsfromto'] = 'Contacts $from to $to of $count'; $labels['print'] = 'Print'; $labels['export'] = 'Export'; // settings $labels['settingsfor'] = 'Settings for'; $labels['preferences'] = 'Preferences'; $labels['userpreferences'] = 'User preferences'; $labels['editpreferences'] = 'Edit user preferences'; $labels['identities'] = 'Identities'; $labels['manageidentities'] = 'Manage identities for this account'; $labels['newidentity'] = 'New identity'; $labels['newitem'] = 'New item'; $labels['edititem'] = 'Edit item'; $labels['setdefault'] = 'Set default'; $labels['language'] = 'Language'; $labels['timezone'] = 'Time zone'; $labels['pagesize'] = 'Rows per page'; $labels['folders'] = 'Folders'; $labels['foldername'] = 'Folder name'; $labels['subscribed'] = 'Subscribed'; $labels['create'] = 'Create'; $labels['createfolder'] = 'Create new folder'; $labels['deletefolder'] = 'Delete folder'; $labels['managefolders'] = 'Manage folders'; $labels['sortby'] = 'Sort by'; $labels['sortasc'] = 'Sort ascending'; $labels['sortdesc'] = 'Sort descending'; ?>
Lawrence Lam wrote:
Comments on RoundCube :
- When you read an email, you will see the "move to ..." drop-down menu
near the top. I clicked on the down-arrow button (with FireFox) of the menu many times and nothing happened. On the 99th click, I then realized that you have to click very near to the TOP edge of the button so that you get the drop-down.
The layer with the message count display overlapped the drop down box. I just put it below the box.
- When you are at the viewing the email list or reading an email,
clicking on the top "E-Mail" button (with FireFox) gives no response (but still clickable).
This is solved with the current CVs release.
- When composing an email, you should separate email addresses (if you
are sending to multiple recepients) with commas and NOT entering them in multiple rows. If you enter the email addresses in rows, mailing will fail. The developer should change this to a single-row input box instead of the misleading area input box.
I chose to build a textarea because is will show a scroll bar if you enter many recipients. Of course you are right: when separating mail addresses with new lines, sending will fail. This is now fixed in CVS.
- The compose email form is not properly displayed. The bottom edge of
the form is not viewable under FireFox. No problem with IE6.
I recently applied some changes proposed by Rob Smith.
- Sometimes when there is no emails under Trash, the left panel will
show something like "Trash (7)". After switching view a few times and even re-login, it is still showing the same thing. Why?
Can not reproduce this. I will try to find out.
- Lastly, when integrate into cPanel's webmail login page (at
www.yourdomain.com/webmail), how do I skip from logging in the second time?
Don't know what cPanel is, sorry...
Regards, Thomas