@include "json.awk" # Save email addresses BEGIN { json_load("var/mail.txt", mail_enable) } END { json_save("var/mail.txt", mail_enable) } # Email notifications BEGIN { mail_hist = 60 # Send 60 seconds of backlog mail_delay = 60 # Wait 60 seconds after last mention before mailing mail_from = NICK "" mail_err = "If you received this message in error,\n" \ "someone in #rhnoise is being a jerk" for (_user in mail_enable) debug("watching " mail_enable[_user] " for " _user) } function mail_send(addr, subj, body, sendmail, errmsg) { gsub(/[^a-zA-Z0-9_+@.-]/, "", addr) sendmail = "/usr/sbin/sendmail " addr print "To: " addr | sendmail print "From: " mail_from | sendmail print "Subject: " subj | sendmail print "" | sendmail print body | sendmail print mail_err | sendmail close(sendmail) } function mail_prep(user, chan, addr, line, body, sec, si, sn, ss, msg, mi, mn) { addr = mail_enable[user] sn = asorti(mail_log[chan], ss) body = "" for (si = 1; si <= sn; si++) { sec = ss[si] mn = length(mail_log[chan][sec]) for (mi = 0; mi < mn; mi++) { msg = mail_log[chan][sec][mi] if (sec > mail_ready[user][chan] - mail_hist) { if (msg ~ user) line = "* " msg else line = " " msg body = body line "\n" } } } privmsg(chan, "notifying " user " at " addr) mail_send(addr, "Message for " user " in " chan, body) delete mail_ready[user][chan] } function mail_run( user, chan, ready, time) { for (user in mail_ready) for (chan in mail_ready[user]) { ready = mail_ready[user][chan] delay = systime() - ready if (ready && delay > mail_delay) mail_prep(user, chan) } } FROM ~ OWNER && /^e?mail .* .*/ { reply("notifying " $2 " for " $3) mail_enable[$3] = $2 } /^e?mail *[^ ]*$/ { reply("notifying " $2 " for " FROM) mail_enable[FROM] = $2 } /^stfu$/ { reply("well fine then") delete mail_enable[FROM] delete mail_ready[FROM] } DST ~ /^#.*/ { for (_user in mail_enable) if ($0 ~ "\\<"_user"\\>") { mail_ready[_user][DST] = systime() debug("queueing messages to " DST " for " _user) } } FROM in mail_enable { delete mail_ready[FROM] debug("clearing message for " FROM) } DST ~ /^#.*/ { _t = systime() _i = length(mail_log[DST][_t]) if (_i==0) delete mail_log[DST][_t] mail_log[DST][_t][_i] = DST " " strftime("(%H:%M:%S) ") FROM ": " $0 #debug("log["DST"]["_t"]["_i"] = "mail_log[DST][_t][_i]) } // { mail_run() }