mirror of
https://github.com/modoboa/modoboa.git
synced 2026-04-25 17:06:01 +03:00
[GH-ISSUE #185] Cannot send attachments if CKeditor is enabled #170
Labels
No labels
bug
bug
dependencies
design
documentation
duplicate
enhancement
enhancement
enhancement
feedback-needed
help-needed
help-needed
installer
invalid
looking-for-sponsors
modoboa-contacts
new-ui
new-ui
pr
pull-request
pyconfr
python
question
security
stale
webmail
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/modoboa-modoboa#170
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tonioo on GitHub (Dec 4, 2013).
Original GitHub issue: https://github.com/modoboa/modoboa/issues/185
Originally assigned to: @tonioo on GitHub.
Originally created by Antoine Nguyen on 2011-10-14T09:02:16Z
There is a javascript issue when CKeditor is enabled:
@tonioo commented on GitHub (Dec 4, 2013):
Posted by Redmine Admin on 2011-10-21T15:35:12Z
In [c02a59ce254b067a89e09157c9ed7a17f41463a8]:
@gldtn commented on GitHub (Apr 2, 2014):
I ran into this problem on 1.1.1.. is there a fix for this? I can't send a message at all if ckeditor is enabled
@tonioo commented on GitHub (Apr 2, 2014):
I can't reproduce this issue. Do you have more information? (does firebug say something)
@gldtn commented on GitHub (Apr 2, 2014):
This is what I see on firebug with debug mode on: http://pastie.org/private/45deusbftrn8srs1zedxfa
Also when I click on send:
"NetworkError: 500 INTERNAL SERVER ERROR - https://mail.DOMAIN.org/webmail/?action=compose"
?action=compose
SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data
...ute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r...
@tonioo commented on GitHub (Apr 2, 2014):
What is your lxml version ?
@gldtn commented on GitHub (Apr 2, 2014):
lxml (3.3.3)
pip list:
argparse (1.1)
chardet (2.2.1)
dj-database-url (0.3.0)
Django (1.5.5)
django-reversion (1.8.0)
factory-boy (2.3.1)
LEPL (5.1.3)
lxml (3.3.3)
modoboa (1.1.1)
MySQL-python (1.2.5)
passlib (1.6.2)
pip (1.5.4)
pycrypto (2.6.1)
rfc6266 (0.0.4)
setuptools (2.2)
sievelib (0.8)
South (0.8.4)
wsgiref (0.1.2)
@tonioo commented on GitHub (Apr 2, 2014):
ok, I've never made tests with this version. To confirm my idea, could you try to downgrade lxml ?
@gldtn commented on GitHub (Apr 2, 2014):
Any specific version you would prefer? I found this one here: https://pypi.python.org/pypi/lxml/3.2.5
@gldtn commented on GitHub (Apr 2, 2014):
I downgraded it to 3.2.5 and the problem still persist
@gldtn commented on GitHub (Apr 2, 2014):
Also do you think it could be related to nginx/uwsgi ?
/etc/uwsgi/modoboa.ini:
[uwsgi]
master = true
vhost = true
enable-threads = true
socket = /var/uwsgi/modoboa.sock
chdir = /home/modoboa/modovmail
#wsgi-file = /home/modoboa/modovmail/modovmail/wsgi.py
module = modovmail.wsgi:application
plugins = python2
virtualenv = /home/modoboa/venv
#env = DJANGO_SETTINGS_MODULE=modovmail.settings
harakiri = 30
sharedarea = 4
processes = 2
no-default-app = true
uid = modoboa
gid = http
chmod-socket = 660
chown-socket = modoboa:http
logto = /var/log/modoboa.log
@tonioo commented on GitHub (Apr 2, 2014):
I'll try to make a quick fix this afternoon. It seems to be an lxml2/lxml3 compatibility issue but I may be wrong.
@gldtn commented on GitHub (Apr 2, 2014):
Ok, thanks for your prompt reply and help!
@tonioo commented on GitHub (Apr 2, 2014):
I think I solved your issue. Look at #538
@gldtn commented on GitHub (Apr 2, 2014):
Yes, issued solved.. thanks a lot for this ;)