스팸메일 알림 기능은 Daum클리너 1.5에서 새롭게 추가된 기능입니다.
스팸메일 알림은,
사용자 PC의 메일전송포트에 스팸발송 목적의 전송명령이 수신되는지를 감시해서,
해당 포트로 메시지가 수신될 경우, 사용자에게 경고 해주는 역할을 합니다.
메일서버로 사용하지 않는 일반 pc의 경우는 메일전송포트를 사용하는 일이 없기 때문에,
해당 포트에 수신되는 정보는 특정 프로그램으로 발송된 스팸메일인지 의심해 볼 필요가 있습니다.
스팸메일 알림을 보게되실 경우,
사용하고 계신 백신 프로그램을 활용하여 pc를 검사해보시길 추천합니다.
스팸메일 알림기능은 클리너의 '실시간' 메뉴의 '악성봇 감염감시 > 스팸메일 발송감시'에서 옵션을 조정하실 수 있습니다.

var flashVersion = parent.swfobject.getFlashPlayerVersion();
if(typeof flashVersion != "undefined" && typeof flashVersion.major != "undefined" && flashVersion.major >= 10 && typeof ExifViewer != "undefined"){
var getTxImages = function () {
var result, txImages, images, i, len, img;
result = [];
images = [];
txImages = document.body.getElementsByTagName("img");
len = txImages.length;
for (i = 0; i < len; i += 1) {
img = txImages[i];
if (/tx\-daum\-image|txc\-image/.test(img.className)) {
images.push(img);
}
}
for(var i = 0, len = images.length; i < len; i++){
img = images[i];
if(img.src == "http://cfile209.uf.daum.net/image/202D65014BB2D8D773297F"){
result.push(img);
images.splice(i, i);
break;
}
}
return result;
};
var txImages = getTxImages();
ExifViewer.load({
serviceName: "blog",
images: txImages,
showAllItem: false,
imageViewer: {
templateValue: {
blogid: encodeURIComponent(BLOGID),
articleurl: encodeURIComponent("http://blog.daum.net/daumcleaner/11")
},
photoList: {
photoListProtocol: "blogphotolistselect",
photoListDataFromUrl: "http://blog.daum.net/_blog/api/PhotoListSelectImageViewer.do?blogid={blogid}&articleurl={articleurl}&imageurl={imageurl}"
},
groupList: {
groupListProtocol: "blogcatelist",
groupListDataFromUrl: "http://blog.daum.net/_blog/api/CategoryList.do?blogid={blogid}"
},
data: {
count: txImages.length,
getViewingUrl: function (index) {
return txImages[index].src;
}
}
}
});
}