nolimit-x 1.0.0
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/bin/nolimit +3 -0
- package/package.json +18 -0
- package/src/attachment-handler.js +253 -0
- package/src/cli.js +31 -0
- package/src/document-generator.js +275 -0
- package/src/encryption.js +125 -0
- package/src/init.js +79 -0
- package/src/multi-handler.js +184 -0
- package/src/obfuscator.js +350 -0
- package/src/placeholders.js +230 -0
- package/src/processor.js +542 -0
- package/src/qr-generator.js +222 -0
- package/src/sender.js +41 -0
- package/src/utils.js +374 -0
- package/templates/config.json +54 -0
- package/templates/emails.txt +3 -0
- package/templates/messages.html +5 -0
- package/templates/senders.txt +3 -0
- package/test-campaign/config.json +35 -0
- package/test-campaign/emails.txt +3 -0
- package/test-campaign/messages.html +5 -0
- package/test-campaign/senders.txt +3 -0
- package/test-raw-smtp/config.json +56 -0
- package/test-raw-smtp/emails.txt +7 -0
- package/test-raw-smtp/messages.html +5 -0
- package/test-raw-smtp/senders.txt +7 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"smtp": [
|
|
3
|
+
{
|
|
4
|
+
"host": "smtp.example.com",
|
|
5
|
+
"port": 587,
|
|
6
|
+
"secure": false,
|
|
7
|
+
"user": "user@example.com",
|
|
8
|
+
"pass": "password",
|
|
9
|
+
"smtp_from_emails": ""
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"emails_list": { "path": "emails.txt" },
|
|
13
|
+
"senders_list": { "path": "senders.txt" },
|
|
14
|
+
"messages_body": { "path": "messages.html" },
|
|
15
|
+
"attachments": [],
|
|
16
|
+
"configurations": {
|
|
17
|
+
"system": {
|
|
18
|
+
"turbo_mode": false,
|
|
19
|
+
"delay_sending": true,
|
|
20
|
+
"delay_sending_seconds": 3
|
|
21
|
+
},
|
|
22
|
+
"message": {
|
|
23
|
+
"from_name": "Sender Name",
|
|
24
|
+
"from_email": "",
|
|
25
|
+
"mail_subject": "Subject",
|
|
26
|
+
"reply_to": "",
|
|
27
|
+
"mail_priority": "normal",
|
|
28
|
+
"use_attachment": false
|
|
29
|
+
},
|
|
30
|
+
"agent": {
|
|
31
|
+
"is_multi_thread": false,
|
|
32
|
+
"how_many_thread": 1
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"smtp": [
|
|
3
|
+
{
|
|
4
|
+
"host": "smtp.gmail.com",
|
|
5
|
+
"port": 587,
|
|
6
|
+
"secure": false,
|
|
7
|
+
"user": "your-email@gmail.com",
|
|
8
|
+
"pass": "your-app-password"
|
|
9
|
+
}
|
|
10
|
+
],
|
|
11
|
+
"emails_list": {
|
|
12
|
+
"path": "emails.txt"
|
|
13
|
+
},
|
|
14
|
+
"senders_list": {
|
|
15
|
+
"path": "senders.txt"
|
|
16
|
+
},
|
|
17
|
+
"messages_body": {
|
|
18
|
+
"path": "messages.html"
|
|
19
|
+
},
|
|
20
|
+
"configurations": {
|
|
21
|
+
"from_name": "John Doe",
|
|
22
|
+
"from_email": "john.doe@company.com",
|
|
23
|
+
"mail_subject": "Important Update",
|
|
24
|
+
"reply_to": "support@company.com",
|
|
25
|
+
"mail_priority": "3",
|
|
26
|
+
"use_attachment": false,
|
|
27
|
+
"raw_smtp": true,
|
|
28
|
+
"raw_headers": {
|
|
29
|
+
"X-Custom-Header": "Custom Value",
|
|
30
|
+
"X-Mailer": "Outlook Express 6.0",
|
|
31
|
+
"X-Priority": "1",
|
|
32
|
+
"X-MSMail-Priority": "High",
|
|
33
|
+
"Importance": "high",
|
|
34
|
+
"X-Originating-IP": "192.168.1.100",
|
|
35
|
+
"X-Report-Abuse": "abuse@company.com"
|
|
36
|
+
},
|
|
37
|
+
"agent": {
|
|
38
|
+
"is_multi_thread": false,
|
|
39
|
+
"how_many_thread": 1
|
|
40
|
+
},
|
|
41
|
+
"system": {
|
|
42
|
+
"delay_sending": false,
|
|
43
|
+
"delay_sending_seconds": 1
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"attachments": [
|
|
47
|
+
{
|
|
48
|
+
"filename": "document.pdf",
|
|
49
|
+
"path": "attachments/document.pdf",
|
|
50
|
+
"active": false,
|
|
51
|
+
"obfuscate": false,
|
|
52
|
+
"encrypted": false,
|
|
53
|
+
"scripter": false
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
}
|