Skip to content

Commit

Permalink
v0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mdecimus committed Aug 9, 2023
1 parent 86c3355 commit 8d9cbde
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 8 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).

## [0.3.4] - 2023-08-09

## Added
- JMAP: Support for setting custom HTTP response headers (#52)

### Changed

### Fixed
- JMAP/IMAP: Successful authentication requests should not count when rate limiting
- IMAP: Case insensitive Inbox selection
- IMAP: Automatically create Inbox for group accounts

## [0.3.3] - 2023-08-02

### Added
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ homepage = "https://stalw.art/jmap"
keywords = ["jmap", "email", "mail", "server"]
categories = ["email"]
license = "AGPL-3.0-only"
version = "0.3.3"
version = "0.3.4"
edition = "2021"
resolver = "2"

Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ COPY main/resources/docker/entrypoint.sh /usr/local/bin/entrypoint.sh

RUN sed -i -e 's/__C__/jmap/g' /usr/local/bin/configure.sh && \
sed -i -e 's/__R__/jmap-server/g' /usr/local/bin/configure.sh && \
sed -i -e 's/__N__/jmap-sqlite/g' /usr/local/bin/configure.sh
sed -i -e 's/__N__/jmap-sqlite/g' /usr/local/bin/configure.sh && \
sed -i -e 's/__B__/stalwart-jmap/g' /usr/local/bin/entrypoint.sh

RUN chmod a+rx /usr/local/bin/*.sh

Expand Down

0 comments on commit 8d9cbde

Please sign in to comment.