Tagged Questions
0
votes
1answer
241 views
Advantages of using smtp relay over using a programing language's smtp library functions
I would like to know of any advantages/disadvantages of using an smtp relay (with sendmail/postfix/qmail) over using a programming language's built-in smtp api.
We have always run a mail server off ...
0
votes
1answer
246 views
postfix SMTPD relay problems while sending
Ok So I set up a server as a mail server, using postfix + mysql +courier I'm using mysql for the virtual domains and users maildir.
IT is now working properly except for one part , and that is the ...
0
votes
1answer
701 views
How to create a netcat relay on OS X?
I'm trying to troubleshoot my postfix so I decided to route its traffic to my isp smtp relay trough a netcat relay:
nc -l <someport> 0<backpipe | nc <isp-smtp> 26 | tee backpipe
And ...