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/
Hi all,
if I active a plugin of an address book I get the same contatcs in all
contacs group. I can see only the contacts of the plug in the address book
of the plugin and in the address book of the default personal contacts.
I'm making some errors or is a bug?
Another thing... It's possible to configure a plugin address book to read
a view instead of a table?
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 friends,
there are already adapting to the plugin to create groups of contacts to
version 3.0 ?
--
----------------------------------------------------------------
Tiago Gomes Pereira http://www.tiagogomes.eti.br
LPI Certified
LPI ID - LPI000129445
IT Service Management - ITIL FOUNDATION V2
ID - SR341901
algodas(a)gmail.com
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all,
I get the following error if I click contacts list with
automatic_addressbook plugin and nothing appen:
[02-Sep-2009 19:41:46] PHP Catchable fatal error: Object of class
rcube_user could not be converted to string in
C:\roundcube\program\lib\MDB2.php on line 1672
With example_addressbook plugins also the personal list get the same value
of plugins list
Trunk is 2908
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/