Haraka 3.0.3 → 3.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (238) hide show
  1. package/.eslintrc.yaml +5 -9
  2. package/.prettierrc.yml +1 -0
  3. package/CONTRIBUTORS.md +11 -0
  4. package/Changes.md +1365 -1214
  5. package/Plugins.md +117 -105
  6. package/README.md +4 -13
  7. package/bin/haraka +197 -298
  8. package/config/auth_flat_file.ini +1 -0
  9. package/config/dhparams.pem +8 -0
  10. package/config/mail_from.is_resolvable.ini +4 -2
  11. package/config/me +1 -0
  12. package/config/outbound.ini +0 -2
  13. package/config/plugins +36 -35
  14. package/config/smtp.ini +0 -1
  15. package/config/smtp.json +17 -0
  16. package/config/tls_cert.pem +23 -0
  17. package/config/tls_key.pem +28 -0
  18. package/connection.js +46 -73
  19. package/contrib/bsd-rc.d/haraka +3 -1
  20. package/contrib/plugin2npm.sh +6 -36
  21. package/docs/CoreConfig.md +2 -2
  22. package/docs/Logging.md +7 -21
  23. package/docs/Outbound.md +104 -201
  24. package/docs/Plugins.md +2 -2
  25. package/docs/Transaction.md +59 -82
  26. package/docs/plugins/queue/smtp_proxy.md +5 -10
  27. package/docs/plugins/tls.md +29 -9
  28. package/endpoint.js +16 -13
  29. package/haraka.js +10 -14
  30. package/host_pool.js +5 -5
  31. package/line_socket.js +3 -4
  32. package/logger.js +44 -28
  33. package/outbound/client_pool.js +27 -23
  34. package/outbound/config.js +4 -6
  35. package/outbound/fsync_writestream.js +1 -1
  36. package/outbound/hmail.js +178 -218
  37. package/outbound/index.js +86 -99
  38. package/outbound/qfile.js +1 -1
  39. package/outbound/queue.js +51 -44
  40. package/outbound/timer_queue.js +3 -2
  41. package/outbound/tls.js +19 -7
  42. package/package.json +59 -48
  43. package/plugins/.eslintrc.yaml +0 -6
  44. package/plugins/auth/auth_base.js +4 -2
  45. package/plugins/auth/auth_proxy.js +14 -12
  46. package/plugins/auth/auth_vpopmaild.js +1 -1
  47. package/plugins/block_me.js +1 -1
  48. package/plugins/data.signatures.js +2 -4
  49. package/plugins/early_talker.js +2 -1
  50. package/plugins/mail_from.is_resolvable.js +65 -135
  51. package/plugins/queue/deliver.js +4 -5
  52. package/plugins/queue/lmtp.js +11 -14
  53. package/plugins/queue/qmail-queue.js +2 -2
  54. package/plugins/queue/quarantine.js +2 -2
  55. package/plugins/queue/rabbitmq.js +16 -17
  56. package/plugins/queue/smtp_forward.js +3 -3
  57. package/plugins/queue/smtp_proxy.js +10 -1
  58. package/plugins/queue/test.js +2 -2
  59. package/plugins/rcpt_to.host_list_base.js +5 -5
  60. package/plugins/rcpt_to.in_host_list.js +2 -2
  61. package/plugins/relay.js +6 -7
  62. package/plugins/reseed_rng.js +1 -1
  63. package/plugins/status.js +37 -33
  64. package/plugins/tls.js +2 -2
  65. package/plugins/xclient.js +3 -2
  66. package/plugins.js +50 -54
  67. package/run_tests +3 -30
  68. package/server.js +190 -190
  69. package/smtp_client.js +30 -23
  70. package/{tests → test}/config/plugins +0 -2
  71. package/{tests → test}/config/smtp.ini +1 -1
  72. package/test/config/tls/example.com/_.example.com.key +28 -0
  73. package/test/config/tls/example.com/example.com.crt +25 -0
  74. package/test/connection.js +302 -0
  75. package/test/endpoint.js +94 -0
  76. package/{tests → test}/fixtures/line_socket.js +1 -1
  77. package/{tests → test}/fixtures/util_hmailitem.js +19 -25
  78. package/{tests → test}/host_pool.js +42 -57
  79. package/test/logger.js +258 -0
  80. package/test/outbound/hmail.js +141 -0
  81. package/test/outbound/index.js +220 -0
  82. package/test/outbound/qfile.js +126 -0
  83. package/test/outbound_bounce_net_errors.js +142 -0
  84. package/{tests → test}/outbound_bounce_rfc3464.js +110 -122
  85. package/test/plugins/auth/auth_base.js +484 -0
  86. package/test/plugins/auth/auth_vpopmaild.js +83 -0
  87. package/test/plugins/early_talker.js +104 -0
  88. package/test/plugins/mail_from.is_resolvable.js +35 -0
  89. package/test/plugins/queue/smtp_forward.js +206 -0
  90. package/test/plugins/rcpt_to.host_list_base.js +122 -0
  91. package/test/plugins/rcpt_to.in_host_list.js +193 -0
  92. package/test/plugins/relay.js +303 -0
  93. package/test/plugins/status.js +130 -0
  94. package/test/plugins/tls.js +70 -0
  95. package/test/plugins.js +228 -0
  96. package/test/rfc1869.js +73 -0
  97. package/test/server.js +491 -0
  98. package/test/smtp_client.js +299 -0
  99. package/test/tls_socket.js +273 -0
  100. package/test/transaction.js +270 -0
  101. package/tls_socket.js +202 -252
  102. package/transaction.js +8 -23
  103. package/CONTRIBUTING.md +0 -1
  104. package/bin/dkimverify +0 -40
  105. package/config/access.domains +0 -13
  106. package/config/attachment.ctype.regex +0 -2
  107. package/config/attachment.filename.regex +0 -1
  108. package/config/avg.ini +0 -5
  109. package/config/bounce.ini +0 -15
  110. package/config/data.headers.ini +0 -61
  111. package/config/dkim/dkim_key_gen.sh +0 -78
  112. package/config/dkim_sign.ini +0 -4
  113. package/config/dkim_verify.ini +0 -7
  114. package/config/dnsbl.ini +0 -23
  115. package/config/greylist.ini +0 -43
  116. package/config/helo.checks.ini +0 -52
  117. package/config/messagesniffer.ini +0 -18
  118. package/config/spamassassin.ini +0 -56
  119. package/dkim.js +0 -614
  120. package/docs/plugins/avg.md +0 -35
  121. package/docs/plugins/bounce.md +0 -69
  122. package/docs/plugins/clamd.md +0 -147
  123. package/docs/plugins/esets.md +0 -8
  124. package/docs/plugins/greylist.md +0 -90
  125. package/docs/plugins/helo.checks.md +0 -135
  126. package/docs/plugins/messagesniffer.md +0 -163
  127. package/docs/plugins/spamassassin.md +0 -180
  128. package/outbound/mx_lookup.js +0 -70
  129. package/plugins/auth/auth_ldap.js +0 -3
  130. package/plugins/avg.js +0 -162
  131. package/plugins/backscatterer.js +0 -25
  132. package/plugins/bounce.js +0 -381
  133. package/plugins/clamd.js +0 -382
  134. package/plugins/data.uribl.js +0 -4
  135. package/plugins/dkim_sign.js +0 -395
  136. package/plugins/dkim_verify.js +0 -62
  137. package/plugins/dns_list_base.js +0 -221
  138. package/plugins/dnsbl.js +0 -146
  139. package/plugins/dnswl.js +0 -58
  140. package/plugins/esets.js +0 -71
  141. package/plugins/graph.js +0 -5
  142. package/plugins/greylist.js +0 -645
  143. package/plugins/helo.checks.js +0 -533
  144. package/plugins/messagesniffer.js +0 -381
  145. package/plugins/rcpt_to.ldap.js +0 -3
  146. package/plugins/rcpt_to.max_count.js +0 -24
  147. package/plugins/spamassassin.js +0 -384
  148. package/tests/config/dkim/example.com/dns +0 -29
  149. package/tests/config/dkim/example.com/private +0 -6
  150. package/tests/config/dkim/example.com/public +0 -4
  151. package/tests/config/dkim/example.com/selector +0 -1
  152. package/tests/config/dkim.private.key +0 -6
  153. package/tests/config/dkim_sign.ini +0 -4
  154. package/tests/config/helo.checks.ini +0 -52
  155. package/tests/connection.js +0 -327
  156. package/tests/endpoint.js +0 -128
  157. package/tests/fixtures/vm_harness.js +0 -59
  158. package/tests/logger.js +0 -327
  159. package/tests/outbound/hmail.js +0 -112
  160. package/tests/outbound/index.js +0 -324
  161. package/tests/outbound/qfile.js +0 -67
  162. package/tests/outbound_bounce_net_errors.js +0 -173
  163. package/tests/plugins/auth/auth_base.js +0 -463
  164. package/tests/plugins/auth/auth_vpopmaild.js +0 -91
  165. package/tests/plugins/bounce.js +0 -307
  166. package/tests/plugins/clamd.js +0 -224
  167. package/tests/plugins/deprecated/relay_acl.js +0 -140
  168. package/tests/plugins/deprecated/relay_all.js +0 -59
  169. package/tests/plugins/dkim_sign.js +0 -315
  170. package/tests/plugins/dkim_signer.js +0 -108
  171. package/tests/plugins/dns_list_base.js +0 -259
  172. package/tests/plugins/dnsbl.js +0 -101
  173. package/tests/plugins/early_talker.js +0 -115
  174. package/tests/plugins/greylist.js +0 -58
  175. package/tests/plugins/helo.checks.js +0 -525
  176. package/tests/plugins/mail_from.is_resolvable.js +0 -116
  177. package/tests/plugins/queue/smtp_forward.js +0 -221
  178. package/tests/plugins/rcpt_to.host_list_base.js +0 -132
  179. package/tests/plugins/rcpt_to.in_host_list.js +0 -218
  180. package/tests/plugins/relay.js +0 -339
  181. package/tests/plugins/spamassassin.js +0 -171
  182. package/tests/plugins/status.js +0 -138
  183. package/tests/plugins/tls.js +0 -84
  184. package/tests/plugins.js +0 -247
  185. package/tests/rfc1869.js +0 -61
  186. package/tests/server.js +0 -510
  187. package/tests/smtp_client/auth.js +0 -105
  188. package/tests/smtp_client/basic.js +0 -101
  189. package/tests/smtp_client.js +0 -80
  190. package/tests/tls_socket.js +0 -333
  191. package/tests/transaction.js +0 -284
  192. /package/docs/{plugins → deprecated}/dkim_sign.md +0 -0
  193. /package/docs/{plugins → deprecated}/dkim_verify.md +0 -0
  194. /package/docs/{plugins → deprecated}/dnsbl.md +0 -0
  195. /package/docs/{plugins → deprecated}/dnswl.md +0 -0
  196. /package/{tests → test}/.eslintrc.yaml +0 -0
  197. /package/{tests → test}/config/auth_flat_file.ini +0 -0
  198. /package/{tests → test}/config/dhparams.pem +0 -0
  199. /package/{tests → test}/config/host_list +0 -0
  200. /package/{tests → test}/config/outbound_tls_cert.pem +0 -0
  201. /package/{tests → test}/config/outbound_tls_key.pem +0 -0
  202. /package/{tests → test}/config/smtp_forward.ini +0 -0
  203. /package/{tests → test}/config/tls/ec.pem +0 -0
  204. /package/{tests → test}/config/tls/haraka.local.pem +0 -0
  205. /package/{tests → test}/config/tls/mismatched.pem +0 -0
  206. /package/{tests → test}/config/tls.ini +0 -0
  207. /package/{tests → test}/config/tls_cert.pem +0 -0
  208. /package/{tests → test}/config/tls_key.pem +0 -0
  209. /package/{tests → test}/fixtures/todo_qfile.txt +0 -0
  210. /package/{tests → test}/installation/config/test-plugin-flat +0 -0
  211. /package/{tests → test}/installation/config/test-plugin.ini +0 -0
  212. /package/{tests → test}/installation/config/tls.ini +0 -0
  213. /package/{tests → test}/installation/node_modules/load_first/index.js +0 -0
  214. /package/{tests → test}/installation/node_modules/load_first/package.json +0 -0
  215. /package/{tests → test}/installation/node_modules/test-plugin/config/test-plugin-flat +0 -0
  216. /package/{tests → test}/installation/node_modules/test-plugin/config/test-plugin.ini +0 -0
  217. /package/{tests → test}/installation/node_modules/test-plugin/package.json +0 -0
  218. /package/{tests → test}/installation/node_modules/test-plugin/test-plugin.js +0 -0
  219. /package/{tests → test}/installation/plugins/base_plugin.js +0 -0
  220. /package/{tests → test}/installation/plugins/folder_plugin/index.js +0 -0
  221. /package/{tests → test}/installation/plugins/folder_plugin/package.json +0 -0
  222. /package/{tests → test}/installation/plugins/inherits.js +0 -0
  223. /package/{tests → test}/installation/plugins/load_first.js +0 -0
  224. /package/{tests → test}/installation/plugins/plugin.js +0 -0
  225. /package/{tests → test}/installation/plugins/tls.js +0 -0
  226. /package/{tests → test}/loud/config/dhparams.pem +0 -0
  227. /package/{tests → test}/loud/config/tls/goobered.pem +0 -0
  228. /package/{tests → test}/loud/config/tls.ini +0 -0
  229. /package/{tests → test}/mail_specimen/base64-root-part.txt +0 -0
  230. /package/{tests → test}/mail_specimen/varied-fold-lengths-preserve-data.txt +0 -0
  231. /package/{tests → test}/queue/1507509981169_1507509981169_0_61403_e0Y0Ym_1_fixed +0 -0
  232. /package/{tests → test}/queue/1507509981169_1507509981169_0_61403_e0Y0Ym_1_haraka +0 -0
  233. /package/{tests → test}/queue/1508269674999_1508269674999_0_34002_socVUF_1_haraka +0 -0
  234. /package/{tests → test}/queue/1508455115683_1508455115683_0_90253_9Q4o4V_1_haraka +0 -0
  235. /package/{tests → test}/queue/multibyte +0 -0
  236. /package/{tests → test}/queue/plain +0 -0
  237. /package/{tests → test}/queue/zero-length +0 -0
  238. /package/{tests → test}/test-queue/delete-me +0 -0
@@ -1,259 +0,0 @@
1
- 'use strict';
2
-
3
- const fixtures = require('haraka-test-fixtures');
4
-
5
- const _set_up = function (done) {
6
-
7
- this.plugin = new fixtures.plugin('dns_list_base');
8
-
9
- done();
10
- }
11
-
12
- exports.disable_zone = {
13
- setUp : _set_up,
14
- 'empty request' (test) {
15
- test.expect(1);
16
- const res = this.plugin.disable_zone();
17
- test.equal(false, res);
18
- test.done();
19
- },
20
- 'testbl1, no zones' (test) {
21
- test.expect(1);
22
- const res = this.plugin.disable_zone('testbl1', 'test result');
23
- test.equal(false, res);
24
- test.done();
25
- },
26
- 'testbl1, zones miss' (test) {
27
- test.expect(2);
28
- this.plugin.disable_allowed=true;
29
- this.plugin.zones = [ 'testbl2' ];
30
- const res = this.plugin.disable_zone('testbl1', 'test result');
31
- test.equal(false, res);
32
- test.equal(1, this.plugin.zones.length);
33
- test.done();
34
- },
35
- 'testbl1, zones hit' (test) {
36
- test.expect(2);
37
- this.plugin.disable_allowed=true;
38
- this.plugin.zones = [ 'testbl1' ];
39
- const res = this.plugin.disable_zone('testbl1', 'test result');
40
- test.equal(true, res);
41
- test.equal(0, this.plugin.zones.length);
42
- test.done();
43
- },
44
- }
45
-
46
- exports.lookup = {
47
- setUp : _set_up,
48
- 'Spamcop, test IP' (test) {
49
- test.expect(2);
50
- function cb (err, a) {
51
- test.equal(null, err);
52
- test.ok(a);
53
- test.done();
54
- }
55
- this.plugin.lookup('127.0.0.2', 'bl.spamcop.net', cb);
56
- },
57
- 'Spamcop, unlisted IP' (test) {
58
- test.expect(2);
59
- const cb = function (err, a) {
60
- test.equal(null, err);
61
- test.equal(null, a);
62
- test.done();
63
- }.bind(this);
64
- this.plugin.lookup('127.0.0.1', 'bl.spamcop.net', cb);
65
- },
66
- }
67
-
68
- exports.multi = {
69
- setUp : _set_up,
70
- 'Spamcop' (test) {
71
- test.expect(4);
72
- this.plugin.multi('127.0.0.2', 'bl.spamcop.net', (err, zone, a, pending) => {
73
- test.equal(null, err);
74
- if (pending) {
75
- test.ok((Array.isArray(a) && a.length > 0));
76
- test.equal(true, pending);
77
- }
78
- else {
79
- test.done();
80
- }
81
- })
82
- },
83
- 'CBL' (test) {
84
- test.expect(4);
85
- this.plugin.multi('127.0.0.2', 'xbl.spamhaus.org', (err, zone, a, pending) => {
86
- test.equal(null, err);
87
- if (pending) {
88
- test.ok((Array.isArray(a) && a.length > 0));
89
- test.equal(true, pending);
90
- }
91
- else {
92
- test.done();
93
- }
94
- })
95
- },
96
- 'Spamcop + CBL' (test) {
97
- test.expect(12);
98
- const dnsbls = ['bl.spamcop.net','xbl.spamhaus.org'];
99
- this.plugin.multi('127.0.0.2', dnsbls, (err, zone, a, pending) => {
100
- test.equal(null, err);
101
- if (pending) {
102
- test.ok(zone);
103
- test.ok((Array.isArray(a) && a.length > 0));
104
- test.equal(true, pending);
105
- }
106
- else {
107
- test.equal(null, zone);
108
- test.equal(null, a);
109
- test.equal(false, pending);
110
- test.done();
111
- }
112
- })
113
- },
114
- 'Spamcop + CBL + negative result' (test) {
115
- test.expect(12);
116
- const dnsbls = [ 'bl.spamcop.net','xbl.spamhaus.org' ];
117
- this.plugin.multi('127.0.0.1', dnsbls, (err, zone, a, pending) => {
118
- test.equal(null, err);
119
- if (a && a[0] && a[0] === '127.255.255.254') {
120
- test.deepEqual(['127.255.255.254'], a)
121
- console.warn(`ERROR: DNSBLs don't work with PUBLIC DNS!`)
122
- }
123
- else {
124
- test.equal(null, a)
125
- }
126
- if (pending) {
127
- test.equal(true, pending);
128
- test.ok(zone);
129
- }
130
- else {
131
- test.equal(false, pending);
132
- test.equal(null, zone);
133
- test.done();
134
- }
135
- })
136
- },
137
- 'IPv6 addresses supported' (test) {
138
- test.expect(12);
139
- const dnsbls = ['bl.spamcop.net','xbl.spamhaus.org'];
140
- this.plugin.multi('::1', dnsbls, (err, zone, a, pending) => {
141
- if (a && a[0] && a[0] === '127.255.255.254') {
142
- test.deepEqual(['127.255.255.254'], a)
143
- console.warn(`ERROR: DNSBLs don't work with PUBLIC DNS!`)
144
- }
145
- else {
146
- test.equal(null, a);
147
- }
148
- if (pending) {
149
- test.deepEqual(null, err);
150
- test.equal(true, pending);
151
- test.ok(zone);
152
- }
153
- else {
154
- test.equal(null, err);
155
- test.equal(false, pending);
156
- test.equal(null, zone);
157
- test.done();
158
- }
159
- })
160
- }
161
- }
162
-
163
- exports.first = {
164
- setUp : _set_up,
165
- 'positive result' (test) {
166
- test.expect(3);
167
- const dnsbls = [ 'xbl.spamhaus.org', 'bl.spamcop.net' ];
168
- this.plugin.first('127.0.0.2', dnsbls, (err, zone, a) => {
169
- test.equal(null, err);
170
- test.ok(zone);
171
- test.ok((Array.isArray(a) && a.length > 0));
172
- test.done();
173
- })
174
- },
175
- 'negative result' (test) {
176
- test.expect(2);
177
- const dnsbls = [ 'xbl.spamhaus.org', 'bl.spamcop.net' ];
178
- this.plugin.first('127.0.0.1', dnsbls, (err, zone, a) => {
179
- test.equal(null, err);
180
- if (a && a[0] && a[0] === '127.255.255.254') {
181
- test.deepEqual(['127.255.255.254'], a)
182
- console.warn(`ERROR: DNSBLs don't work with PUBLIC DNS!`)
183
- }
184
- else {
185
- test.equal(null, a);
186
- }
187
- test.done();
188
- })
189
- },
190
- 'each_cb' (test) {
191
- test.expect(7);
192
- const dnsbls = [ 'xbl.spamhaus.org', 'bl.spamcop.net' ];
193
- let pending = dnsbls.length;
194
- function cb () {
195
- test.ok(pending);
196
- }
197
- function cb_each (err, zone, a) {
198
- pending--;
199
- test.equal(null, err);
200
- test.ok(zone);
201
- test.ok((Array.isArray(a) && a.length > 0));
202
- if (pending === 0) test.done();
203
- }
204
- this.plugin.first('127.0.0.2', dnsbls, cb, cb_each);
205
- }
206
- }
207
-
208
- function zone_disable_test_func (zones, test, cb) {
209
- this.plugin.disabled_zones = zones;
210
- this.plugin.zones = []
211
-
212
- this.plugin.check_zones(9000);
213
-
214
- const fin_check = () => {
215
- this.plugin.shutdown();
216
- cb();
217
- test.done();
218
- };
219
-
220
- let i = 0;
221
- const again = () => {
222
- i++;
223
- setTimeout(() => {
224
- if (this.plugin.zones.length === zones.length) return fin_check();
225
- if (i > 4) return fin_check();
226
- again();
227
- }, 1000);
228
- };
229
- again();
230
- }
231
-
232
- exports.lookback_is_rejected = {
233
- setUp: _set_up,
234
- 'zones with quirks pass through when lookback_is_rejected=true' (test) {
235
- const zones = [ 'hostkarma.junkemailfilter.com', 'bl.spamcop.net' ];
236
- this.plugin.lookback_is_rejected = true;
237
-
238
- zone_disable_test_func.call(this, zones, test, () => {
239
- if (this.plugin.zones.length === 0) {
240
- // just AppVeyor being annoying
241
- if (!['win32','win64'].includes(process.platform)) {
242
- console.error("Didn't enable all zones back");
243
- }
244
- test.deepEqual(this.plugin.zones.length, 0);
245
- }
246
- else {
247
- test.deepEqual(this.plugin.zones.sort(), zones.sort(), "Didn't enable all zones back");
248
- }
249
- });
250
- },
251
- 'zones with quirks are disabled when lookback_is_rejected=false' (test) {
252
- const zones = [ 'hostkarma.junkemailfilter.com', 'bl.spamcop.net' ];
253
- // this.plugin.lookback_is_rejected = true;
254
-
255
- zone_disable_test_func.call(this, zones, test, () => {
256
- test.deepEqual(this.plugin.zones.sort(), ['bl.spamcop.net'], "Enabled all zones back? This should not have happened");
257
- });
258
- }
259
- }
@@ -1,101 +0,0 @@
1
- 'use strict';
2
-
3
- const path = require('path');
4
- const fixtures = require('haraka-test-fixtures');
5
-
6
- const Connection = fixtures.connection;
7
-
8
- function _set_up (done) {
9
-
10
- this.plugin = new fixtures.plugin('dnsbl');
11
- this.plugin.config.root_path = path.resolve(__dirname, '../../config');
12
-
13
- this.connection = Connection.createConnection();
14
-
15
- done();
16
- }
17
-
18
- exports.load_config = {
19
- setUp : _set_up,
20
- 'none' (test) {
21
- test.expect(1);
22
- test.equal(undefined, this.plugin.cfg);
23
- test.done();
24
- },
25
- 'defaults' (test) {
26
- test.expect(3);
27
- this.plugin.load_config();
28
- test.equal(true, this.plugin.cfg.main.reject);
29
- test.equal(30, this.plugin.cfg.main.periodic_checks);
30
- test.equal('first', this.plugin.cfg.main.search);
31
- test.done();
32
- },
33
- }
34
-
35
- exports.get_uniq_zones = {
36
- setUp : _set_up,
37
- 'none' (test) {
38
- test.expect(1);
39
- test.equal(undefined, this.plugin.zones);
40
- test.done();
41
- },
42
- 'dnsbl.zones' (test) {
43
- test.expect(2);
44
- this.plugin.load_config();
45
- this.plugin.cfg.main.zones = 'dnsbl.test, dnsbl2.test';
46
- this.plugin.get_uniq_zones();
47
- test.notEqual(-1, this.plugin.zones.indexOf('dnsbl.test'));
48
- test.notEqual(-1, this.plugin.zones.indexOf('dnsbl2.test'));
49
-
50
- test.done();
51
- },
52
- }
53
-
54
- exports.should_skip = {
55
- setUp : _set_up,
56
- 'no connection' (test) {
57
- test.expect(1);
58
- test.equal(true, this.plugin.should_skip());
59
- test.done();
60
- },
61
- 'no remote_ip' (test) {
62
- test.expect(1);
63
-
64
- test.equal(true, this.plugin.should_skip(this.connection));
65
- test.done();
66
- },
67
- 'private remote_ip, no zones' (test) {
68
- test.expect(1);
69
- this.connection.remote.ip = '192.168.1.1';
70
- test.equal(true, this.plugin.should_skip(this.connection));
71
- test.done();
72
- },
73
- 'private remote_ip' (test) {
74
- test.expect(1);
75
- this.connection.remote.is_private = true;
76
-
77
- this.plugin.load_config();
78
- this.plugin.cfg.main.zones = 'dnsbl.test, dnsbl2.test';
79
- this.plugin.get_uniq_zones();
80
-
81
- test.equal(true, this.plugin.should_skip(this.connection));
82
- test.done();
83
- },
84
- 'public remote_ip' (test) {
85
- test.expect(1);
86
- this.connection.remote.ip = '208.1.1.1';
87
-
88
- this.plugin.load_config();
89
- this.plugin.cfg.main.zones = 'dnsbl.test, dnsbl2.test';
90
- this.plugin.get_uniq_zones();
91
-
92
- test.equal(false, this.plugin.should_skip(this.connection));
93
- test.done();
94
- },
95
- 'public remote_ip, no zones' (test) {
96
- test.expect(1);
97
- this.connection.remote.ip = '208.1.1.1';
98
- test.equal(true, this.plugin.should_skip(this.connection));
99
- test.done();
100
- },
101
- }
@@ -1,115 +0,0 @@
1
- 'use strict';
2
-
3
- const fixtures = require('haraka-test-fixtures');
4
-
5
- function _set_up (done) {
6
-
7
- this.plugin = new fixtures.plugin('early_talker');
8
- this.plugin.cfg = { main: { reject: true } };
9
-
10
- this.connection = fixtures.connection.createConnection();
11
- done();
12
- }
13
-
14
- function _tear_down (done) { done(); }
15
-
16
- exports.early_talker = {
17
- setUp : _set_up,
18
- tearDown : _tear_down,
19
- 'no config' (test) {
20
- test.expect(2);
21
- const next = function (rc, msg) {
22
- test.equal(undefined, rc);
23
- test.equal(undefined, msg);
24
- test.done();
25
- }.bind(this);
26
- this.plugin.early_talker(next, this.connection);
27
- },
28
- 'relaying' (test) {
29
- test.expect(2);
30
- const next = function (rc, msg) {
31
- test.equal(undefined, rc);
32
- test.equal(undefined, msg);
33
- test.done();
34
- }.bind(this);
35
- this.plugin.pause = 1;
36
- this.connection.relaying = true;
37
- this.plugin.early_talker(next, this.connection);
38
- },
39
- 'is an early talker' (test) {
40
- test.expect(3);
41
- const before = Date.now();
42
- const next = function (rc, msg) {
43
- test.ok(Date.now() >= before + 1000);
44
- test.equal(DENYDISCONNECT, rc);
45
- test.equal('You talk too soon', msg);
46
- test.done();
47
- }.bind(this);
48
- this.plugin.pause = 1000;
49
- this.connection.early_talker = true;
50
- this.plugin.early_talker(next, this.connection);
51
- },
52
- 'is an early talker, reject=false' (test) {
53
- test.expect(4);
54
- const before = Date.now();
55
- const next = function (rc, msg) {
56
- test.ok(Date.now() >= before + 1000);
57
- test.equal(undefined, rc);
58
- test.equal(undefined, msg);
59
- test.ok(this.connection.results.has('early_talker', 'fail', 'early'));
60
- test.done();
61
- }.bind(this);
62
- this.plugin.pause = 1001;
63
- this.plugin.cfg.main.reject = false;
64
- this.connection.early_talker = true;
65
- this.plugin.early_talker(next, this.connection);
66
- },
67
- 'relay whitelisted ip' (test) {
68
- test.expect(3);
69
- const next = function (rc, msg) {
70
- test.equal(undefined, rc);
71
- test.equal(undefined, msg);
72
- test.ok(this.connection.results.has('early_talker', 'skip', 'whitelist'));
73
- test.done();
74
- }.bind(this);
75
- this.plugin.pause = 1000;
76
- this.plugin.whitelist = this.plugin.load_ip_list(['127.0.0.1']);
77
- this.connection.remote.ip = '127.0.0.1';
78
- this.connection.early_talker = true;
79
- this.plugin.early_talker(next, this.connection);
80
- },
81
- 'relay whitelisted subnet' (test) {
82
- test.expect(3);
83
- const next = function (rc, msg) {
84
- test.equal(undefined, rc);
85
- test.equal(undefined, msg);
86
- test.ok(this.connection.results.has('early_talker', 'skip', 'whitelist'));
87
- test.done();
88
- }.bind(this);
89
- this.plugin.pause = 1000;
90
- this.plugin.whitelist = this.plugin.load_ip_list(['127.0.0.0/16']);
91
- this.connection.remote.ip = '127.0.0.88';
92
- this.connection.early_talker = true;
93
- this.plugin.early_talker(next, this.connection);
94
- },
95
- 'relay good senders' (test) {
96
- test.expect(3);
97
- const next = function (rc, msg) {
98
- test.equal(undefined, rc);
99
- test.equal(undefined, msg);
100
- test.ok(this.connection.results.has('early_talker', 'skip', '+karma'));
101
- test.done();
102
- }.bind(this);
103
- this.plugin.pause = 1000;
104
- this.connection.results.add('karma', {good: 10});
105
- this.connection.early_talker = true;
106
- this.plugin.early_talker(next, this.connection);
107
- },
108
- 'test loading ip list' (test) {
109
- const whitelist = this.plugin.load_ip_list(['123.123.123.123', '127.0.0.0/16']);
110
- test.expect(2);
111
- test.equal(whitelist[0][1], 32);
112
- test.equal(whitelist[1][1], 16);
113
- test.done();
114
- },
115
- }
@@ -1,58 +0,0 @@
1
- 'use strict';
2
-
3
- const path = require('path');
4
- const fixtures = require('haraka-test-fixtures');
5
- const ipaddr = require('ipaddr.js');
6
-
7
- const _set_up = function (done) {
8
-
9
- this.plugin = new fixtures.plugin('greylist');
10
- this.plugin.config.root_path = path.resolve(__dirname, '../../config');
11
-
12
- this.plugin.register();
13
- this.plugin.whitelist = {
14
- "mail":{"josef@example.com":true},
15
- "rcpt":{"josef@example.net":true},
16
- "ip":[
17
- ipaddr.parseCIDR('123.123.123.234/32'),
18
- ipaddr.parseCIDR('2a02:8204:d600:8060:7920:4040:20ee:9680/128'),
19
- ipaddr.parseCIDR('123.210.123.234/27'),
20
- ipaddr.parseCIDR('2a02:8204:d600:8060:7920:eeee::/96'),
21
- ]
22
- };
23
- this.plugin.list = {"dyndom":["sgvps.net"]};
24
-
25
- this.connection = fixtures.connection.createConnection();
26
- this.connection.transaction = {
27
- results: new fixtures.results(this.connection),
28
- };
29
-
30
- done();
31
- }
32
-
33
- exports.in_list = {
34
- setUp : _set_up,
35
- 'inlist: mail(1)' (test) {
36
- test.expect(1);
37
- test.ok(this.plugin.addr_in_list('mail', 'josef@example.com'));
38
- test.done();
39
- },
40
- 'inlist: rcpt(1)' (test) {
41
- test.expect(1);
42
- test.ok(this.plugin.addr_in_list('rcpt', 'josef@example.net'));
43
- test.done();
44
- },
45
- 'inlist: dyndom(1)' (test) {
46
- test.expect(1);
47
- test.ok(this.plugin.domain_in_list('dyndom', 'sgvps.net'));
48
- test.done();
49
- },
50
- 'inlist: ip(4)' (test) {
51
- test.expect(4);
52
- test.ok(this.plugin.ip_in_list('123.123.123.234'));
53
- test.ok(this.plugin.ip_in_list('123.210.123.234'));
54
- test.ok(this.plugin.ip_in_list('2a02:8204:d600:8060:7920:4040:20ee:9680'));
55
- test.ok(this.plugin.ip_in_list('2a02:8204:d600:8060:7920:eeee::ff00'));
56
- test.done();
57
- }
58
- }