Postfix mail issue?

In my postfix, I ran into some problem. I do not receive mail from the postfix. The log file also does not display an error log. The log file is normal. Upon further analysis, I found that mail will arrive, but is not in the active postfix folder. Only one thing I found in the maillog file:

postfix / cleanup [30369]: warning: database / etc / postfix / virtual.db older than the source file / etc / postfix / virtual

The rest of the maillog file was normal.

I can find the problem. can anyone help with this.

+6
source share
1 answer

Run:

postmap /etc/postfix/virtual 

Then restart the postfix.

A warning means that you have a text version and a hashmap version of the virtual file. The text version is human-readable, which you are editing, then you create a hash map using postmap and read the postfix. It just tells you that you may have made changes to a human readable person and forgot to create a new .db from this.

+15
source

Source: https://habr.com/ru/post/926646/


All Articles