++tasks
This commit is contained in:
parent
8396f494a4
commit
b10ea6c080
1 changed files with 17 additions and 3 deletions
|
@ -1,9 +1,23 @@
|
||||||
* Stuff to do
|
* Stuff to do
|
||||||
** TODO Add smtp support (postfix?)
|
** PROGRESS Add smtp support (postfix?)
|
||||||
** TODO Add imap support
|
** PROGRESS Add imap support
|
||||||
** TODO Define where/how to save mails
|
** PROGRESS Define where/how to save mails
|
||||||
|
- /data would be fitting
|
||||||
** PROGRESS Add db support (?) or not?
|
** PROGRESS Add db support (?) or not?
|
||||||
- all file based could be very easy
|
- all file based could be very easy
|
||||||
- restarts are usually fine
|
- restarts are usually fine
|
||||||
- requires dovecot in same containerx
|
- requires dovecot in same containerx
|
||||||
** TODO Define deployment requirements (such as SPF/DKIM etc)
|
** TODO Define deployment requirements (such as SPF/DKIM etc)
|
||||||
|
** TODO add stdout logging
|
||||||
|
|
||||||
|
Logging to stdout is useful when Postfix runs in a container, as it eliminates a syslogd dependency.
|
||||||
|
|
||||||
|
Add the following line to master.cf if not already present (note: there must be no whitespace at the start of the line):
|
||||||
|
|
||||||
|
postlog unix-dgram n - n - 1 postlogd
|
||||||
|
|
||||||
|
Note: the service type "unix-dgram" was introduced with Postfix 3.4. Remove the above line before backing out to an older Postfix version.
|
||||||
|
|
||||||
|
Configure main.cf with "maillog_file = /dev/stdout".
|
||||||
|
|
||||||
|
Start Postfix with "postfix start-fg".
|
||||||
|
|
Loading…
Reference in a new issue