mirror of
https://github.com/moparisthebest/davmail
synced 2024-12-13 11:12:22 -05:00
Caldav: Remove calendar-proxy, only used for delegate calendars
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@651 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
90f3431270
commit
a4843fe9a3
@ -940,7 +940,7 @@ public class CaldavConnection extends AbstractConnection {
|
||||
sendClient("HTTP/1.1 " + status + ' ' + HttpStatus.getStatusText(status));
|
||||
String version = DavGateway.getCurrentVersion();
|
||||
sendClient("Server: DavMail Gateway " + (version == null ? "" : version));
|
||||
sendClient("DAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, calendar-proxy");
|
||||
sendClient("DAV: 1, calendar-access, calendar-schedule, calendarserver-private-events");
|
||||
SimpleDateFormat formatter = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss Z", Locale.ENGLISH);
|
||||
String now = formatter.format(new Date());
|
||||
sendClient("Date: " + now);
|
||||
@ -1130,7 +1130,7 @@ public class CaldavConnection extends AbstractConnection {
|
||||
}
|
||||
|
||||
public String getPath(String subFolder) {
|
||||
String folderPath = null;
|
||||
String folderPath;
|
||||
if (subFolder == null || subFolder.length() == 0) {
|
||||
folderPath = path;
|
||||
} else if (path.endsWith("/")) {
|
||||
|
Loading…
Reference in New Issue
Block a user