Skip to content

Commit 2bbb599

Browse files
committed
Release 1.0.0
1 parent 2522c89 commit 2bbb599

File tree

5 files changed

+41
-19
lines changed

5 files changed

+41
-19
lines changed

composer.json

Lines changed: 32 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,36 @@
11
{
2-
"name": "encomage/module-emailblocker",
3-
"description": "Implement logic for filter email",
4-
"type": "magento2-module",
5-
"version": "1.0.0",
6-
"license": [
7-
"OSL-3.0",
8-
"AFL-3.0"
9-
],
10-
"autoload": {
11-
"files": [
12-
"registration.php"
2+
"name": "encomage/module-emailblocker",
3+
"description": "Implement logic for filter email",
4+
"type": "magento2-module",
5+
"version": "1.0.0",
6+
"authors": [
7+
{
8+
"name": "Encomage",
9+
"email": "[email protected]",
10+
"homepage": "https://www.encomage.com",
11+
"role": "Technical Support"
12+
}
1313
],
14-
"psr-4": {
15-
"Encomage\\Emailblocker\\": ""
14+
"keywords": [
15+
"magento 2",
16+
"email blocker",
17+
"send email block",
18+
"magento 2 email blocker",
19+
"extension"
20+
],
21+
"license": [
22+
"OSL-3.0",
23+
"AFL-3.0"
24+
],
25+
"autoload": {
26+
"files": [
27+
"registration.php"
28+
],
29+
"psr-4": {
30+
"Encomage\\Emailblocker\\": ""
31+
}
32+
},
33+
"require": {
34+
"encomage/module-core": "*"
1635
}
17-
}
1836
}

etc/adminhtml/system.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
44
<system>
5-
<tab id="encomage" translate="label" sortOrder="100">
6-
<label>Encomage</label>
7-
</tab>
85
<section id="encomage_emailblocker" translate="label" type="text" sortOrder="10" showInDefault="1" showInWebsite="0"
96
showInStore="0">
107
<label>Email Blocker</label>

etc/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<default>
44
<encomage_emailblocker>
55
<general>
6-
<exeptional_domains>encomage.com,madebyencomage.com</exeptional_domains>
6+
<exeptional_domains>encomage.com</exeptional_domains>
77
</general>
88
</encomage_emailblocker>
99
</default>

etc/module.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<?xml version="1.0"?>
22
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
3-
<module name="Encomage_Emailblocker" setup_version="1.0.0"/>
3+
<module name="Encomage_Emailblocker" setup_version="1.0.0">
4+
<sequence>
5+
<module name="Encomage_Core"/>
6+
</sequence>
7+
</module>
48
</config>

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22

33
Emails will be sent only to specified email addresses or domains,
44
all other emails will be blocked
5+
6+
7+
Installation: **composer require encomage/module-emailblocker**

0 commit comments

Comments
 (0)