Skip to content

Instantly share code, notes, and snippets.

View baudehlo's full-sized avatar

Matt Sergeant baudehlo

View GitHub Profile
@baudehlo
baudehlo / gist:4229099
Created December 6, 2012 22:33
Apache James 2.3.2 vs Apache James 3.0.0beta4 vs Haraka 2.0.2 vs Postfix
Apache James 2.3.2, delivering to a local user, default setup
$ time /usr/libexec/postfix/smtp-source -c -l 5000 -t testuser@localhost -s 100 -m 10000 127.0.0.1:25
10000
real 1m5.751s
user 0m0.630s
sys 0m1.945s
#!/usr/bin/perl
# use 'swaks --help' to view documentation for this program
#
# Homepage: http://jetmore.org/john/code/swaks/
# Online Docs: http://jetmore.org/john/code/swaks/latest/doc/ref.txt
# http://jetmore.org/john/code/swaks/faq.html
# Announce List: send mail to updates-swaks@jetmore.net
# Project RSS: http://jetmore.org/john/blog/c/swaks/feed/
# Google+: https://plus.google.com/u/0/110270727761256449657
@baudehlo
baudehlo / gist:3861598
Created October 9, 2012 21:33
Scotia bank test
var page = require('webpage').create();
page.onResourceReceived = function (req) {
if (req.stage !== "end") return;
console.log("Resource: ");
console.log(JSON.stringify(req));
}
page.open('https://www2.scotiaonline.scotiabank.com/online/authentication/authentication.bns',
function () {
console.log("Opened...");
page.render('/tmp/Scotia.png');
Subject: Thanks for signing up!
Date: {{date}}
To: {{recipient}}
From: {{sender}}
MIME-Version: 1.0
Content-Type: text/plain
Thanks for signing up for the Foobar service!
Your email address is: {{recipient}}
var table = "00000000 77073096 EE0E612C 990951BA 076DC419 706AF48F E963A535 9E6495A3 0EDB8832 79DCB8A4 E0D5E91E 97D2D988 09B64C2B 7EB17CBD E7B82D07 90BF1D91 1DB71064 6AB020F2 F3B97148 84BE41DE 1ADAD47D 6DDDE4EB F4D4B551 83D385C7 136C9856 646BA8C0 FD62F97A 8A65C9EC 14015C4F 63066CD9 FA0F3D63 8D080DF5 3B6E20C8 4C69105E D56041E4 A2677172 3C03E4D1 4B04D447 D20D85FD A50AB56B 35B5A8FA 42B2986C DBBBC9D6 ACBCF940 32D86CE3 45DF5C75 DCD60DCF ABD13D59 26D930AC 51DE003A C8D75180 BFD06116 21B4F4B5 56B3C423 CFBA9599 B8BDA50F 2802B89E 5F058808 C60CD9B2 B10BE924 2F6F7C87 58684C11 C1611DAB B6662D3D 76DC4190 01DB7106 98D220BC EFD5102A 71B18589 06B6B51F 9FBFE4A5 E8B8D433 7807C9A2 0F00F934 9609A88E E10E9818 7F6A0DBB 086D3D2D 91646C97 E6635C01 6B6B51F4 1C6C6162 856530D8 F262004E 6C0695ED 1B01A57B 8208F4C1 F50FC457 65B0D9C6 12B7E950 8BBEB8EA FCB9887C 62DD1DDF 15DA2D49 8CD37CF3 FBD44C65 4DB26158 3AB551CE A3BC0074 D4BB30E2 4ADFA541 3DD895D7 A4D1C46D D3D6F4FB 4369E96A 346ED9FC AD678846 DA60B8D0 44042D73 33031DE5 AA0A4C5F DD0D7CC9 500
"use strict";
var cluster = require("cluster");
if (process.env.NODE_ENV == 'production' && cluster.isMaster) {
// this is the master control process
console.log("Control process running: PID=" + process.pid);
// fork as many times as we have CPUs
var numCPUs = process.env.NPROCS || require("os").cpus().length;
var mailgun_smtp = {
auth_user: 'xxx',
auth_pass: 'yyy',
priority: 0,
exchange: 'smtp.mailgun.org',
};
exports.hook_get_mx = function (next, hmail, domain) {
// All relaying goes via mailgun
return next(OK, mailgun_smtp);
matt@Calhorn ~/Development/Haraka$ node -v
v6.2.1
matt@Calhorn ~/Development/Haraka$ node
> var RE2 = require('re2');
(node) v8::ObjectTemplate::Set() with non-primitive values is deprecated
(node) and will stop working in the next major release.
==== JS stack trace =========================================
Security context: 0x24ee8ac9e59 <JS Object>#0#
diff --git a/plugins/dkim_verify.js b/plugins/dkim_verify.js
index 9da9b9c..5769bed 100644
--- a/plugins/dkim_verify.js
+++ b/plugins/dkim_verify.js
@@ -19,7 +19,7 @@ exports.hook_data_post = function(next, connection) {
if (err) {
connection.logerror(self, 'error=' + err);
}
- if (!results) return next();
+ if (!results) return;