Hi!
Working with high-traffic mailboxes with threading turned on is annoying
a lot when one needs to find specific not-so-old message hidden
somewhere deep in long-ago-started thread (it could be on third or even
fifth page).
Attached patch should solve this.
(it is for review, without localization strings for now, should be easy
to add).
Vladislav
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Hk/2hE9zlQ3/rcmail-searchfilter.patch
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi All,
I'd like to let you know about a problem we're having again and again.
It's about accented characters in attachment names.
It was working in 0.1 stable, but since then we always had problems with it.
Sometimes we found some way to hack it, it never worked well, and we
don't have the knowledge
to fix it once and for all and provide a patch. This is why I'm writing
this letter.
The problem is that after uploading the first accented file RC hangs and
logs out.
We have a test file set (attached) that we use for testing.
Please, please somebody from the CORE guys check this out.
Keep this test file set at a good place, this is a very easy way of testing
whether the system has full international attachment support.
Thanks in advance,
Balazs
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/R5/GAwAnrYA/att-test.zip
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all,
I wrote a patch to add MySQL connection via SSL to Roundcube (the patch
is against r3437) and I'd like to share this with you all, I hope it
will be useful :)
See http://pear.php.net/manual/en/package.database.db.intro-dsn.php for
SSL related options in DSN examples.
I think it should be useful to use a specific directory to store the
certs or the config/ dir itself then we can manage it in rcube_mdb2.php
adding the proper 'capath' value, using INSTALL_PATH, to the $dsn var.
Cheers,
Laurento
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Pw/lfNFG06c/roundcube-mysqli-ssl.patch
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello,
I would like to make a request for a roundcube plugin. There is already one
made by Roland it is a registration plugin but Rolands uses hmail drivers
and I would like to request if someone could possibly make one for Cyrus
IMAPd I would be glad to pay.
-Robert
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello!
I'm sending an updated slovene translation.
Regards,
Barbara
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/ra/55OM7SZH/RCD_slovene_translat.zip
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all,
I've some gmail account but i'm using roundcube locally. I'd like to set
up a dovecot server locally and take it sync with Gmail.
I take a look to offlineimap but adding or deleting folder locally was not
sync in gmail.
There are some other tool or some patch for offlineimap?
Thanks
--
Sandro Pazzi
IdWeb s.r.l.
Viale Romagna 69/A - 06012 Citta' di Castello (PG)
Tel. 075 851 97 28
Fax 075 851 97 30
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
I’ve attached an updated Swedish localization.
Regards,
Jonas Nasholm
Bitfuse Network
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/tU/h5l18dyO/sv_SE.zip
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello list,
Our users often asking me - is it able to get full path to attached file. I'm trying to change:
--- ./program/steps/mail/compose.inc.orig 2010-03-25 12:29:55.000000000 +0200
+++ ./program/steps/mail/compose.inc 2010-03-25 12:30:27.000000000 +0200
@@ -68,7 +68,7 @@
}
// only a file path is given
else {
- $filename = basename($attach);
+ $filename = $attach;
$attachment = array(
'name' => $filename,
'mimetype' => rc_mime_content_type($attach, $filename),
But this didn't make the trick. Can anybody point me to right source file where I will make modifications ?
I don't see such feature in roadmap list, but is it planing to make attachments be able opened/view on "composing" stage ? This will be great to users who want to recheck if they attach exactly wanted filename. Due to security issues maybe not open file on server - just store mapping:
"attached file" -> "local file", and open local file if user trying to view data.
Any thoughts ?
One more thing - any chance to see multi-selection dialog while attaching files or it's too difficult ?
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello everyone!
I was wondering, why my Roundcube instance wouldn't show the quota bar,
turns out that there is a problem with detecting IMAP capabilities in
the RC code. And looks like I'm not the only one:
http://trac.roundcube.net/ticket/1485750
In short, our mail cluster setup doesn't return the full set of IMAP
capabilities before the user has been logged in.
Our setup (RC 0.3.1-20091031):
Webmail front-end | mail cluster
RC -> imapproxy -> perdition -> courier imap
Here is what an IMAP connection looks like from the webmail box:
root@webmail:/# nc 127.0.0.1 143
* OK IMAP4 Ready dzilna 00021323
C: CAPABILITY
* CAPABILITY IMAP4 IMAP4REV1 XIMAPPROXY
C: OK Completed
C: LOGIN rudolfs(a)sigmanet.lv xxx
C: OK User logged in
C: CAPABILITY
* CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT
THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION
C: OK CAPABILITY completed
But when logging in with roundcube I get the following (using xdebug):
public 'capability' =>
array
0 => string 'IMAP4' (length=5)
1 => string 'IMAP4REV1' (length=9)
2 => string 'XIMAPPROXY' (length=10)
After a little poking around in the Iloha IMAP library, I came up with
this hack:
root@webmail:/var/www/rc# git diff program/lib/imap.inc
diff --git a/program/lib/imap.inc b/program/lib/imap.inc
index 9d896ff..6df5855 100644
--- a/program/lib/imap.inc
+++ b/program/lib/imap.inc
@@ -452,6 +452,7 @@ function iil_C_Login(&$conn, $user, $password) {
if ($result == 0) {
$conn->error .= '';
$conn->errorNum = 0;
+ iil_C_ClearCapability($conn);
return $conn->fp;
}
It clears the capability array after a successful login. After logging
in with this change I get:
public 'capability' =>
array
0 => string 'IMAP4REV1' (length=9)
1 => string 'UIDPLUS' (length=7)
2 => string 'CHILDREN' (length=8)
3 => string 'NAMESPACE' (length=9)
4 => string 'THREAD=ORDEREDSUBJECT' (length=21)
5 => string 'THREAD=REFERENCES' (length=17)
6 => string 'SORT' (length=4)
7 => string 'QUOTA' (length=5)
8 => string 'IDLE' (length=4)
9 => string 'ACL' (length=3)
10 => string 'ACL2=UNION' (length=10)
And the quota bar is working. Also this bug could be responsible for the
IMAP SORT feature not working on my setup...
Your thoughts?
Regards,
Rudolfs
_______________________________________________
List info: http://lists.roundcube.net/dev/