The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Operating Systems > Linux > SuSE
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #6 (permalink)  
Old 08-01-2007
zazzybob's Avatar
zazzybob zazzybob is offline Forum Advisor  
Registered Geek
  
 

Join Date: Dec 2003
Location: Melbourne, Australia
Posts: 2,100
Looks like the SMTP server you're relaying to is rejecting the sender address - maybe you have UBE controls or blacklists or something like that (I don't know MS Exchange so wouldn't know what to suggest here) - with Postfix you can have DNSRBLs, access maps, sender restrictions, etc to govern this.

Try

Code:
$ telnet the.windows.smtp.server 25
HELO xyz.com
MAIL FROM: <root@xyz.com>
RCPT TO: <someone@xyz.com>
DATA
Subject: Testing mail
Hello,
This is a test
.
QUIT

i.e. enter the SMTP commands manually, does this work? Does the sender address still get rejected?

Cheers
ZB