diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 435d2ca..6a6c7a0 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -26,7 +26,7 @@ -To test the server, use the instructions in the [README](https://github.com/LSFLK/raven/blob/main/test/README.md) in the `test` directory. +To test the server, use the instructions in the [README](https://github.com/OpenGovMail/raven/blob/main/test/README.md) in the `test` directory. --- diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index bac4e08..6045111 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -44,8 +44,8 @@ jobs: target: raven-sasl push: true tags: | - ghcr.io/lsflk/raven-sasl:latest - ghcr.io/lsflk/raven-sasl:${{ steps.version.outputs.VERSION }} + ghcr.io/opengovmail/raven-sasl:latest + ghcr.io/opengovmail/raven-sasl:${{ steps.version.outputs.VERSION }} - name: Build and push raven-lmtp uses: docker/build-push-action@v5 @@ -55,8 +55,8 @@ jobs: target: raven-lmtp push: true tags: | - ghcr.io/lsflk/raven-lmtp:latest - ghcr.io/lsflk/raven-lmtp:${{ steps.version.outputs.VERSION }} + ghcr.io/opengovmail/raven-lmtp:latest + ghcr.io/opengovmail/raven-lmtp:${{ steps.version.outputs.VERSION }} - name: Build and push raven-imap uses: docker/build-push-action@v5 @@ -66,8 +66,8 @@ jobs: target: raven-imap push: true tags: | - ghcr.io/lsflk/raven-imap:latest - ghcr.io/lsflk/raven-imap:${{ steps.version.outputs.VERSION }} + ghcr.io/opengovmail/raven-imap:latest + ghcr.io/opengovmail/raven-imap:${{ steps.version.outputs.VERSION }} - name: Build and push raven-socketmap uses: docker/build-push-action@v5 @@ -77,8 +77,8 @@ jobs: target: raven-socketmap push: true tags: | - ghcr.io/lsflk/raven-socketmap:latest - ghcr.io/lsflk/raven-socketmap:${{ steps.version.outputs.VERSION }} + ghcr.io/opengovmail/raven-socketmap:latest + ghcr.io/opengovmail/raven-socketmap:${{ steps.version.outputs.VERSION }} - name: Build and push raven (combined) uses: docker/build-push-action@v5 @@ -88,5 +88,5 @@ jobs: target: raven push: true tags: | - ghcr.io/lsflk/raven:latest - ghcr.io/lsflk/raven:${{ steps.version.outputs.VERSION }} \ No newline at end of file + ghcr.io/opengovmail/raven:latest + ghcr.io/opengovmail/raven:${{ steps.version.outputs.VERSION }} \ No newline at end of file diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 21757a5..be82c5d 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -25,7 +25,7 @@ This project adheres to a code of conduct that all contributors are expected to ``` 3. **Add the upstream repository**: ```bash - git remote add upstream https://github.com/LSFLK/raven.git + git remote add upstream https://github.com/OpenGovMail/raven.git ``` ## How to Contribute diff --git a/docs/DELIVERY_SERVICE.md b/docs/DELIVERY_SERVICE.md index 3f9d160..217a69d 100644 --- a/docs/DELIVERY_SERVICE.md +++ b/docs/DELIVERY_SERVICE.md @@ -60,7 +60,7 @@ docker run -d --rm \ -v $(pwd)/data:/app/data \ -v $(pwd)/certs:/certs \ -v $(pwd)/delivery.yaml:/app/delivery.yaml \ - ghcr.io/lsflk/raven:latest + ghcr.io/opengovmail/raven:latest ``` See the [example delivery.yaml](../config/delivery.yaml) for reference. diff --git a/docs/README.md b/docs/README.md index 314e24d..6d30d54 100644 --- a/docs/README.md +++ b/docs/README.md @@ -7,9 +7,9 @@ **_A lightweight Mail Delivery Agent written in Go, providing IMAP, LMTP, and SASL support with SQLite-based storage._** [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0) -![CI](https://img.shields.io/github/actions/workflow/status/LSFLK/raven/release.yaml) -![Security Scan](https://img.shields.io/github/actions/workflow/status/LSFLK/raven/linters.yaml?label=security) -![Last Commit](https://img.shields.io/github/last-commit/LSFLK/raven) +![CI](https://img.shields.io/github/actions/workflow/status/OpenGovMail/raven/release.yaml) +![Security Scan](https://img.shields.io/github/actions/workflow/status/OpenGovMail/raven/linters.yaml?label=security) +![Last Commit](https://img.shields.io/github/last-commit/OpenGovMail/raven)

Why Raven? • @@ -62,21 +62,21 @@ All services use a **multi-database SQLite architecture** for efficient data iso ### Option 1: Pull from GitHub Container Registry (Recommended) ```bash -docker pull ghcr.io/lsflk/raven:latest +docker pull ghcr.io/opengovmail/raven:latest docker run -d --rm \ --name raven \ -p 143:143 -p 993:993 -p 24:24 \ -v $(pwd)/config:/etc/raven \ -v $(pwd)/data:/app/data \ -v $(pwd)/certs:/certs \ - ghcr.io/lsflk/raven:latest + ghcr.io/opengovmail/raven:latest ``` ### Option 2: Build from Source 1. Clone the repository: ```bash -git clone https://github.com/LSFLK/raven.git +git clone https://github.com/OpenGovMail/raven.git cd raven ``` @@ -134,9 +134,9 @@ You can see the [example delivery.yaml](../config/delivery.yaml) for reference. ## Contributing -Thank you for wanting to contribute to our project. Please see [CONTRIBUTING.md](https://github.com/LSFLK/raven/blob/main/docs/CONTRIBUTING.md) for more details. +Thank you for wanting to contribute to our project. Please see [CONTRIBUTING.md](https://github.com/OpenGovMail/raven/blob/main/docs/CONTRIBUTING.md) for more details. ## License -Distributed under the Apache 2.0 License. See [LICENSE](https://github.com/LSFLK/raven/blob/main/LICENSE) for more information. +Distributed under the Apache 2.0 License. See [LICENSE](https://github.com/OpenGovMail/raven/blob/main/LICENSE) for more information. diff --git a/docs/SECURITY.md b/docs/SECURITY.md index a1e17d2..0a0a22e 100644 --- a/docs/SECURITY.md +++ b/docs/SECURITY.md @@ -23,4 +23,4 @@ If you discover a security vulnerability in this project, please report it by em We will respond within 48 hours to acknowledge receipt of your report. Once confirmed, we will work on a fix and notify you when the vulnerability is resolved. -For urgent security issues, please use **PGP-encrypted email** with our [PGP public key](https://github.com/LSFLK/raven/blob/main/docs/keys/PGP_PUBLIC_KEY.asc). +For urgent security issues, please use **PGP-encrypted email** with our [PGP public key](https://github.com/OpenGovMail/raven/blob/main/docs/keys/PGP_PUBLIC_KEY.asc). diff --git a/internal/delivery/parser/parser_test.go b/internal/delivery/parser/parser_test.go index 94a7f9f..3a73220 100644 --- a/internal/delivery/parser/parser_test.go +++ b/internal/delivery/parser/parser_test.go @@ -1495,7 +1495,7 @@ Content-Type: text/html; charset="UTF-8"

Hi user,
3D"Screens=

On Tue, 20 Jan 2026 at 12:42, Aravinda H.W.K. <On Tue, 20 Jan 2026 at 12:42, User 1 <user1@example.com> wrote:
<= /div>
Hi user,