Hi all,
I have activate the console command in the imap.inc file but there is any
console file in logs folder.
Any idea?
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/
I decided to try the new version of roundcube. It works well. Many bugs
have been fixed, but if I choose contact and i click button "Compose
mail to", i get an error "No contacts found". with some contacts it
works fine.
Can anyone help me?
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
I updated Japanese translation.
By the way, I can't use RoundCube Translator for Japanese and many languages.
I think that translator/localization/index.inc is old.
Please fix this.
--
@YMC Corporation / URL: http://www.ymc.ne.jp/
Kazuhiko Iwama / Tel: 083-228-1193 Fax: 083-228-1194
_________________/ Mail: iwama(a)ymc.ne.jp
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/TR/PmCJ9J59/roundcubemail-0.3-st.gz
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,
Attached is a plugin to make posible that a roundcube user
has its own SMTP parameters (Host, Port, User, Pass).
Realy, there is
two plugins
custom_smtp -> responsible for the tab and form to mantain a
per user SMTP parameters
custom_smtp_hook -> necesary to make this
changes on sending emails
Hope this will be usefull for anyone.
Karim.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/8H/cECcsaa/custom_smtp.tar.bz2http://detached.gigo.com/rc/8H/cECcsaa/custom_smtp.gif
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,
Attached you will find the Swedish localization of the archive plug-in
for Roundcube.
Regards,
Jonas Nasholm
Bitfuse Network
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/kn/vIXwphhk/archive-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/
Hi Roundcube users
We're proud to announce the stable release of version 0.3 with the
long-awaited plugin API. Now the doors are finally open to extend
Roundcube's functionality and the integration in other web-based systems
got much easier. The package includes a default set of useful plugins as
well as some sample code. An introduction to plugin development can be
found on our wiki [1].
This release also includes some more bug fixes especially fixes and
improvements of the LDAP support. Get all the details from the Changelog [2].
Together with this release we pimped our website with a fresh and sexy
screen design created by Micha Krautwasser, a very talented designer at
bueroflint.com. Many thanks man!
As usual you can download the new release from our (gorgeous) website [3].
Have fun!
Thomas
[1] http://trac.roundcube.net/wiki/Doc_Plugins
[2] http://trac.roundcube.net/wiki/Changelog
[3] http://roundcube.net/downloads
_______________________________________________
List info: http://lists.roundcube.net/dev/
LDAP being used is AD. name_field is 'displayName'.
If I specify name_field as 'displayname', then it properly displays
names in the list (for search results), but it won't show the display
name in the contact details.
If I specify name_field as 'displayName', then it displays empty (but
clickable) fields in the list, but the display name shows up properly in
the contact details.
By dumping variables, I can see that the same is happening for
firstname_field (givenName in LDAP), but that isn't a big deal since
that isn't used in the listing, only in the details.
Any thoughts?
Kyle
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello list,
Sorry for posting this post here, not to trac, but I didn't find register page in trac-system.
I have noticed, that "fileinto" action in managesieve plugin save it's argument in utf7-imap encoding, but RFC requires utf8. This envolves some problem, you may see discussion here http://dovecot.org/list/dovecot/2009-July/041690.html
Here is patch, which fixes this for version 0.3-rc1. I'm not php-programmer, so this might be done in more intelligent way, but this should be fixed:
--- lib/rcube_sieve.php.orig 2009-09-04 09:39:59.000000000 +0300
+++ lib/rcube_sieve.php 2009-09-04 09:38:32.000000000 +0300
@@ -326,7 +326,7 @@
{
case 'fileinto':
$extension = 'fileinto';
- $script .= "\tfileinto \"" . $this->_escape_string($action['target']) . "\";\n";
+ $script .= "\tfileinto \"" . $this->_utf7imap_to_utf8($this->_escape_string($action['target'])) . "\";\n";
break;
case 'redirect':
$script .= "\tredirect \"" . $this->_escape_string($action['target']) . "\";\n";
@@ -499,7 +499,7 @@
}
elseif(preg_match('/^fileinto/', $content))
{
- $result[] = array('type' => 'fileinto', 'target' => $this->_parse_string($m[sizeof($m)-1]));
+ $result[] = array('type' => 'fileinto', 'target' => $this->_utf8_to_utf7imap($this->_parse_string($m[sizeof($m)-1])));
}
elseif(preg_match('/^redirect/', $content))
{
@@ -722,6 +722,29 @@
return '["' . implode('","', $list) . '"]';
}
+
+ /**
+ * Convert string value from utf8 to utf7-imap encoding
+ *
+ * @param string Text
+ */
+
+ private function _utf8_to_utf7imap($content)
+ {
+ return mb_convert_encoding("$content","UTF7-IMAP","UTF8");
+ }
+
+ /**
+ * Convert string value from utf7-imap to utf8 encoding
+ *
+ * @param string Text
+ */
+
+ private function _utf7imap_to_utf8($content)
+ {
+ return mb_convert_encoding("$content","UTF8","UTF7-IMAP");
+ }
+
}
?>
_______________________________________________
List info: http://lists.roundcube.net/dev/