embulk-output-send_email 0.1.2 → 0.1.3
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0ad269786255162b0dde2853c30d0bd12d6817672b2cc5773b6efc72d536f98
|
4
|
+
data.tar.gz: 38c326b157f949ac5f3659902ea84e24cb8ba1cc36b0e7488b95916d4d3aa8c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc7928125442792ef66f272c85c615df24ba64da2ab8ed9c92d132d2dceac77b51530f662fe67c1de6673a36976cd36e6730fbca2d1ee46b1fa670a38f51e4b2
|
7
|
+
data.tar.gz: 4fb22fc2bbd4bfffd431efdc57e2a89834eb2248dd84ec61bf51b1f16055e823877487594774e0a0475cb58e83b48446bfb0122b8a726af9b5fe40e78a739a2c
|
data/build.gradle
CHANGED
Binary file
|
data/example/config.yml
CHANGED
@@ -26,7 +26,7 @@ out:
|
|
26
26
|
- ankit.kumar@infoobjects.com
|
27
27
|
- abhishek.gupta@infoobjects.com
|
28
28
|
from: abhishek.gupta@infoobjects.com
|
29
|
-
password:
|
29
|
+
password: 1234
|
30
30
|
port: 587
|
31
31
|
username: abhishek.gupta@infoobjects.com
|
32
32
|
host: smtp.gmail.com
|
@@ -35,6 +35,6 @@ out:
|
|
35
35
|
file_type: html
|
36
36
|
protocol: TLSv1.2
|
37
37
|
auth: true
|
38
|
-
|
38
|
+
# smtp_enable: true
|
39
39
|
|
40
40
|
|
@@ -28,7 +28,6 @@ public class SendEmailOutputPlugin
|
|
28
28
|
@Config("to")
|
29
29
|
public List<String> getTO();
|
30
30
|
|
31
|
-
|
32
31
|
@Config("cc")
|
33
32
|
@ConfigDefault("[]")
|
34
33
|
public List<String> getCC();
|
@@ -41,6 +40,7 @@ public class SendEmailOutputPlugin
|
|
41
40
|
public String getPassword();
|
42
41
|
|
43
42
|
@Config("port")
|
43
|
+
@ConfigDefault("\"25\"")
|
44
44
|
public String getPort();
|
45
45
|
|
46
46
|
@Config("subject")
|
@@ -51,6 +51,7 @@ public class SendEmailOutputPlugin
|
|
51
51
|
public boolean getAuth();
|
52
52
|
|
53
53
|
@Config("host")
|
54
|
+
@ConfigDefault("\"smtp.gmail.com\"")
|
54
55
|
public String getHost();
|
55
56
|
|
56
57
|
@Config("protocol")
|
@@ -62,11 +63,11 @@ public class SendEmailOutputPlugin
|
|
62
63
|
public int getRow();
|
63
64
|
|
64
65
|
@Config("username")
|
65
|
-
@ConfigDefault("")
|
66
|
+
@ConfigDefault("\"\"")
|
66
67
|
public String getUserName();
|
67
68
|
|
68
69
|
@Config("smtp_enable")
|
69
|
-
@ConfigDefault("true")
|
70
|
+
@ConfigDefault("\"true\"")
|
70
71
|
public String getSmtpEnable();
|
71
72
|
}
|
72
73
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-output-send_email
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Infoobjects Inc.
|
@@ -53,7 +53,7 @@ files:
|
|
53
53
|
- classpath/activation-1.1.jar
|
54
54
|
- classpath/commons-codec-1.10.jar
|
55
55
|
- classpath/commons-logging-1.2.jar
|
56
|
-
- classpath/embulk-output-send_email-0.1.
|
56
|
+
- classpath/embulk-output-send_email-0.1.3.jar
|
57
57
|
- classpath/google-api-client-1.26.0.jar
|
58
58
|
- classpath/google-api-client-java6-1.26.0.jar
|
59
59
|
- classpath/google-api-services-gmail-v1-rev83-1.23.0.jar
|
Binary file
|