Skip to content

Commit a360958

Browse files
authored
Merge PR #9 (fixes #8)
* Fix issue with sending to other users under same domain as yours * Bump version to 0.5.0 * Create CHANGELOG.md
1 parent 2bc5eb8 commit a360958

7 files changed

+46
-7
lines changed

.ci/style-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Static type check analysis
22
mypy==0.910
3-
types-setuptools==57.0.2
3+
types-setuptools==57.4.0
44
# Flake8 with extensions
55
flake8==3.9.2
66
flake8-bugbear==21.9.1

CHANGELOG.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Changelog
2+
3+
All notable changes to this package will be documented in this file.
4+
5+
This file started from 0.5.0, use `git log` for older versions, all releases are tagged.
6+
You can also check releases tab on GitHub.
7+
8+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
9+
10+
This package is following [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
11+
But during development it is considered [0Ver](https://0ver.org).
12+
13+
## Unreleased
14+
15+
<!--
16+
### Security
17+
18+
### Changed
19+
20+
### Added
21+
22+
### Fixed
23+
24+
### Removed
25+
-->
26+
27+
## 0.5.0 (September 19th, 2021)
28+
29+
### Changed
30+
31+
- Pin dependency `click` to 8.0.1
32+
- Update image `nginx` to **nginx:1.21.3-alpine**
33+
- Update dependency `ormar` to 0.10.19
34+
- Update dependency `databases` to 0.5.2
35+
- Update dependency `rich` to 10.10.0
36+
37+
### Fixed
38+
39+
- Fix GH issue #8. Now Kolombo can send emails between its users without problems

kolombo/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.0"
1+
__version__ = "0.5.0"

kolombo/configuration_files.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def generate_senders_compose_config(domains: Iterable[str]) -> str:
6868
" tty: true\n"
6969
" restart: always\n"
7070
f" container_name: kolombo-{domain}-sender\n"
71-
f" hostname: {domain}\n"
71+
f" hostname: kolombo.{domain}\n"
7272
" volumes:\n"
7373
f" - /etc/kolombo/dkim_keys/{domain}:/etc/opendkim/keys/{domain}\n"
7474
" networks:\n"

kolombo/docker/auth/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Fast async event loop
22
uvloop==0.16.0
33
# For better output
4-
rich==10.9.0
4+
rich==10.10.0
55
# ORM
66
ormar==0.10.19
77
databases==0.5.2

kolombo/docker/sender/postfix.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Main mail parameters:
2-
myhostname = doma.in
2+
myhostname = kolombo.doma.in
33
mydomain = doma.in
44
myorigin = $mydomain
55
smtpd_banner = $mydomain Kolombo ESMTP (Sender)
6-
mydestination =
6+
mydestination = localhost, localhost.$mydomain
77
recipient_delimiter = +
88
mailbox_size_limit = 0
99
disable_vrfy_command = yes

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
typer==0.4.0
33
click==8.0.1
44
shellingham==1.4.0
5-
rich==10.9.0
5+
rich==10.10.0
66
docker==5.0.2
77
# ORM
88
ormar==0.10.19

0 commit comments

Comments
 (0)