You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@james.apache.org by rc...@apache.org on 2021/08/05 07:14:43 UTC

[james-project] branch master updated (0d0ceb0 -> 3bb8b0b)

This is an automated email from the ASF dual-hosted git repository.

rcordier pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git.


    from 0d0ceb0  JAMES-3516 CassandraMessageMetadata should be built from proper ThreadId not from naive ThreadId
     add 5d27497  JAMES-2435 Add short READMEs for examples
     add 2f4da55  [FIX] Javadoc in SMTP hooks references bad command names
     add f6cbd6c  JAMES-2435 Exemple for SMTP hooks
     add 55ea0b9  JAMES-2435 Website `how to` for SMTP hooks
     add 4a9f523  JAMES-2435 Example: creating custom SMTP commands
     add d9d7c46  JAMES-2435 Website how to: creating custom SMTP commands
     add cf788eb  JAMES-2435 Example: creating custom WebAdmin routes
     add 7ec62c8  JAMES-2435 WebSite how to: creating custom WebAdmin routes
     add 2479db0  JAMES-2435 Example: Custom James server assembly
     add f71a8f7  JAMES-2435 Website how to: Custom James server assembly
     add 3bb8b0b  JAMES-2435 Examples: add a comprehensive README.md

No new revisions were added by this update.

Summary of changes:
 examples/README.md                                 |  61 +++++++
 examples/custom-james-assembly/README.md           | 154 +++++++++++++++++
 examples/custom-james-assembly/pom.xml             |  98 +++++++++++
 .../sample-configuration/imapserver.xml            |  44 +++++
 .../sample-configuration/logback.xml               |   0
 .../sample-configuration/mailetcontainer.xml       | 153 +++++++++++++++++
 .../sample-configuration/mailrepositorystore.xml   |   0
 .../sample-configuration/smtpserver.xml            |  51 ++++++
 .../james/examples/CustomJamesServerMain.java      |  74 ++++++++
 examples/custom-listeners/README.md                |   5 +
 examples/custom-mailets/README.md                  |   6 +
 examples/custom-smtp-command/README.md             | 151 ++++++++++++++++
 examples/custom-smtp-command/pom.xml               |  53 ++++++
 .../apache/james/examples/MyCmdHandlerLoader.java  | 101 +++++++++++
 .../apache/james/examples/MyNoopCmdHandler.java    |  46 +++--
 .../src/main/resources/smtpserver.xml              |  50 ++++++
 examples/custom-smtp-hooks/README.md               | 141 +++++++++++++++
 examples/custom-smtp-hooks/pom.xml                 |  53 ++++++
 .../org/apache/james/examples/LoggingRcptHook.java |  28 ++-
 .../src/main/resources/smtpserver.xml              | 110 ++++++++++++
 examples/custom-webadmin-route/README.md           |  79 +++++++++
 examples/custom-webadmin-route/pom.xml             |  53 ++++++
 .../java/org/apache/james/examples/RouteA.java     |  27 ++-
 .../src/main/resources/webadmin.properties         |  25 +++
 examples/pom.xml                                   |  15 +-
 .../protocols/smtp/hook/MailParametersHook.java    |   2 +-
 .../apache/james/protocols/smtp/hook/QuitHook.java |   2 +-
 .../apache/james/protocols/smtp/hook/RcptHook.java |   2 +-
 src/homepage/howTo/custom-james-assembly.html      | 190 +++++++++++++++++++++
 src/homepage/howTo/custom-smtp-commands.html       | 184 ++++++++++++++++++++
 src/homepage/howTo/custom-smtp-hooks.html          | 184 ++++++++++++++++++++
 src/homepage/howTo/custom-webadmin-routes.html     | 114 +++++++++++++
 src/homepage/howTo/index.html                      |  31 +++-
 33 files changed, 2231 insertions(+), 56 deletions(-)
 create mode 100644 examples/README.md
 create mode 100644 examples/custom-james-assembly/README.md
 create mode 100644 examples/custom-james-assembly/pom.xml
 create mode 100644 examples/custom-james-assembly/sample-configuration/imapserver.xml
 copy {server/apps/memory-app => examples/custom-james-assembly}/sample-configuration/logback.xml (100%)
 create mode 100644 examples/custom-james-assembly/sample-configuration/mailetcontainer.xml
 copy {server/apps/memory-app => examples/custom-james-assembly}/sample-configuration/mailrepositorystore.xml (100%)
 create mode 100644 examples/custom-james-assembly/sample-configuration/smtpserver.xml
 create mode 100644 examples/custom-james-assembly/src/main/java/org/apache/james/examples/CustomJamesServerMain.java
 create mode 100644 examples/custom-listeners/README.md
 create mode 100644 examples/custom-mailets/README.md
 create mode 100644 examples/custom-smtp-command/README.md
 create mode 100644 examples/custom-smtp-command/pom.xml
 create mode 100644 examples/custom-smtp-command/src/main/java/org/apache/james/examples/MyCmdHandlerLoader.java
 copy protocols/smtp/src/main/java/org/apache/james/protocols/smtp/hook/MailParametersHook.java => examples/custom-smtp-command/src/main/java/org/apache/james/examples/MyNoopCmdHandler.java (55%)
 create mode 100644 examples/custom-smtp-command/src/main/resources/smtpserver.xml
 create mode 100644 examples/custom-smtp-hooks/README.md
 create mode 100644 examples/custom-smtp-hooks/pom.xml
 copy protocols/smtp/src/main/java/org/apache/james/protocols/smtp/hook/QuitHook.java => examples/custom-smtp-hooks/src/main/java/org/apache/james/examples/LoggingRcptHook.java (67%)
 create mode 100644 examples/custom-smtp-hooks/src/main/resources/smtpserver.xml
 create mode 100644 examples/custom-webadmin-route/README.md
 create mode 100644 examples/custom-webadmin-route/pom.xml
 copy protocols/smtp/src/main/java/org/apache/james/protocols/smtp/hook/QuitHook.java => examples/custom-webadmin-route/src/main/java/org/apache/james/examples/RouteA.java (75%)
 create mode 100644 examples/custom-webadmin-route/src/main/resources/webadmin.properties
 create mode 100644 src/homepage/howTo/custom-james-assembly.html
 create mode 100644 src/homepage/howTo/custom-smtp-commands.html
 create mode 100644 src/homepage/howTo/custom-smtp-hooks.html
 create mode 100644 src/homepage/howTo/custom-webadmin-routes.html

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@james.apache.org
For additional commands, e-mail: notifications-help@james.apache.org