mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-11 22:45:26 +00:00
Monotone-Parent: e9e3e99e5c78c811e3e5cb0f4742380c31e1e44c
Monotone-Revision: 0e5184582f5d3e24e8418e6c09048eb31dd79c83 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2012-05-01T17:03:14
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
2012-05-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/generic.js (accessToSubscribedFolder): use
|
||||
the last part of the string as folder identifier. Otherwise we end
|
||||
up with the module name.
|
||||
|
||||
* SoObjects/Mailer/SOGoDraftObject.m
|
||||
(-bodyPartForAttachmentWithName:): attach rfc822 content as 8bit,
|
||||
since the "quoted-printable" encoder of SOPE is broken.
|
||||
|
||||
@@ -1266,10 +1266,10 @@ function accessToSubscribedFolder(serverFolder) {
|
||||
var username = parts[0];
|
||||
var paths = parts[1].split("/");
|
||||
if (username == UserLogin) {
|
||||
folder = paths[1];
|
||||
folder = paths[2];
|
||||
}
|
||||
else {
|
||||
folder = "/" + username.asCSSIdentifier() + "_" + paths[1];
|
||||
folder = "/" + username.asCSSIdentifier() + "_" + paths[2];
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user