* More license declarations
[citadel.git] / citadel / modules / spam / serv_spam.c
1 /*
2  * $Id$
3  *
4  * This module allows Citadel to use SpamAssassin to filter incoming messages
5  * arriving via SMTP.  For more information on SpamAssassin, visit
6  * http://www.spamassassin.org (the SpamAssassin project is not in any way
7  * affiliated with the Citadel project).
8  *
9  * Copyright (c) 1998-2009 by the citadel.org team
10  *
11  *  This program is free software; you can redistribute it and/or modify
12  *  it under the terms of the GNU General Public License as published by
13  *  the Free Software Foundation; either version 3 of the License, or
14  *  (at your option) any later version.
15  *
16  *  This program is distributed in the hope that it will be useful,
17  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *  GNU General Public License for more details.
20  *
21  *  You should have received a copy of the GNU General Public License
22  *  along with this program; if not, write to the Free Software
23  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24  */
25
26 #define SPAMASSASSIN_PORT       "783"
27
28 #include "sysdep.h"
29 #include <stdlib.h>
30 #include <unistd.h>
31 #include <stdio.h>
32 #include <fcntl.h>
33 #include <signal.h>
34 #include <pwd.h>
35 #include <errno.h>
36 #include <sys/types.h>
37
38 #if TIME_WITH_SYS_TIME
39 # include <sys/time.h>
40 # include <time.h>
41 #else
42 # if HAVE_SYS_TIME_H
43 #  include <sys/time.h>
44 # else
45 #  include <time.h>
46 # endif
47 #endif
48
49 #include <sys/wait.h>
50 #include <string.h>
51 #include <limits.h>
52 #include <sys/socket.h>
53 #include <libcitadel.h>
54 #include "citadel.h"
55 #include "server.h"
56 #include "citserver.h"
57 #include "support.h"
58 #include "config.h"
59 #include "control.h"
60 #include "room_ops.h"
61 #include "user_ops.h"
62 #include "policy.h"
63 #include "database.h"
64 #include "msgbase.h"
65 #include "internet_addressing.h"
66 #include "domain.h"
67 #include "clientsocket.h"
68
69
70 #include "ctdl_module.h"
71
72
73
74 /*
75  * Connect to the SpamAssassin server and scan a message.
76  */
77 int spam_assassin(struct CtdlMessage *msg) {
78         int sock = (-1);
79         char sahosts[SIZ];
80         int num_sahosts;
81         char buf[SIZ];
82         int is_spam = 0;
83         int sa;
84         char *msgtext;
85         size_t msglen;
86
87         /* For users who have authenticated to this server we never want to
88          * apply spam filtering, because presumably they're trustworthy.
89          */
90         if (CC->logged_in) return(0);
91
92         /* See if we have any SpamAssassin hosts configured */
93         num_sahosts = get_hosts(sahosts, "spamassassin");
94         if (num_sahosts < 1) return(0);
95
96         /* Try them one by one until we get a working one */
97         for (sa=0; sa<num_sahosts; ++sa) {
98                 extract_token(buf, sahosts, sa, '|', sizeof buf);
99                 CtdlLogPrintf(CTDL_INFO, "Connecting to SpamAssassin at <%s>\n", buf);
100                 sock = sock_connect(buf, SPAMASSASSIN_PORT, "tcp");
101                 if (sock >= 0) CtdlLogPrintf(CTDL_DEBUG, "Connected!\n");
102         }
103
104         if (sock < 0) {
105                 /* If the service isn't running, just pass the mail
106                  * through.  Potentially throwing away mails isn't good.
107                  */
108                 return(0);
109         }
110
111         /* Command */
112         CtdlLogPrintf(CTDL_DEBUG, "Transmitting command\n");
113         sprintf(buf, "CHECK SPAMC/1.2\r\n\r\n");
114         sock_write(sock, buf, strlen(buf));
115
116         /* Message */
117         CC->redirect_buffer = malloc(SIZ);
118         CC->redirect_len = 0;
119         CC->redirect_alloc = SIZ;
120         CtdlOutputPreLoadedMsg(msg, MT_RFC822, HEADERS_ALL, 0, 1, 0);
121         msgtext = CC->redirect_buffer;
122         msglen = CC->redirect_len;
123         CC->redirect_buffer = NULL;
124         CC->redirect_len = 0;
125         CC->redirect_alloc = 0;
126
127         sock_write(sock, msgtext, msglen);
128         free(msgtext);
129
130         /* Close one end of the socket connection; this tells SpamAssassin
131          * that we're done.
132          */
133         sock_shutdown(sock, SHUT_WR);
134         
135         /* Response */
136         CtdlLogPrintf(CTDL_DEBUG, "Awaiting response\n");
137         if (sock_getln(sock, buf, sizeof buf) < 0) {
138                 goto bail;
139         }
140         CtdlLogPrintf(CTDL_DEBUG, "<%s\n", buf);
141         if (strncasecmp(buf, "SPAMD", 5)) {
142                 goto bail;
143         }
144         if (sock_getln(sock, buf, sizeof buf) < 0) {
145                 goto bail;
146         }
147         CtdlLogPrintf(CTDL_DEBUG, "<%s\n", buf);
148         CtdlLogPrintf(CTDL_DEBUG, "c_spam_flag_only setting %d\n", config.c_spam_flag_only);
149         if (config.c_spam_flag_only) {
150                 CtdlLogPrintf(CTDL_DEBUG, "flag spam code used");
151                 int headerlen;
152                 int newmsgsize;
153                 int oldmsgsize;
154
155                 char sastatus[10];
156                 char sascore[10];
157                 char saoutof[10];
158                 int numscore;
159
160                 extract_token(sastatus, buf, 1, ' ', sizeof sastatus);
161                 extract_token(sascore, buf, 3, ' ', sizeof sascore);
162                 extract_token(saoutof, buf, 5, ' ', sizeof saoutof);
163
164                 sprintf(buf,"X-Spam-Level: ");
165                 char *cur = buf + 14;
166                 for (numscore = atoi(sascore); numscore>0; numscore--)
167                         *(cur++) = '*';
168                 *cur = '\0';
169
170                 sprintf(cur,"\r\nX-Spam-Status: %s, score=%s required=%s\r\n", sastatus, sascore, saoutof);
171                 headerlen = strlen(buf);
172                 oldmsgsize = strlen(msg->cm_fields['M']) + 1;
173                 newmsgsize = headerlen + oldmsgsize;
174
175                 msg->cm_fields['M'] = realloc(msg->cm_fields['M'], newmsgsize);
176
177                 memmove(msg->cm_fields['M']+headerlen,msg->cm_fields['M'],oldmsgsize);
178                 memcpy(msg->cm_fields['M'],buf,headerlen);
179
180         } else {
181                 CtdlLogPrintf(CTDL_DEBUG, "reject spam code used");
182                 if (!strncasecmp(buf, "Spam: True", 10)) {
183                         is_spam = 1;
184                 }
185
186                 if (is_spam) {
187                         if (msg->cm_fields['0'] != NULL) {
188                                 free(msg->cm_fields['0']);
189                         }
190                         msg->cm_fields['0'] = strdup("message rejected by spam filter");
191                 }
192         }
193
194 bail:   close(sock);
195         return(is_spam);
196 }
197
198
199
200 CTDL_MODULE_INIT(spam)
201 {
202         if (!threading)
203         {
204                 CtdlRegisterMessageHook(spam_assassin, EVT_SMTPSCAN);
205         }
206         
207         /* return our Subversion id for the Log */
208         return "$Id$";
209 }