-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix style and remove duplicate properties
- Loading branch information
1 parent
8c36e47
commit 765c6b9
Showing
4 changed files
with
30 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -231,69 +231,16 @@ | |
<description>Size in characters of the maximum text message to be received by websocket. Defaults to 1024000</description> | ||
</property> | ||
|
||
<!-- | ||
<property> | ||
<name>zeppelin.mail.smtp.user</name> | ||
<value>[email protected]</value> | ||
<description>Anonymous user allowed by default</description> | ||
</property> | ||
|
||
<property> | ||
<name>zeppelin.mail.smtp.password</name> | ||
<value>crucero1989</value> | ||
<description>Anonymous user allowed by default</description> | ||
</property> | ||
|
||
<property> | ||
<name>zeppelin.mail.smtp.host</name> | ||
<value>smtp.googlemail.com</value> | ||
<description>Anonymous user allowed by default</description> | ||
</property> | ||
|
||
<property> | ||
<name>zeppelin.mail.smtp.protocol</name> | ||
<value>smtp</value> | ||
<description>Anonymous user allowed by default</description> | ||
</property> | ||
|
||
<property> | ||
<name>zeppelin.mail.smtp.port</name> | ||
<value>465</value> | ||
<description>Anonymous user allowed by default</description> | ||
</property> | ||
|
||
<property> | ||
<name>zeppelin.mail.smtp.starttls.enable</name> | ||
<value>true</value> | ||
<description>Anonymous user allowed by default</description> | ||
</property> | ||
|
||
<property> | ||
<name>zeppelin.mail.smtp.auth</name> | ||
<value>true</value> | ||
<description>Anonymous user allowed by default</description> | ||
</property> | ||
|
||
<property> | ||
<name>zeppelin.mail.smtp.socketFactory.port</name> | ||
<value>465</value> | ||
<description>Anonymous user allowed by default</description> | ||
</property> | ||
|
||
<property> | ||
<name>zeppelin.mail.smtp.socketFactory.class</name> | ||
<value>javax.net.ssl.SSLSocketFactory</value> | ||
<description>Anonymous user allowed by default</description> | ||
</property> | ||
|
||
<property> | ||
<name>zeppelin.mail.smtp.user</name> | ||
<value>[email protected]</value> | ||
<value>email</value> | ||
<description>SMTP user</description> | ||
</property> | ||
<property> | ||
<name>zeppelin.mail.smtp.password</name> | ||
<value>crucero1989</value> | ||
<value>password</value> | ||
<description>Password for SMTP user</description> | ||
</property> | ||
|
@@ -338,6 +285,6 @@ | |
<value>javax.net.ssl.SSLSocketFactory</value> | ||
<description>Specifies the name of a class that implements the javax.net.SocketFactory interface. This class will be used to create SMTP sockets.</description> | ||
</property> | ||
|
||
--> | ||
</configuration> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -513,8 +513,8 @@ public static enum ConfVars { | |
ZEPPELIN_ALLOWED_ORIGINS("zeppelin.server.allowed.origins", "*"), | ||
ZEPPELIN_ANONYMOUS_ALLOWED("zeppelin.anonymous.allowed", true), | ||
ZEPPELIN_WEBSOCKET_MAX_TEXT_MESSAGE_SIZE("zeppelin.websocket.max.text.message.size", "1024000"), | ||
ZEPPELIN_SMTP_USER("zeppelin.mail.smtp.user", "[email protected]"), | ||
ZEPPELIN_SMTP_PASS("zeppelin.mail.smtp.password", "crucero1989"), | ||
ZEPPELIN_SMTP_USER("zeppelin.mail.smtp.user", "email"), | ||
ZEPPELIN_SMTP_PASS("zeppelin.mail.smtp.password", "password"), | ||
ZEPPELIN_SMTP_HOST("zeppelin.mail.smtp.host", "smtp.googlemail.com"), | ||
ZEPPELIN_SMTP_PROTOCOL("zeppelin.mail.smtp.protocol", "smtp"), | ||
ZEPPELIN_SMTP_PORT("zeppelin.mail.smtp.port", "465"), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters