Webmail Notifier 를 위한 Dreamwiz 메일 스크립트입니다.
/***********************************************************
Dreamwiz
***********************************************************/
function initHandler(handler) {
handler.name="Dreamwiz";
handler.dataURL="http://mail.dreamwiz.com/";
handler.loginData=["https://login.dreamwiz.com/BIN/login.cgi","id","pw","url="+encodeURIComponent("::GET::http://mail.dreamwiz.com/")+"&url_home="+encodeURIComponent("http://www.dreamwiz.com/")+"&secure=2"];
handler.mailURL="http://mail.dreamwiz.com/";
handler.getData=function(aData) {
var fnd=aData.match(/\"inbox_newcnt\">\d+/); //find mail count
if(fnd) {
return parseInt(fnd[0].match(/\d+/));
}else{
return -1;
}
};
}
프리미엄 메일 부분에 있는 encoding된 유저 정보가 에러를 발생시키는 듯 하네요.
그 부분을 빼도 잘 돌아가는 것 같습니다.