Charlie Hazlett wrote:
> I do not empty my spam folder daily and in no time at all it can contain
> over 1000 messages......give it a week and there might be over 10,000.
>
> I have been online with the same email addresses for a dozen years and
> the spam tends to build up.
>
>
>
> On 1/24/2008, "bb" <bb(a)0brg.net> wrote:
>
>> chasd wrote:
>>> Playing with RoundCube a bit more, as a work around you could delete
>>> the entire mailbox from the "Folders" area of "Personal Settings" and
>>> then create a new folder of the same name.
>> Or just click the "Select: All" link and then delete 40 messages (or w/e
>> your messages/page limit is) at a time. Sure, it's not perfect, but it
>> works alright if your mailbox isn't tooooo huge (I am assuming you don't
>> want to empty a 10K+ box every day that is not called "Junk" or "Trash" :P).
Hmm, this got me interested; how does roundcube handle huge mailboxes
anyway? So I tried;
$ for ((i=0;i<100000;i++)); do
for> echo "spam $i" | mail -s "spam $i" $USER
for> done
Even though this stopped after the ulimit -u was reached (it sent ~2k
messages in total) it gives a pretty good impression of how roundcube
handles it... not very well.
At first, I set my user preferences to allow message windows with 100K
messages but because of the hard 200 limit in the config, I only saw 200
messages. At least I saw them.. once I also modified that value I saw
nothing anymore. The roundcube error logs gave:
[25-Jan-2008 00:21:34] PHP Fatal error: Allowed memory size of 8388608
bytes exhausted (tried to allocate 2049 bytes) in
/a/boao/www/webmail/roundcubemail-0.1-rc2/program/lib/imap.inc on line 133
The HTTP response body was empty, status 200. Changing back all the
values, deleting all messages with thunderbird (which worked very
smoothly, btw), restarting the webserver; nothing mattered. It kept
saying that in the logs. To eventually get it to work again I had to
empty the trash with thunderbird and "compact" all the folders.
Anyway, not that this is a very likely situation.. It's still quite
interesting to see that once it's too full, it's too full and you're
doomed if you don't have other means to access your INBOX :)
Greetings,
b^4
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello all,
how do I enable the HTML-Composing in the rc2 ?
As far as I understood it the HTML-Composing is included but not
activated by default.
Christian Kütbach
--
UNEM-Produktion
Dipl.-Inf. Christian Kütbach
Tel.:02507-982722
c.kuetbach(a)unem.de
www.unem.de
_______________________________________________
List info: http://lists.roundcube.net/users/
I am still seeking a way to do mass deletions of emails. I know one may
empty the trash folder but there should be an easier and quicker way to
empty other folders as well.......my spam folder, for instance.
This is the ONE thing that keeps me from using RC....until that feature
is included I will stick with Iloha......it does everything I
want.....just not as "pretty".
########
NOTICE: Due to Presidential Executive Orders, the National Security
Agency may have read this email without warning, warrant, or notice.
They may do this without any judicial or legislative oversight. You have
no recourse nor protection save calling for the impeachment of the
current President.
########
Charlie Hazlett
charlie(a)hazlett.net
Columbus, Ohio
_______________________________________________
List info: http://lists.roundcube.net/users/
Is there a limit on the number of folders Roundcube can work with? When
I go to the folders list in my primary mail account it sits loading for
a while and then ends up with a blank page. I am assuming I have too
many folders for Roundcube to work with. Either that or the fact that I
have folders within folders is causing problems.
I have 1311 folders at present with the archives that all sit below an
archive folder. All works fine with Thunderbird accessing the folders
via IMAP and Mutt directly on the server. I am using Dovecot for IMAP
access.
--
Paul Tansom | Aptanet Ltd. | http://www.aptanet.com/ | 023 9238 0001
======================================================================
Registered in England | Company No: 4905028 | Registered Office:
Crawford House, Hambledon Road, Denmead, Waterlooville, Hants, PO7 6NU
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi Group ,
Clicking on the "+" sign next to an email address to add them as a contact generates the following error in a red bar at the top of the page :
"Could not save the contact address"
It does check to see if it is already an address, because when I try to add an address that is already in my address book it says
"A Contact with this email address already exists"
So I am guessing I might be having a problem writing from this page to the contact tbale...any ideas ?
Thanks,
Jason
_______________________________________________
List info: http://lists.roundcube.net/users/
I just installed roundcube and I am getting the following error after I try
to login. I don't see any errors in the log file.
Any suggestions as to what could be wrong? This is on a windows server.
The page you are looking for cannot be displayed because an invalid method
(HTTP verb) was used to attempt access.
_____
Please try the following:
* Contact the Web site administrator if you believe that this request
should be allowed.
* Make sure that the Web site address displayed in the address bar of
your browser is spelled and formatted correctly.
HTTP Error 405 - The HTTP verb used to access this page is not allowed.
Internet Information Services (IIS)
_______________________________________________
List info: http://lists.roundcube.net/users/
environment:
OpenBSD 4.0/i386, chrooted apache, roundcube 0.1-rc1, dovecot 1.0.2 (yes, i
should probably get this upgraded)
i am providing services to a few dozen users via an https url. after
applying the update to -rc2, i was unable to login via the web interface.
/logs/errors shows:
[26-Dec-2007 14:58:56 +0000] IMAP Error: Invalid password
after looking around at the dovecot logs, and finding nothing, i decided to
crank up the logging (in dovecot and roundcube). still nothing, and after
taking a peek with tcpdump i suspected that the requests weren't even
making it to dovecot.
running `openssl s_client -connect 127.0.0.1:993' confirmed my suspicions
(i think), as it worked just fine:
New, TLSv1/SSLv3, Cipher is DHE-RSA-AES256-SHA
Server public key is 1024 bit
[...snip...]
---
* OK Dovecot ready.
A345 login john XXXXXXXXX
A345 OK Logged in.
Z345 logout
* BYE Logging out
Z345 OK Logout completed.
read:errno=0
i believe the relevant parts of main.inc.php are:
// the mail host chosen to perform the log-in
// leave blank to show a textbox at login, give a list of hosts
// to display a pulldown menu or set one host as string.
// To use SSL connection, enter ssl://hostname:993
$rcmail_config['default_host'] = 'ssl://localhost:993';
// TCP port used for IMAP connections
$rcmail_config['default_port'] = 993;
i have tried changing `localhost' to the FQDN of my host (plus other
relevant config changes), and a few other permutations, none of which shed
any light on the scene for me.
anything from playful nudges to get me looking in the right direction to
hitting me right upside the head with a cluestick will be much appreciated.
regards,
--john
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi folks
First of all I want to say, RoundCube is a nice thing!
But I have one problem:
I log into RoundCube with an available account and leave the computer.
The next day, I'm still logged in. So if I log in from a public computer
and forget to log out, my account is predestinated to get compromised.
If I dont clear the browser's cache and history, RoundCube is opened
without a login request. => Logs in with the last logged in account.
I also run Squirrelmail, and there, even if I just reload the URL, I'm
asked for user and pw. I think, this behavior should be also possible
for RoundCube. I have to explicitly log out with the logout button to
get logged out effectively.
Altough it is the task of the user to log out, an automatic log out
functionality wouldn't be bad.
What am I doing wrong? Or don't I have understood everything?
Thanks for help
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi there
I can't find a reference to this issue in the mailing list archives.
Does anyone know why for some users the login hangs indefinitely and
the php process starts munching CPU and memory (leak?). Very strange.
My 'username' fields are in this format:
login%domain.com
I seriously doubt that could have anything to do with it, given that
all users' logins are in that format.
Any ideas?
Running v0.1-rc2 under lighttpd 1.4.15 with php 4.4.4 and Dovecot 1.0.7
Thanks
Dale
_______________________________________________
List info: http://lists.roundcube.net/users/