AdminUser.wOrdpress.cOm

Archive for the ‘Exim’ Category

exiqgrep exit with error “Line mismatch”

Posted by: SiiN on: January 16, 2008

Sometime exiqgrep exit with error Line mismatch when you try to remove emails with the -Mrm option
#exiqgrep -o 604800
Line mismatch: 170d 1IGLxw-0004Tw-Ne
You can remove the particular entry that errors out as follows.
# exim -bpru | grep “170d” | awk ‘{print $2}’
1IGLxw-0004Tw-Ne
1IGTFn-0000VM-UI
#exim -bpru | grep “170d” | awk ‘{print $2}’ | xargs -n [...]

Redirecting traffic coming to port 26 to port 25

Posted by: SiiN on: September 25, 2007

# redirect traffic coming in on port 26 to port 25
/sbin/iptables -t nat -I PREROUTING -p tcp –dport 26 -j REDIRECT –to-port 25
# make it so that this command runs on server boot up.
if ! grep -qai 26 /etc/rc.local; then
echo ‘/sbin/iptables -t nat -I PREROUTING -p tcp –dport 26 -j REDIRECT [...]

Why doesn’t SpamAssassin work in cPanel 11?

Posted by: SiiN on: September 4, 2007

Source: cPAnel FAQ.
—————————
Make sure that you are using Perl 5.8.8 which is recommended with cPanel 11.
Prior to upgrading Perl, it is a good idea to ensure that each module gets carried over to the update Perl version using the “autobundle” CPAN feature. You will need to execute this command via root in [...]

Clearing frozen emails : Exim

Posted by: SiiN on: September 4, 2007

exim -bpru | grep frozen | awk {’print $3′}|xargs exim -Mrm