Bring in new dkim code
[citadel.git] / webcit / ical_dezonify.c
index ecd04d886f2d78958fd073e579d4336206318ac1..b0342beeeaf97c1017c94efa53aa103eda3ae675 100644 (file)
@@ -6,14 +6,15 @@
 // Copyright (c) 2002-2024 by the citadel.org team (Art Cancro et al)
 // This program is open source software.  Use, duplication, or disclosure is subject to the GNU General Public License v3.
 
+// NOTE: this file is symlinked between different generations of WebCit.  When we retire WebCit-classic, copy the file over.
+
 #include "webcit.h"
-#include "webserver.h"
+
 
 // Figure out which time zone needs to be used for timestamps that are not UTC and do not have a time zone specified.
 icaltimezone *get_default_icaltimezone(void) {
 
         icaltimezone *zone = NULL;
-       const char *default_zone_name = ChrPtr(WC->serv_info->serv_default_cal_zone);           // mmmmmm ... calzone
 
         if (!zone) {
                 zone = icaltimezone_get_builtin_timezone(default_zone_name);