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.
@@ -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,3 @@
1
+ # List of recipient emails
2
+ recipient1@example.com
3
+ recipient2@example.com
@@ -0,0 +1,5 @@
1
+ <html>
2
+ <body>
3
+ <p>Hello, this is a test message.</p>
4
+ </body>
5
+ </html>
@@ -0,0 +1,3 @@
1
+ # List of sender emails
2
+ sender1@example.com
3
+ sender2@example.com
@@ -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
+ }
@@ -0,0 +1,7 @@
1
+ # List of recipient emails
2
+ recipient1@example.com
3
+ recipient2@example.com
4
+
5
+ # Test email list
6
+ # Add target email addresses here (one per line)
7
+ test@example.com
@@ -0,0 +1,5 @@
1
+ <html>
2
+ <body>
3
+ <p>Hello, this is a test message.</p>
4
+ </body>
5
+ </html>
@@ -0,0 +1,7 @@
1
+ # List of sender emails
2
+ sender1@example.com
3
+ sender2@example.com
4
+
5
+ # Sender email list
6
+ # Add sender email addresses here (one per line)
7
+ sender@example.com