Release version 933 generated by do-release.sh
authorArt Cancro <ajc@citadel.org>
Thu, 9 Sep 2021 14:16:19 +0000 (14:16 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 9 Sep 2021 14:16:19 +0000 (14:16 +0000)
citadel/citadel.h
citadel/internet_addressing.c
libcitadel/lib/libcitadel.h
release_version.txt
webcit/webcit.h

index 6561315b9dfd0f89dec0171f374911f713b77af5..ab7112b6cf2f3e3046ba88f97ac1047e3f8706bd 100644 (file)
@@ -32,7 +32,7 @@ extern "C" {
  */
 #define CITADEL        PACKAGE_STRING
 
-#define REV_LEVEL 932          // This version
+#define REV_LEVEL 933          // This version
 #define REV_MIN                591             // Oldest compatible database
 #define EXPORT_REV_MIN 931             // Oldest compatible export files
 #define LIBCITADEL_MIN 931             // Minimum required version of libcitadel
index 4a73bc016e81df6b4c76c600e5f10500028e79d1..e1fcb1ba1512d6e4e729eda96564c719c0c90286 100644 (file)
@@ -568,13 +568,14 @@ struct recptypes *validate_recipients(char *supplied_recipients, const char *Rem
                        }
                }
 
+               // This loop searches for duplicate recipients in the final list and marks them to be skipped.
                for (int j=0; j<r; ++j) {
-                       if (!strcasecmp(this_recp , (char *)array_get_element_at(recp_array, j) )) {
+                       if (!strcasecmp(this_recp, (char *)array_get_element_at(recp_array, j) )) {
                                mailtype = EA_SKIP;
                        }
                }
-               syslog(LOG_DEBUG, "Recipient #%d of type %d is <%s>", r, mailtype, this_recp);
 
+               syslog(LOG_DEBUG, "Recipient #%d of type %d is <%s>", r, mailtype, this_recp);
                invalid = 0;
                errmsg[0] = 0;
                switch(mailtype) {
index 701f0651f6d2efbb501fba653df5d7b4ad593388..38a309cbf549e1e04e4ec26753df176a58955241 100644 (file)
@@ -26,7 +26,7 @@
 #include <sys/types.h>
 #include <netinet/in.h>
 
-#define LIBCITADEL_VERSION_NUMBER 932
+#define LIBCITADEL_VERSION_NUMBER 933
 
 /*
  * Here's a bunch of stupid magic to make the MIME parser portable.
index e6c657ec0a4931981dbfe4883625c0e483d74657..2abc897ab5966668462496e15e590121593717b6 100644 (file)
@@ -1 +1 @@
-932
+933
index 16de360f997720ffe413c737e5259d4638e2aa69..7f96d63aa1a178284762ce561cac655d03dd048b 100644 (file)
@@ -127,7 +127,7 @@ extern char *ssl_cipher_list;
 #define PORT_NUM               80              /* port number to listen on */
 #define DEVELOPER_ID           0
 #define CLIENT_ID              4
-#define CLIENT_VERSION 932             /* This version of WebCit */
+#define CLIENT_VERSION 933             /* This version of WebCit */
 #define MINIMUM_CIT_VERSION    931             /* Minimum required version of Citadel server */
 #define        LIBCITADEL_MIN          931             /* Minimum required version of libcitadel */
 #define DEFAULT_HOST           "localhost"     /* Default Citadel server */