Hello Roundcube users and lovers
The next major release has now reached stable state and is available for
download. The important new features since 0.4 are: full support for shared
folders and namespaces, Internationalized Domain Names (IDNA) as well as
SMTP Delivery Status Notifications. The user interface for managing IMAP
folders has changed a bit and provides new space for further extensions and
plugins. This was already part of the release candidate published some
weeks ago and the new stable version fixed the last few bugs, namely some
issues with namespaces.
We recommend to update all existing Roundcube installations with this
release. Get it now from http://roundcube.net/download and have a lot of fun!
~Thomas
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I've got two servers on my network:
- mail.iamghost.org [192.168.0.200 / 24]
- www.iamghost.org [192.168.0.201 / 24]
Now my Postfix server lets me send mail via SMTP just fine from
Thunderbird on any machine that is in 'mynetworks' file:
Code:
[root@mail ~]# cat /etc/postfix/mynetworks
127.0.0.0/8
192.168.0.0/24
The problem I'm having is that I've installed RoundCube on my web
server listed above and I'm able to login and read all my messages
perfectly via IMAP4. The problem is when I compose a new message and
try to send via SMTP from webmail only. When I try and send, I get a
SMTP error: SMTP Error (250) Authentication Failure. I can't
understand what's causing this. When I 'tail' my Postfix log file, I
don't see anything but an incoming connection and then an immediate
disconnect. No details show why this is occurring. I then ran Postfix
in debug mode to get more info and here's what I show:
Code:
Jan 11 13:29:32 mail dovecot: imap-login: Login: user=<carlos>,
method=PLAIN, rip=192.168.0.201, lip=192.168.0.200, mpid=2190, TLS
Jan 11 13:29:32 mail postfix/smtpd[2191]: connect from
www.iamghost.org[192.168.0.201]
Jan 11 13:29:32 mail postfix/smtpd[2191]: match_hostname:
www.iamghost.org ~? 127.0.0.0/8
Jan 11 13:29:32 mail postfix/smtpd[2191]: match_hostaddr:
192.168.0.201 ~? 127.0.0.0/8
Jan 11 13:29:32 mail postfix/smtpd[2191]: match_hostname:
www.iamghost.org ~? 192.168.0.0/24
Jan 11 13:29:32 mail postfix/smtpd[2191]: match_hostaddr:
192.168.0.201 ~? 192.168.0.0/24
Jan 11 13:29:32 mail postfix/smtpd[2191]: >
www.iamghost.org[192.168.0.201]: 220 mail.iamghost.org ESMTP Postfix
Jan 11 13:29:32 mail postfix/smtpd[2191]: watchdog_pat: 0x1530c60
Jan 11 13:29:32 mail postfix/smtpd[2191]: <
www.iamghost.org[192.168.0.201]: EHLO www.iamghost.org
Jan 11 13:29:32 mail postfix/smtpd[2191]: >
www.iamghost.org[192.168.0.201]: 250-mail.iamghost.org
Jan 11 13:29:32 mail postfix/smtpd[2191]: >
www.iamghost.org[192.168.0.201]: 250-PIPELINING
Jan 11 13:29:32 mail postfix/smtpd[2191]: >
www.iamghost.org[192.168.0.201]: 250-SIZE 20480000
Jan 11 13:29:32 mail postfix/smtpd[2191]: >
www.iamghost.org[192.168.0.201]: 250-VRFY
Jan 11 13:29:32 mail postfix/smtpd[2191]: match_list_match:
www.iamghost.org: no match
Jan 11 13:29:32 mail postfix/smtpd[2191]: match_list_match:
192.168.0.201: no match
Jan 11 13:29:32 mail postfix/smtpd[2191]: >
www.iamghost.org[192.168.0.201]: 250-ETRN
Jan 11 13:29:32 mail postfix/smtpd[2191]: >
www.iamghost.org[192.168.0.201]: 250-ENHANCEDSTATUSCODES
Jan 11 13:29:32 mail postfix/smtpd[2191]: >
www.iamghost.org[192.168.0.201]: 250-8BITMIME
Jan 11 13:29:32 mail postfix/smtpd[2191]: >
www.iamghost.org[192.168.0.201]: 250 DSN
Jan 11 13:29:32 mail postfix/smtpd[2191]: watchdog_pat: 0x1530c60
Jan 11 13:29:32 mail postfix/smtpd[2191]: <
www.iamghost.org[192.168.0.201]: RSET
Jan 11 13:29:32 mail postfix/smtpd[2191]: >
www.iamghost.org[192.168.0.201]: 250 2.0.0 Ok
Jan 11 13:29:32 mail postfix/smtpd[2191]: watchdog_pat: 0x1530c60
Jan 11 13:29:32 mail postfix/smtpd[2191]: <
www.iamghost.org[192.168.0.201]: QUIT
Jan 11 13:29:32 mail postfix/smtpd[2191]: >
www.iamghost.org[192.168.0.201]: 221 2.0.0 Bye
Jan 11 13:29:32 mail postfix/smtpd[2191]: match_hostname:
www.iamghost.org ~? 127.0.0.0/8
Jan 11 13:29:32 mail postfix/smtpd[2191]: match_hostaddr:
192.168.0.201 ~? 127.0.0.0/8
Jan 11 13:29:32 mail postfix/smtpd[2191]: match_hostname:
www.iamghost.org ~? 192.168.0.0/24
Jan 11 13:29:32 mail postfix/smtpd[2191]: match_hostaddr:
192.168.0.201 ~? 192.168.0.0/24
Jan 11 13:29:32 mail postfix/smtpd[2191]: disconnect from
www.iamghost.org[192.168.0.201]
Jan 11 13:29:32 mail dovecot: imap(carlos): Disconnected: Logged out
bytes=12/341
Anyone know what is causing this error? I've completely disable (I
think) TLS configuration from Postfix (not Dovecot) to verify what the
issue maybe. Still get the same error with TLS disable. I can telnet
into the server from any PC and send mail via Telnet:
[cmennens@tuna ~]$ telnet mail.iamghost.org 25
Trying 192.168.0.200...
Connected to mail.iamghost.org.
Escape character is '^]'.
220 mail.iamghost.org ESMTP Postfix
EHLO tuna.ideorlando.org250-mail.iamghost.org
250-PIPELINING
250-SIZE 20480000
250-VRFY
250-ETRN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
mail from:carlos@iamghost.org
250 2.1.0 Ok
rcpt to:carlos.mennens@gmail.com
250 2.1.5 Ok
data
354 End data with <CR><LF>.<CR><LF>
Subject:Test Email Message
This is a test
.
250 2.0.0 Ok: queued as 4E7E7140522
quit
221 2.0.0 Bye
Connection closed by foreign host.
Any ideas on what this could be? It's driving me crazy and I'm
exhausted myself trying to resolve this issue.
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi All,
Running version 0.4 Stable.
When a users clicks on an UNREAD message, the loading message appears, the
message becomes un-highlighted and then it throws up the "Could not load
message from server", nothing appears in the reading pane.
Can anyone shed any light on this please??
TIA
Artie
Artie Ball
Network Manager
The John Wallis Academy (Maths and Technology Specialist College)
<http://www.thejohnwallisacademy.org/> http://www.thejohnwallisacademy.org
There are 10 kinds of people in the world, those who understand binary and
those who don't.
P Please consider the environment before printing this e-mail
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi everyone,
I am using Roundcube 0.5-beta with an Apache 2.2.14-5, GNUTLS 2.10.4 and
mod_gnutls in version 0.5.9. The used Linux distribution is Ubuntu 10.10.
When I am logged into the webinterface, I see many messages like these
in the Apache error log:
[Tue Jan 11 10:08:22 2011] [error] [client 88.198.50.166] GnuTLS:
Handshake Failed (-9) 'A TLS packet with unexpected length was received.'
First I thought it is a problem with Roundcube itself, but after I tried
several GNUTLS, mod_gnutls versions and the Squirrelmail webinterface --
and the error messages still occured -- I assume that there is a problem
with the underlying GNUTLS itself.
I also found a bug in the Ubuntu Launchpad Bugtracker, which implies
that this is a problem with GNUTLS:
https://bugs.launchpad.net/ubuntu/+source/gnutls26/+bug/105736
* Has anyone experienced this problem before?
* Anyone a hint how to solve it?
* There seems to be no problem with the connection, Firefox and Chrome
tell me the session is encrypted.
Best Regards,
-Jason
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I'm hosting a web site ( http://test-ipv6.com ) that *may* get a fair bit of
attention this week. It will be part of a press release involving several
major web sites. It will also be on the web site of a prominent
organization coordinating the press release.
The server *may* have a sudden increase in business, depending on the level
of attention the press release (and media interviews related to it) gets.
What does this mean for you?
- Mailing lists I host (woodworkers, roundcube, corvette resto, etc) will
possibly run a bit slower on getting mail delivered.
- Web sites I host may be less snappy. Possibly, downright slow.
- Shell access, for those of you who have it, may appear lagged.
- If you aren't sure why you're getting this mail at all, it means
that you have an email address that is routed through my server.
Ping me directly if you're not sure why.
I'm looking into ways to help spread the load to other servers, but I'm
gated on both time and money, as well as IPv6 availability on any resources
that might be contributed. As such, the next handful of days *may* be
bumpy. I want to appologize in advance for that.
I have had the suggestion from one of the web sites on the press release to
look at Google App Engine. I will do that, but I am constrained on when I
can do that. I can't mix my employer's time or resources, with working
on test-ipv6.com. The soonest I can do any significant change will be
Friday.
Additionally, the organization putting out the press release, is working on
setting up a mirror of my site; once complete, they will hopefully take
some of the traffic themselves.
If you have an urgent issue, call 1-877-4FESLER, extension 22. If I can't
asnwer the phone, leave a message (I may be in a meeting). But do leave the
message, and I will get it.
Jason Fesler
Some of the email/Web sites affected (the main ones, at least):
alexmeyer.combsdnet.orgcorvette-resto.com
deepfried.us
egbtnetwork.comframekillertobacco.comgardencity1988.comgetprideconcrete.comgigo.comgoldenrivers.orghcri.comlists.gigo.comlists.roundcube.net
mkurl.us
sawdusters.orgstarrynyte.comsuchter.comtest-ipv6.comwecarecancerpeernavigators.orgyersinia.com
For a complete list, see http://stats.gigo.com/ .
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hallo all and a happy new year
Did you know CrossPoint (XP)? An old german DOS-Mailprogramm!
This old program has a function which I'm missing for several years:
I try to explain:
Some of my contacts are writing private e-mails to me from their
work-mail-address.
If I do not watch the reply will go to work, but it has to go to the
private mail-address.
In CrossPoint there was the possibility to set an manuell
Reply-To-Adress which overides all Header-Reply-Settings (if exist) by
sending a Reply.
This manuell Reply-To-Adress have to set manuelly in the adressbook, by
choosing an other existing mail-adress as Reply-To.
Do you understand, what I try to explain?
Best Regards from Germany
Ulli Heist
--
http://heist.hobby-site.org/witze
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Dear all,
I downloaded this version of ROundcube and followed the install guide.
I noticed that the directory has a few executable shell scripts:
# cd /xxx/roundcube/bin
# ls -l
total 32
-rwxr-xr-x 1 root root 2688 Sep 25 15:03 cleandb.sh
-rwxr-xr-x 1 root root 2782 Sep 25 15:03 decrypt.sh
-rwxr-xr-x 1 root root 1334 Mar 5 2010 jsshrink.sh
-rwxr-xr-x 1 root root 547 Mar 5 2010 jsunshrink.sh
-rwxr-xr-x 1 root root 3238 Sep 29 10:30 msgexport.sh
-rwxr-xr-x 1 root root 2474 Sep 29 10:30 msgimport.sh
-rwxr-xr-x 1 root root 4862 Sep 25 15:03 update.sh
All static content (and roundcube included) is on a mount point that has
noexec,nosuid which means that it cannot be executed.
I have copied the scripts into /usr/local/bin, where these can be
excueted from, but would like to know what I have to change in the
Roundcube configuration to ensure that Roundcube still finds these.
Does anyone know?
Best regards, J.
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi chaps and chapettes,
I have just set-up my first RC system: (relevent versions notes at
end of this Email)
RC
Apache
mysql
postfix
dovecot
spamassassin
php
The Roundcube is a little slow with one test user and no load. I would
like to know what I have to tweak for this to run a little faster. I
presume that it is one or some of these programmes that ought to be
tuned: apache mysql or roundcube. Does some one have some ideas or
some links to some docs about this?
By the way: its not hardware related: The load is always at a pleasent 0
0 0 and the system has an 8 core Xeon on it, so its a nice beast: :
Intel(R) Xeon(R) CPU E5420 @ 2.50GHz
Many thanks for any ideas.
Best regards, J.
----------------------------------------------------------------------------------------------------------------------------
Appendix:
Version specifc notes: (sans dovecot,postfix,spamd because these should
be irrelevant to RC performance)
* roundcube 0.4.2
* Apache version 2.2.16-4
* mysql Ver 14.14 Distrib 5.1.49, for debian-linux-gnu (x86_64) using
readline 6.1
* PHP 5.3.3-6 with Suhosin-Patch (cli) (built: Dec 7 2010 12:47:03)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies
with Suhosin v0.9.32.1, Copyright (c) 2007-2010, by SektionEins GmbH
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
I've just upgraded from 0.4.2 to 0.5-RC.
I would like to report a considerable slowing down of the imap
connection (dovecot 2.0.7) in case 'imap_auth_type' is not specifically
defined (CRAM-MD5 in my case), while the default null value was working
fine with the 0.4.2 version.
Regards
Roberto Puzzanghera
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e