
Preventing emails going out from your development environment.
This is just a short one. In /etc/postfix/main.cf Add the following line at the bottom. virtual_alias_maps = static:<your_username> Then in Thunderbird you can collect local […]
This is just a short one. In /etc/postfix/main.cf Add the following line at the bottom. virtual_alias_maps = static:<your_username> Then in Thunderbird you can collect local […]
If you get “relay access denied” error messages on mailman and mailman messages are not going out then check to see if you have ::1/128‘ […]
We needed to analyse the from, to and subject on one of our servers to deal with a persistent spammer. Add this to your header_checks […]
This is not an easy task without knowing a few tricks as the log files are not an awful lot of help. Providing you have […]
#!/usr/bin/perl $REGEXP = shift || die "no email-adress given (regexp-style, e.g. bl.*\@yahoo.com)!"; @data = qx</usr/sbin/postqueue -p>; for (@data) { if (/^(\w+)(\*|\!)?\s/) { $queue_id = $1; […]
A server I manage hosts around 200 sites each owned by different webmasters. A number of these have form to mail style scripts. A small […]
To clean out some spam from the postfix mailq mailq | tail -n +2 | gawk ‘BEGIN { RS = "" } /email@domain.com/ { print […]
Copyright © 2023 | WordPress Theme by MH Themes