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 [...]
Entries Tagged as 'Protocols'
rblsmtpd 451 Sender has sent to LashBack
August 14th, 2009 · No Comments
Tags: Linux · Networking · Operating System · Protocols · SMTP
ProFTPd enable FXP uploads
May 22nd, 2009 · No Comments
Wanted to enable FXP for an upload on the proftpd server.
URL:
http://www.proftpd.org/localsite/Userguide/linked/x908.html
Was receiving errors in the log files:
May 21 12:30:34 server proftpd[6498] localhost (hostname[111.111.143.131]): Refused PORT 222,222,333,11,17,43 (address mismatch)
May 21 12:30:36 server proftpd[6498] localhost (hostname[111.111.143.131]): SECURITY VIOLATION: Passive connection from 222.222.333.11 rejected.
Enabled the following in the global configuration file which worked after restart:
AllowForeignAddress on
Tags: Networking · Operating System · Protocols
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 [...]
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 [...]
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 [...]
Tags: Linux · Operating System · Protocols · SMTP · Uncategorized