I'm newbie on UNIX/LINUX.
My postfix log file is at /var/log/maillog, yesterday i emptying the file using "1,$d" command and then ":wq!" from vi because the content to big for me to read, but then every postfix interactions does not logged into that file.
I try to remove that file and create it again with no luck.
Anyone can help me to solve this problem?
Thank you.
Best regards.
rm -rf /var/log/maillog; touch /var/log/maillogas root to recreate it empty or if u dont want to erase the current file:mv /var/log/maillog /var/log/maillog.1; touch /var/log/maillog– Prix Sep 12 '10 at 3:16