X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Fxmpp%2Fxmpp_messages.c;h=ca8d439b522c8c6c7ceec88bc11351e04caa7b02;hb=7a9b0685e406cc83597171cc39d008c7e5459ca8;hp=8b8b43f6b8d87706edfed58238c8ccf426660946;hpb=e7c125bafc3bd24fd9cfb18c39b29abd19c7478f;p=citadel.git diff --git a/citadel/modules/xmpp/xmpp_messages.c b/citadel/modules/xmpp/xmpp_messages.c index 8b8b43f6b..ca8d439b5 100644 --- a/citadel/modules/xmpp/xmpp_messages.c +++ b/citadel/modules/xmpp/xmpp_messages.c @@ -5,18 +5,11 @@ * * This program is open source software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3. - * - * * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * - * - * - * - * */ #include "sysdep.h" @@ -28,18 +21,7 @@ #include #include #include - -#if TIME_WITH_SYS_TIME -# include -# include -#else -# if HAVE_SYS_TIME_H -# include -# else -# include -# endif -#endif - +#include #include #include #include @@ -52,7 +34,6 @@ #include "support.h" #include "config.h" #include "internet_addressing.h" -#include "md5.h" #include "ctdl_module.h" #include "serv_xmpp.h" @@ -89,6 +70,7 @@ void xmpp_output_incoming_messages(void) { } } + /* * Client is sending a message. */ @@ -104,14 +86,14 @@ void xmpp_send_message(char *message_to, char *message_body) { for (cptr = ContextList; cptr != NULL; cptr = cptr->next) { if ( (cptr->logged_in) && (cptr->can_receive_im) - && (!strcasecmp(cptr->cs_inet_email, message_to)) + && (!strcasecmp(cptr->cs_principal_id, message_to)) ) { recp = cptr->user.fullname; } } if (recp) { - PerformXmsgHooks(CC->user.fullname, CC->cs_inet_email, recp, message_body); + PerformXmsgHooks(CC->user.fullname, CC->cs_principal_id, recp, message_body); } free(XMPP->message_body);