hello,
I'm trying to build a plugin that will use extjs, but when I try to import
it there's a js error.
code:
$this->include_script('ext-all-debug.js');
gives:
Error : Ext is not defined
Source :
http://127.0.0.1/mailsar2/plugins/nsfac/ext-all-debug.js?s=1255713110
Ligne : 135
but on line 135 is the very beginning of ExtJs definitions:
Ext.DomHelper = function(){
I have tested other libraries with the same result. I've comment all my js
code, so this error occurs even with just that include line;
--
Jhonny Everson
_______________________________________________
List info: http://lists.roundcube.net/dev/
I think this is coming from the new roundcube sort by message index,
instead of date... if you move messages from the inbox to other folders, it
results in strange sorts
On Thu, 15 Oct 2009 13:21:23 -0700 (PDT), Keith Schonrock
<peridoc77(a)yahoo.com> wrote:
> I am using the SVN trunk version (3044) of Roundcube and I am seeing
some
> weird behavior with Roundcube in my IMAP folders. I am not having any
> performance issues, but I am getting messages out of order. I basically
> want to have the newest messages at the top of the list and then go
> backward from there in reverse order by date. (i.e. newest -> oldest).
I
> am seeing that behavior for most messages, but the ones from the past
1/2
> month or so are showing up at the end of the list when they should be at
> the top of the list. I recently moved all my mail (via Thunderbird)
from
> Thunderbird folders to IMAP folders. The dates listed in the date
column
> are all correct, but could the sorting dates have gotten messed up? Any
> way to check this and correct it?
>
> Thanks for any ideas or assistance.
>
>
>
>
> _______________________________________________
> List info: http://lists.roundcube.net/users/
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello,
I know this has been discussed, and I understand the reasons
why the cursor is at the end,
** but people just don't get it ** ...
This has to be an easy addition, and a configurable option...
to make
it behave like outlook or gmail
I'm just getting familiar with the
roundcube code base, and I'd like to add it myself in the mean time, but I
don't want to reinvent the wheel... is there a patch brewing somewhere?
Or can we just get it done text-transform: none; text-indent: 0px;
border-collapse: separate; font: medium 'Times New Roman'; white-space:
normal; orphans: 2; letter-spacing: normal; color: #000000; word-spacing:
0px; -webkit-border-horizontal-spacing: 0px;
-webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect:
none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;">
another example of one of our companies running roundcube:
It seems that
the default behavior for the web interface when replying to a message puts
the cursor at the end of the message. Some people are having deep emotional
issues with the fact that they may have to click at the beginning of the
message and ad their own space. I would hate for people to lose sleep over
this - is there an easy way to change that default behavior.
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
Here's an update for cy_GB messages and labels
dafydd
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/3A/VTUFfRd8/cy_GB-translation.ta.bz2
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,
here is small update for czech language.
Translated:
emailformaterror
AleÅ¡ PospÃchal
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/AX/45VS9Ufx/messages.inc
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! I've written a quick manual about Roundcube configuration and
performance. You can extend this or comment it here. But it would be
nice if someone will reformat this and add to our wiki.
1. CONFIGURATION OPTIONS
There are many configuration options with inpact on performance
in Roundcube. As Roundcube installation administrator you can.
set them to some defaults and disable possibility of change by your
users using 'dont_override' option.
Here's the list of options with impact on performance:
- 'index_sort', 'message_sort_col':
Messages listing is a main task of a mail client. Sorting is expensive.
First of all you should use IMAP server with SORT capability. If
messages list displaying is still too slow you should set
'message_sort_col' to 'date' and enable 'index_sort'.
The order (ASC/DESC) is not important.
'max_pagesize' (and 'pagesize')
To display messages subjects/senders/dates/etc Roundcube fetches the
headers. So, to increase performance don't set 'pagesize' too high.
'min_keep_alive' ('keep_alive')
To keep session Roundcube is sending a request to server every
'keep_alive' seconds. If you're already in mail task window Roundcube
will also check for new mail using this interval. To decrease load don't
set it too low.
'skip_deleted'
This really slows things down. With 'skip_deleted' enabled Roundcube
needs every time to check messages status, when displaying the list,
counting messages, etc. E.g. to count all messages in a folder we must
call SEARCH ALL UNDELETED instead of simple SELECT. The same with
messages listing, SEARCH instead of faster SORT or even direct FETCH
(index_sort).
'check_all_folders'
Roundcube searches for recent messages in INBOX. You can configure it to
check all folders, but e.g. if you you have many folders, enable also
'skip_deleted' and your IMAP server isn't using indexing this could be
realy expensive operation.
'preview_pane'
Displaying a message in preview_pane is less expensive, because in "full
window" mode Roundcube will need to update page controls and message
counters on every page load (if it isn't already cached by browser).
'enable_caching'
With enabled caching Roundcube stores message counters, folders list and
message headers in database. You should consider enabling this if access
to your DB server is faster than access to IMAP. The caching is not
always faster, also cache operations are expensive if mailbox cache is
not complete (cache is "dirty").
message_cache_lifetime'
If with enabled caching your database is growing too fast, you can lower
lifetime to not store old messages.
'imap_auth_type', 'smtp_auth_type'
If you know what type of authorization your servers are using, you can
speed up connection process setting type directly. E.g. if
'imap_auth_type' is set to 'check' (default) Roundcube will detect auth
method, then will try to authorize using CRAM-MD5 if supported and
finally using PLAIN. As you see, you can skip two steps if your server
allows PLAIN login (for security you should do this only on the
same host or using secure connection).
'logout_purge'
'logout_expunge'
If your server is heavy loaded you should probably disallow doing clean
up on every logout.
2. SERVER HINTS
- Disable SSL for IMAP/SMTP
If your SMTP/IMAP servers are on the same host or are connected with
secure network, would be better to not use SSL connections.
- Disable TLS for SMTP connections (on the same host)
It is not possible in Roundcube to force plain connection with SMTP
server. If server returns STARTTLS capability TLS connection will be
established. If you're on the same host, disabling TLS is safe and will
improve performance. In Postfix 2.2 or later you can do this with
'smtpd_discard_ehlo_keyword_address_maps'
(http://www.postfix.org/postconf.5.html#smtpd_discard_ehlo_keyword_address_m…)
Add in /etc/postfix/main.cf file:
smtpd_discard_ehlo_keyword_address_maps = hash:/etc/postfix/discard_ehlo
and in /etc/postfix/discard_ehlo file:
127.0.0.1 starttls,silent-discard
--
Aleksander 'A.L.E.C' Machniak http://alec.pl gg:2275252
LAN Management System Developer http://lms.org.pl
Roundcube Webmail Developer http://roundcube.net
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
i just installed roundcube and verything is ok, but i have several
questions.
I use ISPMan with cyrus-imap on Centos 5. In cyrus-imap the users are
created in this fromat user_domain_tld, also they are authenticated
using user_domain_tld. They use the same format to authenticate also in
roundcube. But when their user profile/identity is created from
roundcube, the Sender/Identity email address is set to be this way:
user_domain_tld@localhost. What i want to have is the email address to
be in this format user(a)domain.tld.
Other thing that i want to have is this. For example i have 3 domains:
domain1.tld
domain2.tld
domain3.tld
And every domain is used to access roundcube this way:
mail.domain1.tld
mail.domain2.tld
mail.domain3.tld
What i want is when round cube is loaded in page, then user to type only
his username, for exampme if imap username is myuser_domain_tld, so it
must type in username field only myuser, then system automatically to
include _domain_tld to the user when it press login button.
Is that possible and where do i need to take a look?
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all,
I've just started using the newest roundcube webmail and I started seeing
errors in my apache logfile:
[Sat Oct 10 14:16:36 2009] [error] [client 82.192.91.21] PHP Deprecated:
Function set_magic_quotes_runtime() is deprecated in
/sites/common/webmail/program/include/iniset.php on line 63, referer:
http://webmail. xxxxxxxxxxxxxxx.nl/?_task=mail&_mbox=INBOX
[Sat Oct 10 14:16:36 2009] [error] [client 82.192.91.21] PHP Deprecated:
Assigning the return value of new by reference is deprecated in
/sites/common/webmail/program/lib/PEAR.php on line 563, referer:
http://webmail.xxxxxxxxxxxxxxx.nl/?_task=mail&_mbox=INBOX
[Sat Oct 10 14:16:36 2009] [error] [client 82.192.91.21] PHP Deprecated:
Assigning the return value of new by reference is deprecated in
/sites/common/webmail/program/lib/PEAR.php on line 566, referer:
http://webmail. xxxxxxxxxxxxxxx.nl/?_task=mail&_mbox=INBOX
[Sat Oct 10 14:16:36 2009] [error] [client 82.192.91.21] PHP Warning:
date(): It is not safe to rely on the system's timezone settings. You are
*required* to use the date.timezone setting or the
date_default_timezone_set() function. In case you used any of those methods
and you are still getting this warning, you most likely misspelled the
timezone identifier. We selected 'Europe/Berlin' for 'CEST/2.0/DST' instead
in /sites/common/webmail/config/main.inc.php on line 380, referer:
http://webmail. <http://webmail.softwaredev.nl/?_task=mail&_mbox=INBOX>
xxxxxxxxxxxxxxx.nl/?_task=mail&_mbox=INBOX
I'm getting these message all the time.
Do I need to change anything or is this a programming issue?
Thanks for your time
Richard Pijnenburg
_______________________________________________
List info: http://lists.roundcube.net/dev/
hello,
i already wrote about developing a crypt/gpg plugin for roundcube to
this list in the past. in my eyes several issues need to be adressed
in roundcube core before it's possible to implement the plugin itself.
i'll try to list all showstoppers that i discovered so far ...
- the plugin needs access to the raw message body in order to verify
signatures
- inline pgp signed/encrypted messages have to be detected and handed
over to a hook in function parse_structure() at rcube_messsage.php
- verifying signed messages and decrypting encrypted messages needs to
be done by seperate hooks:
message_part_signed and message_part_encrypted
i tried to adress these with the attached patch. please review and
comment on it. it would be awesome if it could be integrated upstream
later.
unfortunately there s one big issue left which my patch doesn't adress
yet. the reason is simply that i don't have a clue about what to do
about it.
i would highly appreciate help from roundcube core developers here :-)
- read a text string (i.e. a decrypted message) into a mime parser and
return mime structure and mime parts. mime parsing is closely combined
with the IMAP code in roundcube. the mime parsing is done by the IMAP
server and roundcube fetches structure and parts from it.
so far there's no way to process a text string with mime parsing code.
unfortunately that's required for processing encrypted messages, as
the decrypted, possibly mime-formated message is only available as
text string.
i don't know how it's done for composed/sent messages, but i guess
that their structure needs to be parsed as well in order to upload
them to a send/drafts/... folder.
greetings,
jonas
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/YT/kce4cTdE/rcube_message.php.diffhttp://detached.gigo.com/rc/YT/kce4cTdE/signature.asc
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/