You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ChangeLog.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
### Unreleased
1
+
### v1.1.0 - A Hard Day's Night
2
2
3
3
BACKWARDS INCOMPATIBILITIES / NOTES:
4
4
@@ -14,7 +14,7 @@ Features:
14
14
* Database upgrades/migrations are automatic during ugrades via the deb package and Docker [GH-138]
15
15
* Adds the ability to unlock administrators and reset administrator passwords via the CLI [GH-145]
16
16
* Adds the `python manage.py version` command [GH-156]
17
-
* Adds the `python manage.py setkey` command [CHANGEME]
17
+
* Adds the `python manage.py setkey` command [GH-161]
18
18
19
19
Improvements:
20
20
@@ -25,13 +25,13 @@ Improvements:
25
25
* Made the `python manage.py clean` function completely OS agnostic [GH-158]
26
26
* Vagrant now uses Ansible for configuration instead of a bash script [GH-111]
27
27
* Updated the Python packages to the latest versions [GH-135]
28
-
* Apache logs for PostMaster now default to /opt/postmaster/logs
28
+
* Apache logs for PostMaster now default to /opt/postmaster/logs[GH-151]
29
29
30
30
Bug Fixes:
31
31
32
32
* Fixed an issue where error logs were attempting to be written before the log file path was defined [GH-109]
33
33
* The configuration file, config.py, is now named as config.default.py in the repository. During installation, the administrator must now copy or rename config.default.py to config.py.
34
-
This is so that config.py is not overwritten during package upgrades.
34
+
This is so that config.py is not overwritten during package upgrades[GH-157].
Copy file name to clipboardExpand all lines: docs/Installation/Docker.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,16 +37,16 @@ bind-address is set 0.0.0.0 and not 127.0.0.1 in:
37
37
38
38
tar -xzvf ~/postmaster.tar.gz
39
39
40
-
3. Build the Docker image:
40
+
4. Build the Docker image:
41
41
42
42
cd ~/PostMaster-*
43
43
docker build -t postmaster .
44
44
45
-
4. Create a directory on the Docker host to contain PostMaster's application and Apache logs:
45
+
5. Create a directory on the Docker host to contain PostMaster's application and Apache logs:
46
46
47
47
mkdir -p /opt/postmaster_data/logs
48
48
49
-
4. Run a PostMaster Docker container from the created image.
49
+
6. Run a PostMaster Docker container from the created image.
50
50
The -p has the Docker host serve port 80 of the PostMaster container. Change this to what suits your environment.
51
51
The -e specifies the value of the DB_URI environment variable, which is the URI that PostMaster will use to connect to your mail server's MySQL server.
52
52
The -v parameter specifies that the /opt/postmaster_data/logs should be mounted as a volume at /opt/postmaster/logs inside the container.
@@ -58,9 +58,9 @@ Make sure to replace 'password_changeme' and 'docker.postmaster.local' with what
0 commit comments