Stuff…

I know I will forget.

Stuff… header image 4

Entries Tagged as 'SMTP'

rblsmtpd 451 Sender has sent to LashBack

August 14th, 2009 · No Comments

Bounce message received:
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
user@fromaddress.com
Malformed SMTP reply from mail.server.com [192168.1.1]
in response to initial connection:
rblsmtpd: 192.168.6.62 pid 14483: 451 Sender has sent to LashBack
Unsubscribe Probe accounts:
retry timeout exceeded
Looking further into this it appears that the [...]

[Read more →]

Tags: Linux · Networking · Operating System · Protocols · SMTP

Upgrading Windows Plesk 8.1.1 to 8.6

May 21st, 2009 · No Comments

Upgrading from Windows Parallels Plesk 8.1.1 to 8.6 went smoothly according to the installer, however, after the upgrade completed and machine rebooted the Plesk control panel no longer loaded.
It would often return an error to the browser, but, also occasionally would say:
get_config_string failed: PRODUCT_DATA_D: The system cannot find the file specified. (Error code 2) at [...]

[Read more →]

Tags: Control Panels · Operating System · Protocols · SMTP · Sport · Windows

Quick CLI SMTP AUTH script to test authentication

February 9th, 2009 · No Comments

I was getting a bit bored of manually testing SMTP AUTH details for people so wrote a quick little script in perl (with help of modules) to test.
#!/usr/bin/perl -w
use Net::SMTP_auth;
use Getopt::Std;
%options=();
getopts(“u:p:h:”,\%options);
my $_USAGE= <<END_USAGE;
test_auth.pl   -  Check SMTP authentication
Usage:   test_auth.pl -u user -p pass -h hostname
License: This software is released under the same terms as perl itself.
END_USAGE
die [...]

[Read more →]

Tags: Coding · Protocols · SMTP

Adding RBL checks on RAQ550/sendmail

January 23rd, 2009 · 1 Comment

Needed to add RBL checking into sendmail as the machine was under attack by some smtp botnet.  RAQ550s had no inbuilt RBL support so had to update the sendmail.cf manually.
URL: http://www.cobaltuserslist.com/CobaltUsersList/Sun-Cobalt-Users-List-76800.html
The example is a bit old… the RBLs I used are: cbl.abuseat.org , bl.spamcop.net, sbl.spamhaus.org
Cobalt list post:

RBL (Realtime Blackhole List) filtering allows your sendmail installation
to [...]

[Read more →]

Tags: Linux · Operating System · Protocols · SMTP · Uncategorized

Test for open relays

January 14th, 2009 · No Comments

Occasionally you may want to test your mail server to see if it accepts unauthenticated mail to be relayed.
These URLs allow you to do this:

http://www.abuse.net/relay.html
http://www.dnsgoodies.com/
http://www.checkor.com/

[Read more →]

Tags: Protocols · SMTP