欢迎光临
我们一直在努力

qmail+vpopmail邮件过滤(练习篇)-网管专栏,邮件服务

建站超值云服务器,限时71元/月

最近正在研究qmail+vpopmail的邮件过滤,找了很多相关的软件,都觉得不好,主要是讨厌他们的依附关系太复杂,有的甚至还要对qmail进行改动,嫌太麻烦。

然后在inter7.com发现了eps,目前是0.5。研究了一下,搞了一个相当暴力的过滤方法出来,有兴趣的就看看吧。

练习的前提是qmail+vpopmail已经装好,而且正常运作。

首先当然是下载eps了,在inter7.com下载。展开源代码包后

make

make install

就可以了。

然后写了这个小程序mime.c

#include <stdio.h>

#include <eps.h>

char *exts[]={

".vbs",

".scr",

".exe",

".com",

null

};

int efilter_check_mime(struct mime_t *m)

{

int i = 0;

int p = 0;

if (!(m->2003104134820.htm))

return 0;

for (i = 0; exts[i]; i++) {

if (m->2003104134820.htm) {

p = strstr(m->2003104134820.htm, exts[i]);

if (p) {

return 1;

}

}

}

return 0;

}

int main(int argc, char *argv[])

{

int ret = 0;

char *l = null;

struct mime_t *m = null;

struct header_t *h = null;

struct eps_t *eps = null;

if (argc < 2)

eps = eps_begin(interface_stdin, null);

else

eps = eps_begin(interface_filename, argv[1]);

if (!eps)

return 1;

/*

examine headers for content/mime information

pass information off to eps internals

*/

for (h = eps_next_header(eps); h; h = eps_next_header(eps)) {

if ((h->name) && (h->data))

eps_header_internal(eps, h);

}

/*

..skip the message body since were not interested in

it.

*/

for (l = eps_next_line(eps, break_stop); l; l = eps_next_line(eps, break_stop));

eps_init_mime(eps);

for (m = eps_next_mime(eps); m; m = eps_next_mime(eps)) {

if (efilter_check_mime(m))

printf("rejected");

}

eps_end(eps);

return 0;

}

功能挺简单的,就是检查电子邮件的附件,但凡发现.vbs .scr .exe .com的附件,都提示rejected。编译,安装。

gcc -g -i/usr/include/eps -l/usr/lib -dversion="1.2" -o mime mime.c -leps

复制到~vpopmail/bin并chown vpopmail.vchkpw mime

然后建立一个filter.sh文件,也是在~vpopmail/bin目录,属主和mime一样了。

#!/bin/sh

isvirus=`/var/vpopmail/bin/mime`

if [ x"${isvirus}" != x"rejected" ]; then

/var/vpopmail/bin/vdelivermail bounce-no-mailbox

fi

最后修该~vpopmail/domains/yourdomain/里面的.qmail-default文件

把原本为

| /var/vpopmail/bin/vdelivermail bounce-no-mailbox

改成

| /var/vpopmail/bin/filter.sh

就可以了。

实现的手段很暴力,凡是附件中含有.vbs .exe .com .scr的都整个邮件drop掉了。没有办法啦,我还没有全面的研究清楚eps的功能,而且它还没有发展完全。不过先玩玩啦。

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » qmail+vpopmail邮件过滤(练习篇)-网管专栏,邮件服务
分享到: 更多 (0)