Skip to content

Commit e9495dc

Browse files
committed
updating documentation
1 parent 5dd5a1c commit e9495dc

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

src/main/webapp/dist/app.bundle.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/src/app/components/about/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <h2>Getting started</h2>
6363
<p>Once the dependencies are set up, simply copy the above examples and start mailing!</p>
6464
<p class="button-group">
6565
<a class="button" [routerLink]="['/features']" simplePageScroll href="#navigation">Show Examples</a>
66-
<a class="button" href="http://www.javadoc.io/doc/org.codemonkey.simplejavamail/simple-java-mail">API
66+
<a class="button" href="http://www.javadoc.io/doc/org.simplejavamail/simple-java-mail">API
6767
Javadoc</a>
6868
</p>
6969
</div>

src/main/webapp/src/app/components/contact/contact.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ <h2>Get help, request features, post bugs</h2>
1212
href="https://github.com/bbottema/simple-java-mail/issues"><strong>issue tracker</strong></a> are used to discuss feature requests and issues.
1313
</p>
1414

15-
<p>You can also refer to the <a href="http://www.javadoc.io/doc/org.codemonkey.simplejavamail/simple-java-mail">API documentation</a>.</p>
15+
<p>You can also refer to the <a href="http://www.javadoc.io/doc/org.simplejavamail/simple-java-mail">API documentation</a>.</p>
1616

1717
<p>If you need more general help, you'll usually get an answer by posting a question on <a
1818
href="http://stackoverflow.com">StackOverflow</a>. And you can always post an issue in the issue tracker, I get an email as soon as something

src/main/webapp/src/app/components/debugging/debugging.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ <h2>Logging output</h2>
8080
log4j2</a>.
8181
</p>
8282
<p>
83-
There are three parts of Simple Java Mail that may produce logging: "org.codemonkey.simplejavamail", "socks5bridge" and
84-
"org.codemonkey.simplejavamail.internal.socks". The latter two are for the proxy bridge that is used for <a [routerLink]="['/proxy']"
83+
There are three parts of Simple Java Mail that may produce logging: "org.simplejavamail", "socks5bridge" and
84+
"org.simplejavamail.mailer.internal.socks". The latter two are for the proxy bridge that is used for <a [routerLink]="['/proxy']"
8585
simplePageScroll href="#navigation">authenticated proxy connections </a>.
8686
</p>
8787
<p>
@@ -122,7 +122,7 @@ <h3>Example with log4j12</h3>
122122
&lt;/layout&gt;
123123
&lt;/appender&gt;
124124

125-
&lt;logger name=&quot;org.codemonkey.simplejavamail&quot;&gt;
125+
&lt;logger name=&quot;org.simplejavamail&quot;&gt;
126126
&lt;level value=&quot;trace&quot;/&gt;
127127
&lt;appender-ref ref=&quot;console&quot;/&gt;
128128
&lt;/logger
@@ -131,7 +131,7 @@ <h3>Example with log4j12</h3>
131131
&lt;level value=&quot;info&quot;/&gt;
132132
&lt;appender-ref ref=&quot;simpleConsole&quot;/&gt;
133133
&lt;/logger&gt;
134-
&lt;logger name=&quot;org.codemonkey.simplejavamail.internal.socks&quot;&gt;
134+
&lt;logger name=&quot;org.simplejavamail.mailer.internal.socks&quot;&gt;
135135
&lt;level value=&quot;warn&quot;/&gt;
136136
&lt;/logger&gt;
137137

@@ -163,12 +163,12 @@ <h3>Example with log4j2</h3>
163163
&lt;/Console&gt;
164164
&lt;/appenders&gt;
165165
&lt;Loggers&gt;
166-
&lt;Logger name=&quot;org.codemonkey.simplejavamail&quot; level=&quot;trace&quot;/&gt;
166+
&lt;Logger name=&quot;org.simplejavamail&quot; level=&quot;trace&quot;/&gt;
167167
&lt;!-- in case you&#39;re using authenticated proxy --&gt;
168168
&lt;Logger name=&quot;socks5bridge&quot; level=&quot;info&quot; additivity=&quot;false&quot;&gt;
169169
&lt;AppenderRef ref=&quot;simpleConsole&quot; /&gt;
170170
&lt;/Logger&gt;
171-
&lt;Logger name=&quot;org.codemonkey.simplejavamail.internal.socks&quot; level=&quot;warn&quot;/&gt;
171+
&lt;Logger name=&quot;org.simplejavamail.mailer.internal.socks&quot; level=&quot;warn&quot;/&gt;
172172

173173
&lt;Root level=&quot;warn&quot;&gt;
174174
&lt;AppenderRef ref=&quot;console&quot; /&gt;
@@ -204,12 +204,12 @@ <h3>Example with logback</h3>
204204
&lt;/encoder&gt;
205205
&lt;/appender&gt;
206206

207-
&lt;logger name=&quot;org.codemonkey.simplejavamail&quot; level=&quot;TRACE&quot;/&gt;
207+
&lt;logger name=&quot;org.simplejavamail&quot; level=&quot;TRACE&quot;/&gt;
208208
&lt;!-- in case you&#39;re using authenticated proxy --&gt;
209209
&lt;logger name=&quot;socks5bridge&quot; level=&quot;INFO&quot; additivity=&quot;false&quot;&gt;
210210
&lt;appender-ref ref=&quot;simpleConsole&quot; /&gt;
211211
&lt;/logger&gt;
212-
&lt;logger name=&quot;org.codemonkey.simplejavamail.internal.socks&quot; level=&quot;WARN&quot;/&gt;
212+
&lt;logger name=&quot;org.simplejavamail.mailer.internal.socks&quot; level=&quot;WARN&quot;/&gt;
213213

214214
&lt;root level=&quot;WARN&quot;&gt;
215215
&lt;appender-ref ref=&quot;console&quot; /&gt;

src/main/webapp/src/app/components/download/download.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ <h1>Download Simple Java Mail</h1>
99

1010
<p>Simple Java Mail is available in Maven central as dependency and you can also download the jar distribution directly from there.</p>
1111

12-
<maven-dependency-display [groupId]="'org.codemonkey.simplejavamail'" [artifact]="'simple-java-mail'"></maven-dependency-display>
12+
<maven-dependency-display [groupId]="'org.simplejavamail'" [artifact]="'simple-java-mail'"></maven-dependency-display>
1313

14-
<a class="button" href="http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.codemonkey.simplejavamail%22%20AND%20a%3A%22simple-java-mail%22">
14+
<a class="button" href="http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.simplejavamail%22%20AND%20a%3A%22simple-java-mail%22">
1515
Download sources, javadoc, distribution directly from Maven Central</a>
1616
</div>
1717
</section>

src/main/webapp/src/app/components/features/features.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ <h3>Configure once, reuse many times</h3>
115115
</code></pre>
116116
Or as preconfigured Spring bean:
117117
<pre><code>
118-
&lt;bean id=&quot;inhouseMailer&quot; class=&quot;org.codemonkey.simplejavamail.Mailer&quot;&gt;
118+
&lt;bean id=&quot;inhouseMailer&quot; class=&quot;org.simplejavamail.mailer.Mailer&quot;&gt;
119119
&lt;constructor-arg value=&quot;server&quot; /&gt;
120120
&lt;constructor-arg value=&quot;25&quot; /&gt;
121121
&lt;constructor-arg value=&quot;username&quot; /&gt;

0 commit comments

Comments
 (0)