summaryrefslogtreecommitdiff
path: root/modules/changes/changes.js
diff options
context:
space:
mode:
Diffstat (limited to 'modules/changes/changes.js')
-rw-r--r--modules/changes/changes.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/modules/changes/changes.js b/modules/changes/changes.js
index dbfe55c..0d8fa24 100644
--- a/modules/changes/changes.js
+++ b/modules/changes/changes.js
@@ -222,19 +222,19 @@ function sendMail(tomails,body,cb){
}
var proc;
for(i=0;i<tomails.length;i++){
- proc=child_process.spawn("sendmail",[tomails[i]],{stdio:["pipe",process.stdout,process.stderr]});
+ proc=child_process.spawn("msmtp",["--read-recipients"],{stdio:["pipe",process.stdout,process.stderr]});
proccounter++;
- console.log("sendmail process for <"+tomails[i]+"> started");
+ console.log("msmtp process for <"+tomails[i]+"> started");
proc.stdin.on("error",function(e){
console.log(e);
cb(e);
});
proc.stdin.write("To: "+tomails[i]+"\n"+body,function(proc,mailtarget){
- console.log("sendmail process for <"+mailtarget+"> write completed");
+ console.log("msmtp process for <"+mailtarget+"> write completed");
proc.stdin.end();
}.bind(this,proc,tomails[i]));
proc.on("exit",function(mailtarget,code,signal){
- console.log("sendmail process for <"+mailtarget+"> exited with code "+code);
+ console.log("msmtp process for <"+mailtarget+"> exited with code "+code);
decProcCounter();
}.bind(this,tomails[i]));
//process will linger till it's finished
@@ -242,8 +242,7 @@ function sendMail(tomails,body,cb){
}
function constructMailBody(diffs){
- var body="From: changes <changes_module@tomsmeding.com>\n"+
- "Subject: changes notification mail\n\n"+
+ var body="Subject: changes notification mail\n\n"+
"The changes module recorded some changes in watched webpages.\n"+
"The URLs and their old and new content hashes are shown below.\n\n";
var i;