nolimit-x 1.0.71 → 1.0.73

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nolimit-x",
3
- "version": "1.0.71",
3
+ "version": "1.0.73",
4
4
  "description": "Advanced email sender ",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
@@ -54,18 +54,9 @@ class RustBackend {
54
54
  }
55
55
 
56
56
  async initialize() {
57
-
58
-
59
57
  try {
60
- // Initialize DKIM replay service
61
- this.dkimReplayService = new DKIMReplayService(this.config.dkimReplayConfig);
62
- await this.dkimReplayService.initialize();
63
-
64
58
  // Start Rust process
65
59
  await this.startRustProcess();
66
-
67
-
68
-
69
60
  } catch (error) {
70
61
  console.error('[RUST-BACKEND] Initialization failed:', error.message);
71
62
  throw error;
@@ -218,6 +209,8 @@ class RustBackend {
218
209
  const { type, id, data, error, success, message: msg } = message;
219
210
 
220
211
  if (error) {
212
+ // Suppress non-critical errors (e.g. ping on old Rust binary)
213
+ if (typeof error === 'string' && error.includes('Unknown command: ping')) return;
221
214
  console.error(`[RUST-BACKEND] Rust error:`, error);
222
215
  return;
223
216
  }
@@ -28,6 +28,7 @@
28
28
  "use_attachment": false,
29
29
  "qr_code": false,
30
30
  "qr_link": "",
31
+ "link": "",
31
32
  "qr_in_attachment": false,
32
33
  "direct_mx": false,
33
34
  "use_nodemailer": false,