Hi,
I have problem with iframe. I have installed a CMS and I have integrated
roundcubemail into a frame.
So to protect an account from unauthorized access, I have modified the
code (index.php) :
<?php
...
$referer = $_SERVER["HTTP_REFERER"];
$url = parse_url($referer);
$url = $url['scheme']."://".$url['host'].dirname($url['path'])."/";
$namesess = sprintf("UV%u", crc32($url));
session_name($namesess);
session_start();
if (isset($_SESSION['SESS_NICKNAME'])) {
...
// if we arrive here, something went wrong
raise_error(array(
'code' => 404,
'type' => 'php',
'line' => __LINE__,
'file' => __FILE__,
'message' => "Invalid request"), true, true);
}
else {
echo "Error";
exit();
}
?>
}
The login dialog box display correctly.
The problem is: when I click on the authentication button with a correct
login info it display "Error".
How to fix it ?
Sorry for my english ! I'm french.
Thx so much
_______________________________________________
List info: http://lists.roundcube.net/users/
Is there a way to make the header columns (e.g. From, Subject) resizable?
Barring that, how can I change their width in the PHP or CSS/skin source?
Thanks,
Raul
_______________________________________________
List info: http://lists.roundcube.net/users/
I just copied the unzipped roundcubemail directory to my webspace.
This shows up wenn I go to: www.myurl.com/roundcubemail/installer
Fatal error: Undefined class name 'rcube_install' in
/var/www/web120034/html/rcm/installer/index.php on line 20
what does this mean?
take care, hublot
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
I'm interested in forcing SSL for users at a new rouncube install. I've
tried an entry in the .htaccess file but it's not working. I see
something in the roundcube config file but I'm not sure how to
implement it that way.
My site will serve the login page if you type https://(my url) so I know
that is working.
Any help appreciated.
Chas
P.s. The url www.roundcubeforum.net does not seem to work, is the forum
still active?
_______________________________________________
List info: http://lists.roundcube.net/users/
hello,
I' ve got roundcube 0.1 ant i would like upgrade with the 0.2.
how do I make?
_______________________________________________
List info: http://lists.roundcube.net/users/
When I receive email from certain people (mainly people with email accounts at hotmail.com) I end up getting a blank email with no body text. The only way that I can see the body of the text is to hit the forward or reply buttons to get into the compose email editor. The text shows up just fine there. In the roundcube viewer (preview pane) there is no text except for the signature section that hotmail.com adds on to each email. I am thinking that this is a HTML formatted message and for some reason the HTML portion is not displaying.
I also tested to see if the text was just the same color as the background (by performing a "Select All" to highlight it), but it is not there. Any ideas?
Thanks!
_______________________________________________
List info: http://lists.roundcube.net/users/
BTW, I just got off the phone with a user that had checked her e-mail
via RoundCube from a Wii. She said it works great, but it is almost
impossible to type using the Wii controller, so she phoned me instead.
I know a user here has used a Playstation to do the same thing, but
that wasn't surprising for me since I we had done some testing on the
Playstation for web sites we develop .
No feedback to me on interface quirks using Playstation or Wii.
Way to go web standards, and congrats to the RoundCube team !
( WebTV die, die )
--
Charles Dostale
System Admin - Silver Oaks Communications
http://www.silveroaks.com/
824 17th Street, Moline IL 61265
_______________________________________________
List info: http://lists.roundcube.net/users/
I have looked for a way to do this and can not figure it out...I am sure there is a simple easy answer:
When I forward certain messages I like to remove the table containing the Subject/Date/From/To information. I have figured out how to delete the text, but I can not seem to delete the table that contained that text. Is there a way in the editor to do this without changing the message to plain text? I can select certain areas of the table to resize it, but but not delete the entire table itself. Any quick pointers? Sorry if this is a dumb question...I must simply be missing it...
_______________________________________________
List info: http://lists.roundcube.net/users/
On Jan 21, 2009, at 6:53 PM, Molin MEN wrote:
> But i'm still not sure about IMAP storage. Could you explain me in
> detail about that?
I use Fedora, some of the paths might be different on your system.
You might want to look at this HOW-TO at The Linux Documentation
Project :
<http://www.tldp.org/HOWTO/Mail-Administrator-HOWTO.html>
I'll use angle brackets to designate names that are variable.
I am simplifying here to keep things brief.
If I get anything seriously wrong, please anyone else jump in and
correct me.
When a message comes into a mail server ( or Mail Transport Agent -
MTA ) if the message is for an account on that computer, it hands the
message off to a Local Delivery Agent ( LDA ) such as procmail.
procmail removes the envelope and puts the message into the proper
user's inbox, which is normally the file /var/spool/mail/<username>.
If a user connects via IMAP, messages are shown in mailboxes. The
inbox resides in /var/spool/mail/<username> , however any other
mailboxes are stored in the user's home directory, usually /home/
<username>/ . Many administrators prefer to have mailboxes in a sub-
directory of user home directories, and some command-line Mail User
Agents ( MUA ) _need_ a sub-directory. The most common sub-directory
is "mail" so the path where non-inbox messages are stored are in /
home/<username>/mail/<mailboxname>
There are two common formats that messages are stored - mbox and
maildir.
mbox is a single file that contains many messages.
maildir is a directory that contains a file for each message.
That should get you started in the right direction.
> I just wonder whether it is stored in IMAP storage as what u said
RoundCube connects to an IMAP server just as Thunderbird ( a MUA ) does.
Messages are stored on the IMAP server.
> What do you mean by caching of message?
The messages always reside on the IMAP server.
Thunderbird, for example, makes local copies ( a cache ) of what is
on the IMAP server to improve performance.
RoundCube can be configured to create a cache of IMAP message too.
So, as described in the config file comments -
> // this is recommended if the IMAP server does
> // not run on the same machine
It _may_ increase performance for the database to make a "local copy"
of the IMAP messages depending on your computing environment.
Most of the time it won't, but if the database server runs on the
same computer as the webserver,
and the IMAP server is on a different computer, the database caching
might help.
Testing is the only way to determine if having RoundCube use a
database cache of IMAP messages helps.
> What do you mean by serialize into a big pile here?
I mentioned mbox and maildir formats above.
Since it takes a bunch of PHP code ( and processing time ) to parse
through the IMAP messages in order to display them in the web page,
what is cached in the database is the parsed PHP-specific data from
the messages, serialized into a form that the database can store. To
a human, that serialized data doesn't look much like a message
anymore, it is in a format meant to be understandable by PHP. The
message data would be more understandable to a human when viewed on
the IMAP server rather than the pre-parsed, serialized cached data.
One last note.
Messages that have HTML parts or attachments are difficult to read
via a text editor or text pager directly as they are stored on the
IMAP server, particularly if the messages are stored in mbox format
and the mailbox is large.
HTH
--
Charles Dostale
System Admin - Silver Oaks Communications
http://www.silveroaks.com/
824 17th Street, Moline IL 61265
_______________________________________________
List info: http://lists.roundcube.net/users/